Skip to main content

available_endpoint_services

Creates, updates, deletes, gets or lists an available_endpoint_services resource.

Overview

Nameavailable_endpoint_services
TypeResource
Idazure.network.available_endpoint_services

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringResource ID.
namestringName of the endpoint service.
typestringType of the endpoint service.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectlocation, subscription_idList what values of endpoint services are available for use.

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
locationstringThe location name. Required.
subscription_idstring

SELECT examples

List what values of endpoint services are available for use.

SELECT
id,
name,
type
FROM azure.network.available_endpoint_services
WHERE location = '{{ location }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;