Skip to main content

available_service_aliases

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

Overview

Nameavailable_service_aliases
TypeResource
Idazure.network.available_service_aliases

Fields

The following fields are returned by SELECT queries:

Request successful. Returns all available service aliases for the resource group in the region.

NameDatatypeDescription
idstringThe ID of the service alias.
namestringThe name of the service alias.
resourceNamestringThe resource name of the service alias.
typestringThe type of the resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_by_resource_groupselectresourceGroupName, location, subscriptionIdGets all available service aliases for this resource group in this region.
listselectlocation, subscriptionIdGets all available service aliases for this subscription in this region.

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.
resourceGroupNamestringThe name of the resource group.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

Gets all available service aliases for this resource group in this region.

SELECT
id,
name,
resourceName,
type
FROM azure.network.available_service_aliases
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND location = '{{ location }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;