Skip to main content

controller_details

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

Overview

Namecontroller_details
TypeResource
Idazure.delegated_network.controller_details

Fields

NameDatatypeDescription
idtextAn identifier that represents the resource.
nametextThe name of the resource.
dnc_app_idtextfield from the properties object
dnc_endpointtextfield from the properties object
dnc_tenant_idtextfield from the properties object
locationtextLocation of the resource.
provisioning_statetextfield from the properties object
purposetextfield from the properties object
resourceGroupNametextfield from the properties object
resourceNametextfield from the properties object
resource_guidtextfield 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 controller.

SELECT examples

Gets details about the specified dnc controller.

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