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:

Request successful. Returns list of available endpoint services.

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, subscriptionIdList 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 to check available endpoint services.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

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 subscriptionId = '{{ subscriptionId }}' -- required
;