DscNodeOperationsExtensions.GetAsync Method

Definition

Overloads

GetAsync(IDscNodeOperations, String, String, Guid)
GetAsync(IDscNodeOperations, String, String, String, CancellationToken)

Retrieve the dsc node identified by node id. http://aka.ms/azureautomationsdk/dscnodeoperations

GetAsync(IDscNodeOperations, String, String, Guid)

public static System.Threading.Tasks.Task<Microsoft.Azure.Management.Automation.Models.DscNodeGetResponse> GetAsync (this Microsoft.Azure.Management.Automation.IDscNodeOperations operations, string resourceGroupName, string automationAccount, Guid nodeId);
static member GetAsync : Microsoft.Azure.Management.Automation.IDscNodeOperations * string * string * Guid -> System.Threading.Tasks.Task<Microsoft.Azure.Management.Automation.Models.DscNodeGetResponse>
<Extension()>
Public Function GetAsync (operations As IDscNodeOperations, resourceGroupName As String, automationAccount As String, nodeId As Guid) As Task(Of DscNodeGetResponse)

Parameters

operations
IDscNodeOperations
resourceGroupName
String
automationAccount
String
nodeId
Guid

Returns

Applies to

GetAsync(IDscNodeOperations, String, String, String, CancellationToken)

Retrieve the dsc node identified by node id. http://aka.ms/azureautomationsdk/dscnodeoperations

public static System.Threading.Tasks.Task<Microsoft.Azure.Management.Automation.Models.DscNode> GetAsync (this Microsoft.Azure.Management.Automation.IDscNodeOperations operations, string resourceGroupName, string automationAccountName, string nodeId, System.Threading.CancellationToken cancellationToken = default);
static member GetAsync : Microsoft.Azure.Management.Automation.IDscNodeOperations * string * string * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.Management.Automation.Models.DscNode>
<Extension()>
Public Function GetAsync (operations As IDscNodeOperations, resourceGroupName As String, automationAccountName As String, nodeId As String, Optional cancellationToken As CancellationToken = Nothing) As Task(Of DscNode)

Parameters

operations
IDscNodeOperations

The operations group for this extension method.

resourceGroupName
String

Name of an Azure Resource group.

automationAccountName
String

The name of the automation account.

nodeId
String

The node id.

cancellationToken
CancellationToken

The cancellation token.

Returns

Applies to