reports
Creates, updates, deletes, gets or lists a reports
resource.
Overview
Name | reports |
Type | Resource |
Id | azure.automanage.reports |
Fields
- vw_reports
- 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 |
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 |
vmName | 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, reportName, resourceGroupName, subscriptionId, vmName | Get information about a report associated with a configuration profile assignment run |
list_by_configuration_profile_assignments | SELECT | configurationProfileAssignmentName, resourceGroupName, subscriptionId, vmName | 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_reports
- reports
SELECT
configurationProfileAssignmentName,
configuration_profile,
duration,
end_time,
error,
last_modified_time,
reportName,
report_format_version,
resourceGroupName,
resources,
start_time,
status,
subscriptionId,
system_data,
type,
vmName
FROM azure.automanage.vw_reports
WHERE configurationProfileAssignmentName = '{{ configurationProfileAssignmentName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND vmName = '{{ vmName }}';
SELECT
properties,
systemData
FROM azure.automanage.reports
WHERE configurationProfileAssignmentName = '{{ configurationProfileAssignmentName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}'
AND vmName = '{{ vmName }}';