Skip to main content

data_controllers_data_controllers

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

Overview

Namedata_controllers_data_controllers
TypeResource
Idazure.azure_arc_data.data_controllers_data_controllers

Fields

NameDatatypeDescription
basic_login_informationtextfield from the properties object
cluster_idtextfield from the properties object
dataControllerNametextfield from the properties object
extended_locationtextfield from the properties object
extension_idtextfield from the properties object
infrastructuretextfield from the properties object
k8s_rawtextfield from the properties object
last_uploaded_datetextfield from the properties object
locationtextThe geo-location where the resource lives
log_analytics_workspace_configtextfield from the properties object
logs_dashboard_credentialtextfield from the properties object
metrics_dashboard_credentialtextfield from the properties object
on_premise_propertytextfield from the properties object
provisioning_statetextfield from the properties object
resourceGroupNametextfield from the properties object
subscriptionIdtextfield from the properties object
tagstextResource tags.
upload_service_principaltextfield from the properties object
upload_watermarktextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTdataControllerName, resourceGroupName, subscriptionIdRetrieves a dataController resource
deleteDELETEdataControllerName, resourceGroupName, subscriptionIdDeletes a dataController resource

SELECT examples

Retrieves a dataController resource

SELECT
basic_login_information,
cluster_id,
dataControllerName,
extended_location,
extension_id,
infrastructure,
k8s_raw,
last_uploaded_date,
location,
log_analytics_workspace_config,
logs_dashboard_credential,
metrics_dashboard_credential,
on_premise_property,
provisioning_state,
resourceGroupName,
subscriptionId,
tags,
upload_service_principal,
upload_watermark
FROM azure.azure_arc_data.vw_data_controllers_data_controllers
WHERE dataControllerName = '{{ dataControllerName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';

DELETE example

Deletes the specified data_controllers_data_controllers resource.

/*+ delete */
DELETE FROM azure.azure_arc_data.data_controllers_data_controllers
WHERE dataControllerName = '{{ dataControllerName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';