vw_resource_guards
Creates, updates, deletes, gets or lists a vw_resource_guards
resource.
Overview
Name | vw_resource_guards |
Type | View |
Id | azure.data_protection.vw_resource_guards |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
location as location,
eTag as e_tag,
tags as tags,
type as type,
systemData as system_data,
JSON_EXTRACT(properties, '$.provisioningState') as "provisioning_state",
JSON_EXTRACT(properties, '$.allowAutoApprovals') as "allow_auto_approvals",
JSON_EXTRACT(properties, '$.resourceGuardOperations') as "resource_guard_operations",
JSON_EXTRACT(properties, '$.vaultCriticalOperationExclusionList') as "vault_critical_operation_exclusion_list",
JSON_EXTRACT(properties, '$.description') as "description",
subscriptionId,
resourceGroupName,
resourceGuardsName
FROM azure.data_protection.resource_guards
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND resourceGuardsName = 'replace-me';
SELECT
id as id,
name as name,
location as location,
eTag as e_tag,
tags as tags,
type as type,
systemData as system_data,
json_extract_path_text(properties, '$.provisioningState') as "provisioning_state",
json_extract_path_text(properties, '$.allowAutoApprovals') as "allow_auto_approvals",
json_extract_path_text(properties, '$.resourceGuardOperations') as "resource_guard_operations",
json_extract_path_text(properties, '$.vaultCriticalOperationExclusionList') as "vault_critical_operation_exclusion_list",
json_extract_path_text(properties, '$.description') as "description",
subscriptionId,
resourceGroupName,
resourceGuardsName
FROM azure.data_protection.resource_guards
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND resourceGuardsName = 'replace-me';