Skip to main content

managers_public_encryption_keys

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

Overview

Namemanagers_public_encryption_keys
TypeResource
Idazure_extras.storsimple_8000_series.managers_public_encryption_keys

Fields

NameDatatypeDescription
encryptionAlgorithmstringThe algorithm used to encrypt the "Value".
valuestringThe value of the secret itself. If the secret is in plaintext or null then EncryptionAlgorithm will be none.
valueCertificateThumbprintstringThe thumbprint of the cert that was used to encrypt "Value".

Methods

NameAccessible byRequired ParamsDescription
getSELECTmanagerName, resourceGroupName, subscriptionIdReturns the symmetric encrypted public encryption key of the manager.

SELECT examples

Returns the symmetric encrypted public encryption key of the manager.

SELECT
encryptionAlgorithm,
value,
valueCertificateThumbprint
FROM azure_extras.storsimple_8000_series.managers_public_encryption_keys
WHERE managerName = '{{ managerName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';