available_resource_group_delegations
Creates, updates, deletes, gets or lists an available_resource_group_delegations
resource.
Overview
Name | available_resource_group_delegations |
Type | Resource |
Id | azure.network.available_resource_group_delegations |
Fields
The following fields are returned by SELECT
queries:
- list
Request successful. Returns all of the possible delegations for a subnet in this subscription in the region.
Name | Datatype | Description |
---|---|---|
id | string | A unique identifier of the AvailableDelegation resource. |
name | string | The name of the AvailableDelegation resource. |
actions | array | The actions permitted to the service upon delegation. |
serviceName | string | The name of the service and resource. |
type | string | Resource type. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | location , resourceGroupName , subscriptionId | Gets all of the available subnet delegations for this resource group 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 of the domain name. |
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
Gets all of the available subnet delegations for this resource group in this region.
SELECT
id,
name,
actions,
serviceName,
type
FROM azure.network.available_resource_group_delegations
WHERE location = '{{ location }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;