managers_encryption_settings
Creates, updates, deletes, gets or lists a managers_encryption_settings
resource.
Overview
Name | managers_encryption_settings |
Type | Resource |
Id | azure_extras.storsimple_1200_series.managers_encryption_settings |
Fields
- vw_managers_encryption_settings
- managers_encryption_settings
Name | Datatype | Description |
---|---|---|
id | text | The identifier. |
name | text | The name. |
encryption_status | text | field from the properties object |
key_rollover_status | text | field from the properties object |
managerName | text | field from the properties object |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
type | text | The type. |
Name | Datatype | Description |
---|---|---|
id | string | The identifier. |
name | string | The name. |
properties | object | The properties of EncryptionSettings |
type | string | The type. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | managerName, resourceGroupName, subscriptionId | Returns the encryption settings of the manager. |
SELECT
examples
Returns the encryption settings of the manager.
- vw_managers_encryption_settings
- managers_encryption_settings
SELECT
id,
name,
encryption_status,
key_rollover_status,
managerName,
resourceGroupName,
subscriptionId,
type
FROM azure_extras.storsimple_1200_series.vw_managers_encryption_settings
WHERE managerName = '{{ managerName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
properties,
type
FROM azure_extras.storsimple_1200_series.managers_encryption_settings
WHERE managerName = '{{ managerName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';