preconfigured_endpoints
Creates, updates, deletes, gets or lists a preconfigured_endpoints resource.
Overview
| Name | preconfigured_endpoints |
| Type | Resource |
| Id | azure.front_door.preconfigured_endpoints |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
id | string | Resource ID. |
name | string | Resource name. |
backend | string | The preconfigured endpoint backend. |
description | string | The description of the endpoint. |
endpoint | string | The endpoint that is preconfigured. |
endpointType | string | The type of endpoint. Known values are: "AFD", "AzureRegion", "CDN", and "ATM". (AFD, AzureRegion, CDN, ATM) |
location | string | Resource location. |
tags | object | Resource tags. |
type | string | Resource type. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | resource_group_name, profile_name, subscription_id | Gets a list of Preconfigured Endpoints. Gets a list of Preconfigured Endpoints. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
profile_name | string | The Profile identifier associated with the Tenant and Partner. Required. |
resource_group_name | string | The name of the resource group. The name is case insensitive. Required. |
subscription_id | string |
SELECT examples
- list
Gets a list of Preconfigured Endpoints. Gets a list of Preconfigured Endpoints.
SELECT
id,
name,
backend,
description,
endpoint,
endpointType,
location,
tags,
type
FROM azure.front_door.preconfigured_endpoints
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND profile_name = '{{ profile_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;