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

The following fields are returned by SELECT queries:

The manager extended information.

NameDatatypeDescription
idstringThe path ID that uniquely identifies the object.
namestringThe name of the object.
etagstringThe etag of the resource.
kindstringThe Kind of the object. Currently only Series8000 is supported
propertiesobjectThe extended info properties.
typestringThe hierarchical type of the object.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, managerNameReturns the extended information of the specified manager name.
createinsertsubscriptionId, resourceGroupName, managerNameCreates the extended info of the manager.
updateupdatesubscriptionId, resourceGroupName, managerName, If-MatchUpdates the extended info of the manager.
deletedeletesubscriptionId, resourceGroupName, managerNameDeletes the extended info 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
If-MatchstringPass the ETag of ExtendedInfo fetched from GET call
managerNamestringThe manager name
resourceGroupNamestringThe resource group name
subscriptionIdstringThe subscription id

SELECT examples

Returns the extended information of the specified manager name.

SELECT
id,
name,
etag,
kind,
properties,
type
FROM azure_extras.storsimple_8000_series.managers_extended_info
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND managerName = '{{ managerName }}' -- required
;

INSERT examples

Creates the extended info of the manager.

INSERT INTO azure_extras.storsimple_8000_series.managers_extended_info (
data__kind,
data__properties,
data__etag,
subscriptionId,
resourceGroupName,
managerName
)
SELECT
'{{ kind }}',
'{{ properties }}',
'{{ etag }}',
'{{ subscriptionId }}',
'{{ resourceGroupName }}',
'{{ managerName }}'
RETURNING
id,
name,
etag,
kind,
properties,
type
;

UPDATE examples

Updates the extended info of the manager.

UPDATE azure_extras.storsimple_8000_series.managers_extended_info
SET
data__kind = '{{ kind }}',
data__properties = '{{ properties }}',
data__etag = '{{ etag }}'
WHERE
subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND managerName = '{{ managerName }}' --required
AND If-Match = '{{ If-Match }}' --required
RETURNING
id,
name,
etag,
kind,
properties,
type;

DELETE examples

Deletes the extended info of the manager.

DELETE FROM azure_extras.storsimple_8000_series.managers_extended_info
WHERE subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroupName = '{{ resourceGroupName }}' --required
AND managerName = '{{ managerName }}' --required
;