Skip to main content

delegated_subnet_service_details

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

Overview

Namedelegated_subnet_service_details
TypeResource
Idazure.delegated_network.delegated_subnet_service_details

Fields

NameDatatypeDescription
idtextAn identifier that represents the resource.
nametextThe name of the resource.
allocation_block_prefix_sizetextfield from the properties object
controller_detailstextfield from the properties object
locationtextLocation of the resource.
provisioning_statetextfield from the properties object
resourceGroupNametextfield from the properties object
resourceNametextfield from the properties object
resource_guidtextfield from the properties object
subnet_detailstextfield from the properties object
subscriptionIdtextfield from the properties object
tagstextThe resource tags.
typetextThe type of resource.

Methods

NameAccessible byRequired ParamsDescription
getSELECTresourceGroupName, resourceName, subscriptionIdGets details about the specified dnc DelegatedSubnet Link.
deleteDELETEresourceGroupName, resourceName, subscriptionIdDelete dnc DelegatedSubnet.

SELECT examples

Gets details about the specified dnc DelegatedSubnet Link.

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 }}';

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 }}';