Skip to main content

available_resource_group_delegations

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

Overview

Nameavailable_resource_group_delegations
TypeResource
Idazure.network.available_resource_group_delegations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringA unique identifier of the AvailableDelegation resource.
namestringThe name of the AvailableDelegation resource.
actionsarrayThe actions permitted to the service upon delegation.
serviceNamestringThe name of the service and resource.
typestringResource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectlocation, resource_group_name, subscription_idGets 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.

NameDatatypeDescription
locationstringThe location name. Required.
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
subscription_idstring

SELECT examples

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 resource_group_name = '{{ resource_group_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;