managers_extended_info
Creates, updates, deletes, gets or lists a managers_extended_info
resource.
Overview
Name | managers_extended_info |
Type | Resource |
Id | azure_extras.storsimple_8000_series.managers_extended_info |
Fields
- vw_managers_extended_info
- managers_extended_info
Name | Datatype | Description |
---|---|---|
id | text | The path ID that uniquely identifies the object. |
name | text | The name of the object. |
algorithm | text | field from the properties object |
encryption_key | text | field from the properties object |
encryption_key_thumbprint | text | field from the properties object |
etag | text | The etag of the resource. |
integrity_key | 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 |
portal_certificate_thumbprint | 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. |
version | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | The path ID that uniquely identifies the object. |
name | string | The name of the object. |
etag | string | The etag of the resource. |
kind | string | The Kind of the object. Currently only Series8000 is supported |
properties | object | The properties of the manager extended info. |
type | string | The hierarchical type of the object. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | managerName, resourceGroupName, subscriptionId | Returns the extended information of the specified manager name. |
create | INSERT | managerName, resourceGroupName, subscriptionId | Creates the extended info of the manager. |
delete | DELETE | managerName, resourceGroupName, subscriptionId | Deletes the extended info of the manager. |
update | UPDATE | If-Match, managerName, resourceGroupName, subscriptionId | Updates the extended info of the manager. |
SELECT
examples
Returns the extended information of the specified manager name.
- vw_managers_extended_info
- managers_extended_info
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 }}';
SELECT
id,
name,
etag,
kind,
properties,
type
FROM azure_extras.storsimple_8000_series.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.
- All Properties
- Manifest
/*+ create */
INSERT INTO azure_extras.storsimple_8000_series.managers_extended_info (
managerName,
resourceGroupName,
subscriptionId,
kind,
properties,
etag
)
SELECT
'{{ managerName }}',
'{{ resourceGroupName }}',
'{{ subscriptionId }}',
'{{ kind }}',
'{{ properties }}',
'{{ etag }}'
;
- name: your_resource_model_name
props:
- name: id
value: string
- name: name
value: string
- name: type
value: string
- name: kind
value: string
- name: properties
value:
- name: version
value: string
- name: integrityKey
value: string
- name: encryptionKey
value: string
- name: encryptionKeyThumbprint
value: string
- name: portalCertificateThumbprint
value: string
- name: algorithm
value: string
- name: etag
value: string
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 }}';