managers_encryption_keys
Creates, updates, deletes, gets or lists a managers_encryption_keys
resource.
Overview
Name | managers_encryption_keys |
Type | Resource |
Id | azure_extras.storsimple_1200_series.managers_encryption_keys |
Fields
Name | Datatype | Description |
---|---|---|
encryptionAlgorithm | string | Algorithm used to encrypt "Value" |
value | string | The value of the secret itself. If the secret is in plaintext or null then EncryptionAlgorithm will be none |
valueCertificateThumbprint | string | Thumbprint cert that was used to encrypt "Value" |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | managerName, resourceGroupName, subscriptionId | Returns the symmetric encryption key of the manager. |
SELECT
examples
Returns the symmetric encryption key of the manager.
SELECT
encryptionAlgorithm,
value,
valueCertificateThumbprint
FROM azure_extras.storsimple_1200_series.managers_encryption_keys
WHERE managerName = '{{ managerName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';