hcrp_reports
Creates, updates, deletes, gets or lists a hcrp_reports
resource.
Overview
Name | hcrp_reports |
Type | Resource |
Id | azure.automanage.hcrp_reports |
Fields
- vw_hcrp_reports
- hcrp_reports
Name | Datatype | Description |
---|---|---|
configurationProfileAssignmentName | text | field from the properties object |
configuration_profile | text | field from the properties object |
duration | text | field from the properties object |
end_time | text | field from the properties object |
error | text | field from the properties object |
last_modified_time | text | field from the properties object |
machineName | text | field from the properties object |
reportName | text | field from the properties object |
report_format_version | text | field from the properties object |
resourceGroupName | text | field from the properties object |
resources | text | field from the properties object |
start_time | text | field from the properties object |
status | text | field from the properties object |
subscriptionId | text | field from the properties object |
system_data | text | field from the properties object |
type | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
properties | object | Data related to the report detail. |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | configurationProfileAssignmentName, machineName, reportName, resourceGroupName, subscriptionId | Get information about a report associated with a configuration profile assignment run |
list_by_configuration_profile_assignments | SELECT | configurationProfileAssignmentName, machineName, resourceGroupName, subscriptionId | Retrieve a list of reports within a given configuration profile assignment |
SELECT
examples
Retrieve a list of reports within a given configuration profile assignment
- vw_hcrp_reports
- hcrp_reports
SELECT
configurationProfileAssignmentName,
configuration_profile,
duration,
end_time,
error,
last_modified_time,
machineName,
reportName,
report_format_version,
resourceGroupName,
resources,
start_time,
status,
subscriptionId,
system_data,
type
FROM azure.automanage.vw_hcrp_reports
WHERE configurationProfileAssignmentName = '{{ configurationProfileAssignmentName }}'
AND machineName = '{{ machineName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
properties,
systemData
FROM azure.automanage.hcrp_reports
WHERE configurationProfileAssignmentName = '{{ configurationProfileAssignmentName }}'
AND machineName = '{{ machineName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';