swagger: '2.0' info: version: 2020-08-01-preview title: Microsoft Azure AccessControlClient AccessConnector PeeringServiceProviders API schemes: - https tags: - name: PeeringServiceProviders paths: /subscriptions/{subscriptionId}/providers/Microsoft.Peering/peeringServiceProviders: get: tags: - PeeringServiceProviders description: Lists all of the available peering service locations for the specified kind of peering. operationId: microsoftAzurePeeringserviceprovidersList parameters: - $ref: '#/parameters/SubscriptionIdParameter' - $ref: '#/parameters/ApiVersionParameter' responses: '200': description: OK schema: $ref: '#/definitions/PeeringServiceProviderListResult' default: description: Error response describing why the operation has failed. schema: $ref: '#/definitions/ErrorResponse' x-ms-examples: List peering service providers: $ref: ./examples/ListPeeringServiceProviders.json x-ms-pageable: nextLinkName: nextLink summary: Microsoft Azure Get Subscriptions Subscriptionid Providers Microsoft Peering Peeringserviceproviders definitions: ErrorResponse: description: The error response that indicates why an operation has failed. type: object properties: code: description: The error code. type: string readOnly: true message: description: The error message. type: string readOnly: true PeeringServiceProviderProperties: description: The properties that define connectivity to the Peering Service Provider. type: object properties: serviceProviderName: description: The name of the service provider. type: string Resource: description: The ARM resource class. type: object properties: name: description: The name of the resource. type: string readOnly: true id: description: The ID of the resource. type: string readOnly: true type: description: The type of the resource. type: string readOnly: true x-ms-azure-resource: true PeeringServiceProvider: description: PeeringService provider type: object allOf: - $ref: '#/definitions/Resource' properties: properties: $ref: '#/definitions/PeeringServiceProviderProperties' description: The properties that define a peering service provider. x-ms-client-flatten: true PeeringServiceProviderListResult: description: The paginated list of peering service providers. type: object properties: value: description: The list of peering service providers. type: array items: $ref: '#/definitions/PeeringServiceProvider' nextLink: description: The link to fetch the next page of peering service providers. type: string parameters: ApiVersionParameter: name: api-version in: query description: The client API version. required: true type: string SubscriptionIdParameter: name: subscriptionId in: path description: The Azure subscription ID. required: true type: string x-ms-parameterized-host: hostTemplate: '{endpoint}' useSchemePrefix: false parameters: - $ref: '#/parameters/Endpoint'