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