Skip to main content

delegated_networks

Creates, updates, deletes, gets or lists a delegated_networks resource.

Overview

Namedelegated_networks
TypeResource
Idazure.delegated_network.delegated_networks

Fields

The following fields are returned by SELECT queries:

This is a synchronous operation. The body contains a JSON-serialized array of the metadata from all the delegatedControllers in the resource group.

NameDatatypeDescription
idstringAn identifier that represents the resource.
namestringThe name of the resource.
locationstringLocation of the resource.
propertiesobjectProperties of the provision operation request.
tagsobjectThe resource tags.
typestringThe type of resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_by_resource_groupselectresourceGroupName, subscriptionIdGet all the delegatedController resources in a resource group.
list_by_subscriptionselectsubscriptionIdGet all the delegatedController resources in a subscription.

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
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstringThe ID of the target subscription.

SELECT examples

Get all the delegatedController resources in a resource group.

SELECT
id,
name,
location,
properties,
tags,
type
FROM azure.delegated_network.delegated_networks
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;