Skip to main content

preconfigured_endpoints

Creates, updates, deletes, gets or lists a preconfigured_endpoints resource.

Overview

Namepreconfigured_endpoints
TypeResource
Idazure.front_door.preconfigured_endpoints

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringResource ID.
namestringResource name.
backendstringThe preconfigured endpoint backend.
descriptionstringThe description of the endpoint.
endpointstringThe endpoint that is preconfigured.
endpointTypestringThe type of endpoint. Known values are: "AFD", "AzureRegion", "CDN", and "ATM". (AFD, AzureRegion, CDN, ATM)
locationstringResource location.
tagsobjectResource tags.
typestringResource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresource_group_name, profile_name, subscription_idGets 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.

NameDatatypeDescription
profile_namestringThe Profile identifier associated with the Tenant and Partner. Required.
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
subscription_idstring

SELECT examples

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
;