swagger: '2.0' info: version: 2020-08-01-preview title: Microsoft Azure AccessControlClient AccessConnector Software Plan Operations API schemes: - https tags: - name: Software Plan Operations paths: /{scope}/providers/Microsoft.SoftwarePlan/operations: get: summary: Microsoft Azure Get Operations description: List all the operations. operationId: microsoftAzureOperationsList x-ms-examples: GetOperations: $ref: ./examples/GetOperations.json x-ms-pageable: nextLinkName: nextLink parameters: - $ref: '#/parameters/ScopeParameter' - $ref: '#/parameters/ApiVersionParameter' tags: - Software Plan Operations responses: '200': description: List all the operations. schema: $ref: '#/definitions/OperationList' default: description: Error response describing why the operation failed schema: $ref: '#/definitions/Error' definitions: ErrorCode: type: string description: Defined error codes to be returned to the client. enum: - InvalidRequestParameter - MissingRequestParameter x-ms-enum: name: ErrorCode modelAsString: true OperationDisplay: type: object description: Display fields for an operation. properties: provider: description: Resource Provider name type: string resource: description: Resource that is acted upon type: string operation: description: Operation to be performed type: string description: description: Description of the operation type: string OperationList: type: object description: List all the operations. properties: value: type: array description: List of all operations items: $ref: '#/definitions/OperationResponse' x-ms-identifiers: - name nextLink: type: string description: Url to get the next page of items. Error: type: object description: Error object returned by the RP properties: code: description: Error code $ref: '#/definitions/ErrorCode' message: type: string description: A user readable error message. Localized based on x-ms-effective-locale header in the request OperationResponse: type: object description: Operation response. properties: name: type: string description: Name of the operation display: description: Display properties for the operation $ref: '#/definitions/OperationDisplay' origin: description: Origin of the response type: string parameters: ApiVersionParameter: name: api-version in: query x-ms-parameter-location: client required: true description: The api-version to be used by the service type: string ScopeParameter: name: scope in: path x-ms-parameter-location: method required: true type: string description: The scope at which the operation is performed. This is limited to Microsoft.Compute/virtualMachines and Microsoft.Compute/hostGroups/hosts for now x-ms-parameterized-host: hostTemplate: '{endpoint}' useSchemePrefix: false parameters: - $ref: '#/parameters/Endpoint'