hybrid_identity_metadata
Creates, updates, deletes, gets or lists a hybrid_identity_metadata resource.
Overview
| Name | hybrid_identity_metadata |
| Type | Resource |
| Id | azure_stack.azure_stack_hci.hybrid_identity_metadata |
Fields
The following fields are returned by SELECT queries:
- get
- list
| Name | Datatype | Description |
|---|---|---|
properties | object | Resource properties. |
systemData | object | The system data. |
| Name | Datatype | Description |
|---|---|---|
properties | object | Resource properties. |
systemData | object | The system data. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | resourceUri | Implements HybridIdentityMetadata GET method. | |
list | select | resourceUri | Returns the list of HybridIdentityMetadata of the given vm. |
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 |
|---|---|---|
resourceUri | string | The fully qualified Azure Resource manager identifier of the Hybrid Compute machine resource to be extended. |
SELECT examples
- get
- list
Implements HybridIdentityMetadata GET method.
SELECT
properties,
systemData
FROM azure_stack.azure_stack_hci.hybrid_identity_metadata
WHERE resourceUri = '{{ resourceUri }}' -- required
;
Returns the list of HybridIdentityMetadata of the given vm.
SELECT
properties,
systemData
FROM azure_stack.azure_stack_hci.hybrid_identity_metadata
WHERE resourceUri = '{{ resourceUri }}' -- required
;