NodeReports interface
Interface representing a NodeReports.
Methods
get(string, string, string, string, Node |
Retrieve the Dsc node report data by node id and report id. |
get |
Retrieve the Dsc node reports by node id and report id. |
list |
Retrieve the Dsc node report list by node id. |
Method Details
get(string, string, string, string, NodeReportsGetOptionalParams)
Retrieve the Dsc node report data by node id and report id.
function get(resourceGroupName: string, automationAccountName: string, nodeId: string, reportId: string, options?: NodeReportsGetOptionalParams): Promise<DscNodeReport>
Parameters
- resourceGroupName
-
string
Name of an Azure Resource group.
- automationAccountName
-
string
The name of the automation account.
- nodeId
-
string
The Dsc node id.
- reportId
-
string
The report id.
- options
- NodeReportsGetOptionalParams
The options parameters.
Returns
Promise<DscNodeReport>
getContent(string, string, string, string, NodeReportsGetContentOptionalParams)
Retrieve the Dsc node reports by node id and report id.
function getContent(resourceGroupName: string, automationAccountName: string, nodeId: string, reportId: string, options?: NodeReportsGetContentOptionalParams): Promise<NodeReportsGetContentResponse>
Parameters
- resourceGroupName
-
string
Name of an Azure Resource group.
- automationAccountName
-
string
The name of the automation account.
- nodeId
-
string
The Dsc node id.
- reportId
-
string
The report id.
The options parameters.
Returns
Promise<NodeReportsGetContentResponse>
listByNode(string, string, string, NodeReportsListByNodeOptionalParams)
Retrieve the Dsc node report list by node id.
function listByNode(resourceGroupName: string, automationAccountName: string, nodeId: string, options?: NodeReportsListByNodeOptionalParams): PagedAsyncIterableIterator<DscNodeReport, DscNodeReport[], PageSettings>
Parameters
- resourceGroupName
-
string
Name of an Azure Resource group.
- automationAccountName
-
string
The name of the automation account.
- nodeId
-
string
The parameters supplied to the list operation.
The options parameters.
Returns
Azure SDK for JavaScript