Skip to main content

assignment_reports_vm_sse

Creates, updates, deletes, gets or lists an assignment_reports_vm_sse resource.

Overview

Nameassignment_reports_vm_sse
TypeResource
Idazure.guest_configuration.assignment_reports_vm_sse

Fields

The following fields are returned by SELECT queries:

OK. This response is due one of these two reasons: 1. Report was returned successfully 2. Guest configuration assignment was found, but VM is not registered yet, hence no report was returned.

NameDatatypeDescription
idstringARM resource id of the report for the guest configuration assignment.
namestringGUID that identifies the guest configuration assignment report under a subscription, resource group.
propertiesobjectProperties of the guest configuration report.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, vmssName, name, idGet a report for the VMSS guest configuration assignment, by reportId.
listselectsubscriptionId, resourceGroupName, vmssName, nameList all reports for the VMSS 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.

NameDatatypeDescription
idstringThe GUID for the guest configuration assignment report.
namestringThe guest configuration assignment name.
resourceGroupNamestringThe resource group name.
subscriptionIdstringSubscription ID which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
vmssNamestringThe name of the virtual machine scale set.

SELECT examples

Get a report for the VMSS guest configuration assignment, by reportId.

SELECT
id,
name,
properties
FROM azure.guest_configuration.assignment_reports_vm_sse
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND vmssName = '{{ vmssName }}' -- required
AND name = '{{ name }}' -- required
AND id = '{{ id }}' -- required
;