Skip to main content

hci_reports

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

Overview

Namehci_reports
TypeResource
Idazure.automanage.hci_reports

Fields

NameDatatypeDescription
clusterNametextfield from the properties object
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

Methods

NameAccessible byRequired ParamsDescription
getSELECTclusterName, configurationProfileAssignmentName, reportName, resourceGroupName, subscriptionIdGet information about a report associated with a configuration profile assignment run
list_by_configuration_profile_assignmentsSELECTclusterName, configurationProfileAssignmentName, resourceGroupName, subscriptionIdRetrieve a list of reports within a given configuration profile assignment

SELECT examples

Retrieve a list of reports within a given configuration profile assignment

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