delegated_subnet_services
Creates, updates, deletes, gets or lists a delegated_subnet_services
resource.
Overview
Name | delegated_subnet_services |
Type | Resource |
Id | azure.delegated_network.delegated_subnet_services |
Fields
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 delegated subnet |
tags | object | The resource tags. |
type | string | The type of resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list_by_resource_group | SELECT | resourceGroupName, subscriptionId | Get all the DelegatedSubnets resources in a resource group. |
list_by_subscription | SELECT | subscriptionId | Get all the DelegatedSubnets resources in a subscription. |
patch_details | EXEC | resourceGroupName, resourceName, subscriptionId | Patch delegated subnet resource |
put_details | EXEC | resourceGroupName, resourceName, subscriptionId | Put delegated subnet resource |
SELECT
examples
Get all the DelegatedSubnets resources in a subscription.
SELECT
id,
name,
location,
properties,
tags,
type
FROM azure.delegated_network.delegated_subnet_services
WHERE subscriptionId = '{{ subscriptionId }}';