delegated_networks
Creates, updates, deletes, gets or lists a delegated_networks
resource.
Overview
Name | delegated_networks |
Type | Resource |
Id | azure.delegated_network.delegated_networks |
Fields
The following fields are returned by SELECT
queries:
- list_by_resource_group
- list_by_subscription
This is a synchronous operation. The body contains a JSON-serialized array of the metadata from all the delegatedControllers in the resource group.
Name | Datatype | Description |
---|---|---|
id | string | An identifier that represents the resource. |
name | string | The name of the resource. |
location | string | Location of the resource. |
properties | object | Properties of the provision operation request. |
tags | object | The resource tags. |
type | string | The type of resource. |
This is a synchronous operation. The body contains a JSON-serialized array of the metadata from all the DelegatedControllers in the subscription.
Name | Datatype | Description |
---|---|---|
id | string | An identifier that represents the resource. |
name | string | The name of the resource. |
location | string | Location of the resource. |
properties | object | Properties of the provision operation request. |
tags | object | The resource tags. |
type | string | The type of resource. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list_by_resource_group | select | resourceGroupName , subscriptionId | Get all the delegatedController resources in a resource group. | |
list_by_subscription | select | subscriptionId | Get 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.
Name | Datatype | Description |
---|---|---|
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string | The ID of the target subscription. |
SELECT
examples
- list_by_resource_group
- list_by_subscription
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
;
Get all the delegatedController resources in a subscription.
SELECT
id,
name,
location,
properties,
tags,
type
FROM azure.delegated_network.delegated_networks
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;