available_service_aliases
Creates, updates, deletes, gets or lists an available_service_aliases resource.
Overview
| Name | available_service_aliases |
| Type | Resource |
| Id | azure.network.available_service_aliases |
Fields
The following fields are returned by SELECT queries:
- list_by_resource_group
- list
Request successful. Returns all available service aliases for the resource group in the region.
| Name | Datatype | Description |
|---|---|---|
id | string | The ID of the service alias. |
name | string | The name of the service alias. |
resourceName | string | The resource name of the service alias. |
type | string | The type of the resource. |
Request successful. Returns all available service aliases for the subscription in the region.
| Name | Datatype | Description |
|---|---|---|
id | string | The ID of the service alias. |
name | string | The name of the service alias. |
resourceName | string | The resource name of the service alias. |
type | string | The type of the resource. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_by_resource_group | select | resourceGroupName, location, subscriptionId | Gets all available service aliases for this resource group in this region. | |
list | select | location, subscriptionId | Gets 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.
| Name | Datatype | Description |
|---|---|---|
location | string | The location. |
resourceGroupName | string | The name of the resource group. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT examples
- list_by_resource_group
- list
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
;
Gets all available service aliases for this subscription in this region.
SELECT
id,
name,
resourceName,
type
FROM azure.network.available_service_aliases
WHERE location = '{{ location }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;