vw_managed_instance_encryption_protectors
Creates, updates, deletes, gets or lists a vw_managed_instance_encryption_protectors
resource.
Overview
Name | vw_managed_instance_encryption_protectors |
Type | View |
Id | azure.sql.vw_managed_instance_encryption_protectors |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
kind as kind,
JSON_EXTRACT(properties, '$.serverKeyName') as "server_key_name",
JSON_EXTRACT(properties, '$.serverKeyType') as "server_key_type",
JSON_EXTRACT(properties, '$.uri') as "uri",
JSON_EXTRACT(properties, '$.thumbprint') as "thumbprint",
JSON_EXTRACT(properties, '$.autoRotationEnabled') as "auto_rotation_enabled",
subscriptionId,
resourceGroupName,
managedInstanceName,
encryptionProtectorName
FROM azure.sql.managed_instance_encryption_protectors
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND managedInstanceName = 'replace-me' AND encryptionProtectorName = 'replace-me';
SELECT
kind as kind,
json_extract_path_text(properties, '$.serverKeyName') as "server_key_name",
json_extract_path_text(properties, '$.serverKeyType') as "server_key_type",
json_extract_path_text(properties, '$.uri') as "uri",
json_extract_path_text(properties, '$.thumbprint') as "thumbprint",
json_extract_path_text(properties, '$.autoRotationEnabled') as "auto_rotation_enabled",
subscriptionId,
resourceGroupName,
managedInstanceName,
encryptionProtectorName
FROM azure.sql.managed_instance_encryption_protectors
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND managedInstanceName = 'replace-me' AND encryptionProtectorName = 'replace-me';