Skip to main content

reports

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

Overview

Namereports
TypeResource
Idazure.automanage.reports

Fields

NameDatatypeDescription
configurationProfileAssignmentNametextfield from the properties object
configuration_profiletextfield from the properties object
durationtextfield from the properties object
end_timetextfield from the properties object
errortextfield from the properties object
last_modified_timetextfield from the properties object
reportNametextfield from the properties object
report_format_versiontextfield from the properties object
resourceGroupNametextfield from the properties object
resourcestextfield from the properties object
start_timetextfield from the properties object
statustextfield from the properties object
subscriptionIdtextfield from the properties object
system_datatextfield from the properties object
typetextfield from the properties object
vmNametextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTconfigurationProfileAssignmentName, reportName, resourceGroupName, subscriptionId, vmNameGet information about a report associated with a configuration profile assignment run
list_by_configuration_profile_assignmentsSELECTconfigurationProfileAssignmentName, resourceGroupName, subscriptionId, vmNameRetrieve a list of reports within a given configuration profile assignment

SELECT examples

Retrieve a list of reports within a given configuration profile assignment

SELECT
configurationProfileAssignmentName,
configuration_profile,
duration,
end_time,
error,
last_modified_time,
reportName,
report_format_version,
resourceGroupName,
resources,
start_time,
status,
subscriptionId,
system_data,
type,
vmName
FROM azure.automanage.vw_reports
WHERE configurationProfileAssignmentName = '{{ configurationProfileAssignmentName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND vmName = '{{ vmName }}';