swagger: '2.0' info: version: 2020-08-01-preview title: Microsoft Azure AccessControlClient AccessConnector PreconfiguredEndpoints API description: The preconfigured endpoints and details schemes: - https tags: - name: PreconfiguredEndpoints description: The preconfigured endpoints and details paths: ? /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/NetworkExperimentProfiles/{profileName}/PreconfiguredEndpoints : get: tags: - PreconfiguredEndpoints summary: Microsoft Azure Gets A List Of Preconfigured Endpoints operationId: microsoftAzurePreconfiguredendpointsList produces: - application/json parameters: - $ref: ./network.json#/parameters/SubscriptionIdParameter - $ref: ./network.json#/parameters/ApiVersionParameter - $ref: '#/parameters/ResourceGroupNameParameter' - $ref: '#/parameters/ProfileNameParameter' responses: '200': description: OK. The request has succeeded. schema: $ref: '#/definitions/PreconfiguredEndpointList' default: description: Error response describing why the operation failed. schema: $ref: '#/definitions/ErrorResponse' x-ms-examples: Gets a list of Preconfigured Endpoints: $ref: ./examples/NetworkExperimentGetPreconfiguredEndpoints.json x-ms-pageable: nextLinkName: nextLink description: Needs a more full description created. definitions: PreconfiguredEndpointList: description: Defines a list of preconfigured endpoints. properties: value: type: array readOnly: true items: $ref: '#/definitions/PreconfiguredEndpoint' description: List of PreconfiguredEndpoints supported by NetworkExperiment. nextLink: type: string description: URL to get the next set of PreconfiguredEndpoints if there are any. ErrorResponse: description: Error response indicates Front Door service is not able to process the incoming request. The reason is provided in the error message. type: object properties: code: description: Error code. readOnly: true type: string message: description: Error message indicating why the operation failed. readOnly: true type: string PreconfiguredEndpoint: description: Defines the properties of a preconfigured endpoint properties: name: description: The name of the endpoint type: string properties: description: The properties of a preconfiguredEndpoint $ref: '#/definitions/PreconfiguredEndpointProperties' x-ms-client-flatten: true allOf: - $ref: ./network.json#/definitions/Resource PreconfiguredEndpointProperties: description: Defines the properties of a preconfigured endpoint type: object properties: description: description: The description of the endpoint type: string endpoint: description: The endpoint that is preconfigured type: string endpointType: description: The type of endpoint type: string enum: - AFD - AzureRegion - CDN - ATM x-ms-enum: name: endpointType modelAsString: true backend: description: The preconfigured endpoint backend type: string parameters: ProfileNameParameter: name: profileName in: path required: true type: string pattern: ^[a-zA-Z0-9_\-\(\)\.]*[^\.]$ x-ms-parameter-location: method description: The Profile identifier associated with the Tenant and Partner ResourceGroupNameParameter: name: resourceGroupName in: path required: true type: string pattern: ^[a-zA-Z0-9_\-\(\)\.]*[^\.]$ minLength: 1 maxLength: 80 x-ms-parameter-location: method description: Name of the Resource group within the Azure subscription. x-ms-parameterized-host: hostTemplate: '{endpoint}' useSchemePrefix: false parameters: - $ref: '#/parameters/Endpoint'