Skip to main content

managers_extended_info

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

Overview

Namemanagers_extended_info
TypeResource
Idazure_extras.storsimple_8000_series.managers_extended_info

Fields

NameDatatypeDescription
idtextThe path ID that uniquely identifies the object.
nametextThe name of the object.
algorithmtextfield from the properties object
encryption_keytextfield from the properties object
encryption_key_thumbprinttextfield from the properties object
etagtextThe etag of the resource.
integrity_keytextfield from the properties object
kindtextThe Kind of the object. Currently only Series8000 is supported
managerNametextfield from the properties object
portal_certificate_thumbprinttextfield from the properties object
resourceGroupNametextfield from the properties object
subscriptionIdtextfield from the properties object
typetextThe hierarchical type of the object.
versiontextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTmanagerName, resourceGroupName, subscriptionIdReturns the extended information of the specified manager name.
createINSERTmanagerName, resourceGroupName, subscriptionIdCreates the extended info of the manager.
deleteDELETEmanagerName, resourceGroupName, subscriptionIdDeletes the extended info of the manager.
updateUPDATEIf-Match, managerName, resourceGroupName, subscriptionIdUpdates the extended info of the manager.

SELECT examples

Returns the extended information of the specified manager name.

SELECT
id,
name,
algorithm,
encryption_key,
encryption_key_thumbprint,
etag,
integrity_key,
kind,
managerName,
portal_certificate_thumbprint,
resourceGroupName,
subscriptionId,
type,
version
FROM azure_extras.storsimple_8000_series.vw_managers_extended_info
WHERE managerName = '{{ managerName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';

INSERT example

Use the following StackQL query and manifest file to create a new managers_extended_info resource.

/*+ create */
INSERT INTO azure_extras.storsimple_8000_series.managers_extended_info (
managerName,
resourceGroupName,
subscriptionId,
kind,
properties,
etag
)
SELECT
'{{ managerName }}',
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ kind }}',
'{{ properties }}',
'{{ etag }}'
;

UPDATE example

Updates a managers_extended_info resource.

/*+ update */
UPDATE azure_extras.storsimple_8000_series.managers_extended_info
SET
kind = '{{ kind }}',
properties = '{{ properties }}',
etag = '{{ etag }}'
WHERE
If-Match = '{{ If-Match }}'
AND managerName = '{{ managerName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';

DELETE example

Deletes the specified managers_extended_info resource.

/*+ delete */
DELETE FROM azure_extras.storsimple_8000_series.managers_extended_info
WHERE managerName = '{{ managerName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';