Skip to main content

hcrp_reports

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

Overview

Namehcrp_reports
TypeResource
Idazure.automanage.hcrp_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
getselectsubscriptionId, resourceGroupName, machineName, configurationProfileAssignmentName, reportNameGet information about a report associated with a configuration profile assignment run
list_by_configuration_profile_assignmentsselectsubscriptionId, resourceGroupName, machineName, 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
configurationProfileAssignmentNamestringThe configuration profile assignment name.
machineNamestringThe name of the Arc machine.
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.hcrp_reports
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND machineName = '{{ machineName }}' -- required
AND configurationProfileAssignmentName = '{{ configurationProfileAssignmentName }}' -- required
AND reportName = '{{ reportName }}' -- required
;