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

NameDatatypeDescription
idstringAn identifier that represents the resource.
namestringThe name of the resource.
locationstringLocation of the resource.
propertiesobjectProperties of Delegated controller resource.
tagsobjectThe resource tags.
typestringThe type of resource.

Methods

NameAccessible byRequired ParamsDescription
list_by_resource_groupSELECTresourceGroupName, subscriptionIdGet all the delegatedController resources in a resource group.
list_by_subscriptionSELECTsubscriptionIdGet all the delegatedController resources in a subscription.

SELECT examples

Get all the delegatedController resources in a subscription.

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