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
The following fields are returned by SELECT
queries:
- get
OK. The operation was successful.
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 |
---|---|---|---|---|
get | select | resourceGroupName , resourceName , subscriptionId | Gets details about the specified dnc DelegatedSubnet Link. | |
delete | delete | resourceGroupName , resourceName , subscriptionId | forceDelete | Delete dnc DelegatedSubnet. |
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. |
resourceName | string | The name of the resource. It must be a minimum of 3 characters, and a maximum of 63. |
subscriptionId | string | The ID of the target subscription. |
forceDelete | boolean | Force delete resource |
SELECT
examples
- get
Gets details about the specified dnc DelegatedSubnet Link.
SELECT
id,
name,
location,
properties,
tags,
type
FROM azure.delegated_network.delegated_subnet_service_details
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND resourceName = '{{ resourceName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;
DELETE
examples
- delete
Delete dnc DelegatedSubnet.
DELETE FROM azure.delegated_network.delegated_subnet_service_details
WHERE resourceGroupName = '{{ resourceGroupName }}' --required
AND resourceName = '{{ resourceName }}' --required
AND subscriptionId = '{{ subscriptionId }}' --required
AND forceDelete = '{{ forceDelete }}'
;