available_endpoint_services
Creates, updates, deletes, gets or lists an available_endpoint_services
resource.
Overview
Name | available_endpoint_services |
Type | Resource |
Id | azure.network.available_endpoint_services |
Fields
The following fields are returned by SELECT
queries:
- list
Request successful. Returns list of available endpoint services.
Name | Datatype | Description |
---|---|---|
id | string | Resource ID. |
name | string | Name of the endpoint service. |
type | string | Type of the endpoint service. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | location , subscriptionId | List 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.
Name | Datatype | Description |
---|---|---|
location | string | The location to check available endpoint services. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT
examples
- list
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
;