managers_public_encryption_keys
Creates, updates, deletes, gets or lists a managers_public_encryption_keys resource.
Overview
| Name | managers_public_encryption_keys |
| Type | Resource |
| Id | azure_extras.storsimple_8000_series.managers_public_encryption_keys |
Fields
The following fields are returned by SELECT queries:
- get
The encryption key.
| Name | Datatype | Description |
|---|---|---|
encryptionAlgorithm | string | The algorithm used to encrypt the "Value". |
value | string | The value of the secret itself. If the secret is in plaintext or null then EncryptionAlgorithm will be none. |
valueCertificateThumbprint | string | The thumbprint of the cert that was used to encrypt "Value". |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | subscriptionId, resourceGroupName, managerName | Returns the symmetric encrypted public encryption key of the manager. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
managerName | string | The manager name |
resourceGroupName | string | The resource group name |
subscriptionId | string | The subscription id |
SELECT examples
- get
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 subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND managerName = '{{ managerName }}' -- required
;