Skip to main content

reports

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

Overview

Namereports
TypeResource
Idazure.automanage.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, configurationProfileAssignmentName, reportName, subscriptionId, vmNameGet information about a report associated with a configuration profile assignment run
list_by_configuration_profile_assignmentsselectsubscriptionId, resourceGroupName, configurationProfileAssignmentName, vmNameRetrieve 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.
reportNamestringThe report name.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstringThe ID of the target subscription.
vmNamestringThe name of the virtual machine.

SELECT examples

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

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