delegated_subnet_service_details
Creates, updates, deletes, gets or lists a delegated_subnet_service_details
resource.
Overview
Name | delegated_subnet_service_details |
Type | Resource |
Id | azure.delegated_network.delegated_subnet_service_details |
Fields
- vw_delegated_subnet_service_details
- delegated_subnet_service_details
Name | Datatype | Description |
---|---|---|
id | text | An identifier that represents the resource. |
name | text | The name of the resource. |
allocation_block_prefix_size | text | field from the properties object |
controller_details | text | field from the properties object |
location | text | Location of the resource. |
provisioning_state | text | field from the properties object |
resourceGroupName | text | field from the properties object |
resourceName | text | field from the properties object |
resource_guid | text | field from the properties object |
subnet_details | text | field from the properties object |
subscriptionId | text | field from the properties object |
tags | text | The resource tags. |
type | text | The type of resource. |
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 |
---|---|---|---|
get | SELECT | resourceGroupName, resourceName, subscriptionId | Gets details about the specified dnc DelegatedSubnet Link. |
delete | DELETE | resourceGroupName, resourceName, subscriptionId | Delete dnc DelegatedSubnet. |
SELECT
examples
Gets details about the specified dnc DelegatedSubnet Link.
- vw_delegated_subnet_service_details
- delegated_subnet_service_details
SELECT
id,
name,
allocation_block_prefix_size,
controller_details,
location,
provisioning_state,
resourceGroupName,
resourceName,
resource_guid,
subnet_details,
subscriptionId,
tags,
type
FROM azure.delegated_network.vw_delegated_subnet_service_details
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
location,
properties,
tags,
type
FROM azure.delegated_network.delegated_subnet_service_details
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}';
DELETE
example
Deletes the specified delegated_subnet_service_details
resource.
/*+ delete */
DELETE FROM azure.delegated_network.delegated_subnet_service_details
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}';