Skip to main content

managers_encryption_settings

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

Overview

Namemanagers_encryption_settings
TypeResource
Idazure_extras.storsimple_8000_series.managers_encryption_settings

Fields

The following fields are returned by SELECT queries:

The encryption settings.

NameDatatypeDescription
idstringThe path ID that uniquely identifies the object.
namestringThe name of the object.
kindstringThe Kind of the object. Currently only Series8000 is supported
propertiesobjectThe properties of the encryption settings.
typestringThe hierarchical type of the object.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, managerNameReturns 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.

NameDatatypeDescription
managerNamestringThe manager name
resourceGroupNamestringThe resource group name
subscriptionIdstringThe subscription id

SELECT examples

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
;