Skip to main content

node_reports

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

Overview

Namenode_reports
TypeResource
Idazure.automation.node_reports

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringGets or sets the id.
configurationVersionstringGets or sets the configurationVersion of the node report.
endTimestring (date-time)Gets or sets the end time of the node report.
errorsarrayGets or sets the errors for the node report.
hostNamestringGets or sets the hostname of the node that sent the report.
iPV4AddressesarrayGets or sets the IPv4 address of the node that sent the report.
iPV6AddressesarrayGets or sets the IPv6 address of the node that sent the report.
lastModifiedTimestring (date-time)Gets or sets the lastModifiedTime of the node report.
metaConfigurationobjectGets or sets the metaConfiguration of the node at the time of the report.
numberOfResourcesinteger (int32)Gets or sets the number of resource in the node report.
rawErrorsstringGets or sets the unparsed errors for the node report.
rebootRequestedstringGets or sets the rebootRequested of the node report.
refreshModestringGets or sets the refreshMode of the node report.
reportFormatVersionstringGets or sets the reportFormatVersion of the node report.
reportIdstringGets or sets the id of the node report.
resourcesarrayGets or sets the resource for the node report.
startTimestring (date-time)Gets or sets the start time of the node report.
statusstringGets or sets the status of the node report.
typestringGets or sets the type of the node report.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresourceGroupName, automationAccountName, nodeId, reportId, subscriptionIdRetrieve the Dsc node report data by node id and report id.
list_by_nodeselectresourceGroupName, automationAccountName, nodeId, subscriptionId$filterRetrieve the Dsc node report list by node id.

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
automationAccountNamestringThe name of the automation account.
nodeIdstringThe parameters supplied to the list operation.
reportIdstringThe report id.
resourceGroupNamestringName of an Azure Resource group.
subscriptionIdstringGets subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
$filterstringThe filter to apply on the operation.

SELECT examples

Retrieve the Dsc node report data by node id and report 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 resourceGroupName = '{{ resourceGroupName }}' -- required
AND automationAccountName = '{{ automationAccountName }}' -- required
AND nodeId = '{{ nodeId }}' -- required
AND reportId = '{{ reportId }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;