connected_vmwarev_sphere_assignments_reports
Creates, updates, deletes, gets or lists a connected_vmwarev_sphere_assignments_reports
resource.
Overview
Name | connected_vmwarev_sphere_assignments_reports |
Type | Resource |
Id | azure.guest_configuration.connected_vmwarev_sphere_assignments_reports |
Fields
The following fields are returned by SELECT
queries:
- get
- list
OK. This response is due one of these two reasons: 1. Report was returned successfully 2. Guest configuration assignment was found, but machine is not registered yet, hence no report was returned.
Name | Datatype | Description |
---|---|---|
id | string | ARM resource id of the report for the guest configuration assignment. |
name | string | GUID that identifies the guest configuration assignment report under a subscription, resource group. |
properties | object | Properties of the guest configuration report. |
OK. This response is due one of these two reasons: 1. Reports were returned successfully 2. Guest configuration assignment was found, but machine is not registered yet, hence no reports returned.
Name | Datatype | Description |
---|---|---|
id | string | ARM resource id of the report for the guest configuration assignment. |
name | string | GUID that identifies the guest configuration assignment report under a subscription, resource group. |
properties | object | Properties of the guest configuration report. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , resourceGroupName , vmName , guestConfigurationAssignmentName , reportId | Get a report for the guest configuration assignment, by reportId. | |
list | select | subscriptionId , resourceGroupName , vmName , guestConfigurationAssignmentName | List all reports for the guest configuration assignment, latest report first. |
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 |
---|---|---|
guestConfigurationAssignmentName | string | The guest configuration assignment name. |
reportId | string | The GUID for the guest configuration assignment report. |
resourceGroupName | string | The resource group name. |
subscriptionId | string | Subscription ID which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
vmName | string | The name of the virtual machine. |
SELECT
examples
- get
- list
Get a report for the guest configuration assignment, by reportId.
SELECT
id,
name,
properties
FROM azure.guest_configuration.connected_vmwarev_sphere_assignments_reports
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND vmName = '{{ vmName }}' -- required
AND guestConfigurationAssignmentName = '{{ guestConfigurationAssignmentName }}' -- required
AND reportId = '{{ reportId }}' -- required
;
List all reports for the guest configuration assignment, latest report first.
SELECT
id,
name,
properties
FROM azure.guest_configuration.connected_vmwarev_sphere_assignments_reports
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND vmName = '{{ vmName }}' -- required
AND guestConfigurationAssignmentName = '{{ guestConfigurationAssignmentName }}' -- required
;