Skip to main content

vw_encryption_protectors

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

Overview

Namevw_encryption_protectors
TypeView
Idazure.sql.vw_encryption_protectors

Fields

See the SQL Definition (view DDL) for fields returned by this view.

SQL Definition

SELECT
location as location,
kind as kind,
JSON_EXTRACT(properties, '$.subregion') as "subregion",
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,
serverName,
encryptionProtectorName
FROM azure.sql.encryption_protectors
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND serverName = 'replace-me';