node_reports
Creates, updates, deletes, gets or lists a node_reports
resource.
Overview
Name | node_reports |
Type | Resource |
Id | azure.automation.node_reports |
Fields
Name | Datatype | Description |
---|---|---|
id | string | Gets or sets the id. |
configurationVersion | string | Gets or sets the configurationVersion of the node report. |
endTime | string | Gets or sets the end time of the node report. |
errors | array | Gets or sets the errors for the node report. |
hostName | string | Gets or sets the hostname of the node that sent the report. |
iPV4Addresses | array | Gets or sets the IPv4 address of the node that sent the report. |
iPV6Addresses | array | Gets or sets the IPv6 address of the node that sent the report. |
lastModifiedTime | string | Gets or sets the lastModifiedTime of the node report. |
metaConfiguration | object | Definition of the DSC Meta Configuration. |
numberOfResources | integer | Gets or sets the number of resource in the node report. |
rawErrors | string | Gets or sets the unparsed errors for the node report. |
rebootRequested | string | Gets or sets the rebootRequested of the node report. |
refreshMode | string | Gets or sets the refreshMode of the node report. |
reportFormatVersion | string | Gets or sets the reportFormatVersion of the node report. |
reportId | string | Gets or sets the id of the node report. |
resources | array | Gets or sets the resource for the node report. |
startTime | string | Gets or sets the start time of the node report. |
status | string | Gets or sets the status of the node report. |
type | string | Gets or sets the type of the node report. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | automationAccountName, nodeId, reportId, resourceGroupName, subscriptionId | Retrieve the Dsc node report data by node id and report id. |
list_by_node | SELECT | automationAccountName, nodeId, resourceGroupName, subscriptionId | Retrieve the Dsc node report list by node id. |
SELECT
examples
Retrieve the Dsc node report list by node id.
SELECT
id,
configurationVersion,
endTime,
errors,
hostName,
iPV4Addresses,
iPV6Addresses,
lastModifiedTime,
metaConfiguration,
numberOfResources,
rawErrors,
rebootRequested,
refreshMode,
reportFormatVersion,
reportId,
resources,
startTime,
status,
type
FROM azure.automation.node_reports
WHERE automationAccountName = '{{ automationAccountName }}'
AND nodeId = '{{ nodeId }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';