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_8000_series.managers_encryption_settings |
Fields
- vw_managers_encryption_settings
- managers_encryption_settings
Name | Datatype | Description |
---|---|---|
id | text | The path ID that uniquely identifies the object. |
name | text | The name of the object. |
encryption_status | text | field from the properties object |
key_rollover_status | text | field from the properties object |
kind | text | The Kind of the object. Currently only Series8000 is supported |
managerName | text | field from the properties object |
resourceGroupName | text | field from the properties object |
subscriptionId | text | field from the properties object |
type | text | The hierarchical type of the object. |
Name | Datatype | Description |
---|---|---|
id | string | The path ID that uniquely identifies the object. |
name | string | The name of the object. |
kind | string | The Kind of the object. Currently only Series8000 is supported |
properties | object | The properties of encryption settings. |
type | string | The hierarchical type of the object. |
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,
kind,
managerName,
resourceGroupName,
subscriptionId,
type
FROM azure_extras.storsimple_8000_series.vw_managers_encryption_settings
WHERE managerName = '{{ managerName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
kind,
properties,
type
FROM azure_extras.storsimple_8000_series.managers_encryption_settings
WHERE managerName = '{{ managerName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';