hyperv_software_inventories_controller_machine_software_inventories
Creates, updates, deletes, gets or lists a hyperv_software_inventories_controller_machine_software_inventories
resource.
Overview
Name | hyperv_software_inventories_controller_machine_software_inventories |
Type | Resource |
Id | azure.migrate.hyperv_software_inventories_controller_machine_software_inventories |
Fields
The following fields are returned by SELECT
queries:
- get
ARM operation completed successfully.
Name | Datatype | Description |
---|---|---|
properties | object | The resource-specific properties for this resource. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , siteName , machineName , default | Method to get a machines software inventory like applications and roles. |
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 |
---|---|---|
default | string | Default value. |
machineName | string | HypervMachine name |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
siteName | string | Site name |
subscriptionId | string | The ID of the target subscription. |
SELECT
examples
- get
Method to get a machines software inventory like applications and roles.
SELECT
properties
FROM azure.migrate.hyperv_software_inventories_controller_machine_software_inventories
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND siteName = '{{ siteName }}' -- required
AND machineName = '{{ machineName }}' -- required
AND default = '{{ default }}' -- required
;