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
The following fields are returned by SELECT queries:
- get
The encryption settings.
| 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 the encryption settings. |
type | string | The hierarchical type of the object. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | subscriptionId, resourceGroupName, managerName | Returns the encryption settings 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 encryption settings of the manager.
SELECT
id,
name,
kind,
properties,
type
FROM azure_extras.storsimple_8000_series.managers_encryption_settings
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND managerName = '{{ managerName }}' -- required
;