controller_details
Creates, updates, deletes, gets or lists a controller_details
resource.
Overview
Name | controller_details |
Type | Resource |
Id | azure.delegated_network.controller_details |
Fields
- vw_controller_details
- controller_details
Name | Datatype | Description |
---|---|---|
id | text | An identifier that represents the resource. |
name | text | The name of the resource. |
dnc_app_id | text | field from the properties object |
dnc_endpoint | text | field from the properties object |
dnc_tenant_id | text | field from the properties object |
location | text | Location of the resource. |
provisioning_state | text | field from the properties object |
purpose | 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 |
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 controller resource. |
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 controller. |
SELECT
examples
Gets details about the specified dnc controller.
- vw_controller_details
- controller_details
SELECT
id,
name,
dnc_app_id,
dnc_endpoint,
dnc_tenant_id,
location,
provisioning_state,
purpose,
resourceGroupName,
resourceName,
resource_guid,
subscriptionId,
tags,
type
FROM azure.delegated_network.vw_controller_details
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
location,
properties,
tags,
type
FROM azure.delegated_network.controller_details
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND resourceName = '{{ resourceName }}'
AND subscriptionId = '{{ subscriptionId }}';