data_controllers_data_controllers
Creates, updates, deletes, gets or lists a data_controllers_data_controllers
resource.
Overview
Name | data_controllers_data_controllers |
Type | Resource |
Id | azure.azure_arc_data.data_controllers_data_controllers |
Fields
- vw_data_controllers_data_controllers
- data_controllers_data_controllers
Name | Datatype | Description |
---|---|---|
basic_login_information | text | field from the properties object |
cluster_id | text | field from the properties object |
dataControllerName | text | field from the properties object |
extended_location | text | field from the properties object |
extension_id | text | field from the properties object |
infrastructure | text | field from the properties object |
k8s_raw | text | field from the properties object |
last_uploaded_date | text | field from the properties object |
location | text | The geo-location where the resource lives |
log_analytics_workspace_config | text | field from the properties object |
logs_dashboard_credential | text | field from the properties object |
metrics_dashboard_credential | text | field from the properties object |
on_premise_property | text | field from the properties object |
provisioning_state | text | field from the properties object |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
tags | text | Resource tags. |
upload_service_principal | text | field from the properties object |
upload_watermark | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
extendedLocation | object | The complex type of the extended location. |
location | string | The geo-location where the resource lives |
properties | object | The data controller properties. |
tags | object | Resource tags. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | dataControllerName, resourceGroupName, subscriptionId | Retrieves a dataController resource |
delete | DELETE | dataControllerName, resourceGroupName, subscriptionId | Deletes a dataController resource |
SELECT
examples
Retrieves a dataController resource
- vw_data_controllers_data_controllers
- data_controllers_data_controllers
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 }}';
SELECT
extendedLocation,
location,
properties,
tags
FROM azure.azure_arc_data.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 }}';