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:

OK. The request has succeeded.

NameDatatypeDescription
idstringResource ID.
namestringResource name.
locationstringResource location.
propertiesobjectThe properties of a preconfiguredEndpoint
tagsobjectResource tags.
typestringResource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, 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.

NameDatatypeDescription
profileNamestringThe Profile identifier associated with the Tenant and Partner
resourceGroupNamestringName of the Resource group within the Azure subscription.
subscriptionIdstringThe subscription credentials which uniquely identify the Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.

SELECT examples

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
;