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

The following fields are returned by SELECT queries:

OK. The report was returned successfully.

NameDatatypeDescription
propertiesobjectThe properties for the report. (title: Properties)
systemDataobjectAzure Resource Manager metadata containing createdBy and modifiedBy information.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresourceGroupName, subscriptionId, clusterName, configurationProfileAssignmentName, reportNameGet information about a report associated with a configuration profile assignment run
list_by_configuration_profile_assignmentsselectsubscriptionId, resourceGroupName, clusterName, configurationProfileAssignmentNameRetrieve a list of reports within a given configuration profile assignment

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
clusterNamestringThe name of the Arc machine.
configurationProfileAssignmentNamestringThe configuration profile assignment name.
reportNamestringThe report name.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstringThe ID of the target subscription.

SELECT examples

Get information about a report associated with a configuration profile assignment run

SELECT
properties,
systemData
FROM azure.automanage.hci_reports
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND clusterName = '{{ clusterName }}' -- required
AND configurationProfileAssignmentName = '{{ configurationProfileAssignmentName }}' -- required
AND reportName = '{{ reportName }}' -- required
;