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
OK. The request has succeeded.
| Name | Datatype | Description |
|---|---|---|
id | string | Resource ID. |
name | string | Resource name. |
location | string | Resource location. |
properties | object | The properties of a preconfiguredEndpoint |
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 | subscriptionId, resourceGroupName, profileName |
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 |
|---|---|---|
profileName | string | The Profile identifier associated with the Tenant and Partner |
resourceGroupName | string | Name of the Resource group within the Azure subscription. |
subscriptionId | string | The subscription credentials which uniquely identify the Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
SELECT examples
- list
OK. The request has succeeded.
SELECT
id,
name,
location,
properties,
tags,
type
FROM azure.front_door.preconfigured_endpoints
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND profileName = '{{ profileName }}' -- required
;