Skip to main content

assignment_reports_vm_sse

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

Overview

Nameassignment_reports_vm_sse
TypeResource
Idazure.guest_configuration.assignment_reports_vm_sse

Fields

NameDatatypeDescription
idtextARM resource id of the report for the guest configuration assignment.
nametextGUID that identifies the guest configuration assignment report under a subscription, resource group.
assignmenttextfield from the properties object
compliance_statustextfield from the properties object
detailstextfield from the properties object
end_timetextfield from the properties object
report_idtextfield from the properties object
resourceGroupNametextfield from the properties object
start_timetextfield from the properties object
subscriptionIdtextfield from the properties object
vmtextfield from the properties object
vmssNametextfield from the properties object
vmss_resource_idtextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTid, name, resourceGroupName, subscriptionId, vmssNameGet a report for the VMSS guest configuration assignment, by reportId.
listSELECTname, resourceGroupName, subscriptionId, vmssNameList all reports for the VMSS guest configuration assignment, latest report first.

SELECT examples

List all reports for the VMSS guest configuration assignment, latest report first.

SELECT
id,
name,
assignment,
compliance_status,
details,
end_time,
report_id,
resourceGroupName,
start_time,
subscriptionId,
vm,
vmssName,
vmss_resource_id
FROM azure.guest_configuration.vw_assignment_reports_vm_sse
WHERE name = '{{ name }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND vmssName = '{{ vmssName }}';