Skip to main content

delegated_subnet_services

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

Overview

Namedelegated_subnet_services
TypeResource
Idazure.delegated_network.delegated_subnet_services

Fields

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

Methods

NameAccessible byRequired ParamsDescription
list_by_resource_groupSELECTresourceGroupName, subscriptionIdGet all the DelegatedSubnets resources in a resource group.
list_by_subscriptionSELECTsubscriptionIdGet all the DelegatedSubnets resources in a subscription.
patch_detailsEXECresourceGroupName, resourceName, subscriptionIdPatch delegated subnet resource
put_detailsEXECresourceGroupName, resourceName, subscriptionIdPut 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 }}';