SDK Warning
ARM and Data plane OpenAPI(swagger) specs
OperationId should contain the verb: '{0}' in:'{1}'
A POST operation's operationId should contain the verb indicated at the end of the corresponding url.
The url indicates the action performed by it, the corresponding POST operationId should therefore contain this verb for semantic consistency.
Ensure that the operationId for POST operation contains the verb indicated at the end of the url.
Examples of url and corresponding POST operationIds:
- Url: /foo/{someResource}/activate
- OperationId: SomeResourceTypes_ActivateResource
Examples of url and corresponding POST operationIds:
- Url: /foo/{someResource}/activate
- OperationId: SomeResourceTypes_StartResource
Method generated for the POST operation will be named as indicated after the 'underscore'. For eg., OperationId SomeResourceTypes_ActivateResource will generate a method named ActivateResource