vm_instance_hybrid_identity_metadatas
Creates, updates, deletes, gets or lists a vm_instance_hybrid_identity_metadatas resource.
Overview
| Name | vm_instance_hybrid_identity_metadatas |
| Type | Resource |
| Id | azure.scvmm.vm_instance_hybrid_identity_metadatas |
Fields
The following fields are returned by SELECT queries:
- get
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}". # pylint: disable=line-too-long |
name | string | The name of the resource. |
provisioningState | string | Provisioning state of the resource. Known values are: "Succeeded", "Failed", "Canceled", "Provisioning", "Updating", "Deleting", "Accepted", and "Created". |
publicKey | string | Gets or sets the Public Key. |
resourceUid | string | The unique identifier for the resource. |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | resource_uri | Gets HybridIdentityMetadata. Implements HybridIdentityMetadata GET method. | |
list_by_virtual_machine_instance | exec | resource_uri | Implements GET HybridIdentityMetadata in a vm. 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 |
|---|---|---|
resource_uri | string | The fully qualified Azure Resource manager identifier of the resource. Required. |
SELECT examples
- get
Gets HybridIdentityMetadata. Implements HybridIdentityMetadata GET method.
SELECT
id,
name,
provisioningState,
publicKey,
resourceUid,
systemData,
type
FROM azure.scvmm.vm_instance_hybrid_identity_metadatas
WHERE resource_uri = '{{ resource_uri }}' -- required
;
Lifecycle Methods
- list_by_virtual_machine_instance
Implements GET HybridIdentityMetadata in a vm. Returns the list of HybridIdentityMetadata of the given VM.
EXEC azure.scvmm.vm_instance_hybrid_identity_metadatas.list_by_virtual_machine_instance
@resource_uri='{{ resource_uri }}' --required
;