ARM Error
ARM OpenAPI(swagger) specs
- RPC-Get-V1-05
The top-level resource "{0}" does not have list by subscription operation, please add it.
Per ARM guidelines, all the top-level resources must have a list by subscription operation which returns the collection of the resource.
July 13, 2020
July 13, 2020
For each top-level resource, add the corresponding list operation.
For example:
...
"/subscriptions/{subscriptionId}/providers/Microsoft.MyNameSpace/MyTopLevelResourceType": {
"get": {
...
...
"description": "Handles requests to list all resources in a subscription.",
"operationId": "Services_ListBySubscription",
...
"responses": {
"200": {
"description": "Success. The response describes the list of Services in the subscription.",
"schema": {
"$ref": "#/definitions/MyTopLevelResourceList"
}
}
},
...