ARM Error
ARM OpenAPI(swagger) specs
- RPC-Uri-V1-04
The URI for the CURD methods do not contain a resource type.
Per ARM RPC,Uri for resource CRUD methods MUST contain a resource type. Uri path starts with <scope>/providers/<namespace>/<resourcetype> format, where
-
<scope> is one of:
- Tenant/Global: '/'
- Subscription: "/subscriptions/{subscriptionId}"
- Resource group: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}",
-
<namespace> is a literal (e.g. "Microsoft.Compute") consisting of alphanumeric characters, plus '.'.
-
<resourcetype> is a literal resource type name, follow below rules:
- MUST consist of alphanumeric characters only
- SHOULD describe the resource type
- Must be lowerCamelCase words
- Must be a plural
June 21, 2022
June 21, 2022
Fix the URI for resource action as below pattern:
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MyNameSpace/MyResourceType..."