Share via


IJobOperations.GetOutputAsync Method (String, Guid, CancellationToken)

 

Retrieve the job output identified by job id. (see https://aka.ms/azureautomationsdk/joboperations for more information)

Namespace:   Microsoft.WindowsAzure.Management.Automation
Assembly:  Microsoft.WindowsAzure.Management.Automation (in Microsoft.WindowsAzure.Management.Automation.dll)

Syntax

Task<JobGetOutputResponse> GetOutputAsync(
    string automationAccount,
    Guid jobId,
    CancellationToken cancellationToken
)
Task<JobGetOutputResponse^>^ GetOutputAsync(
    String^ automationAccount,
    Guid jobId,
    CancellationToken cancellationToken
)
abstract GetOutputAsync : 
        automationAccount:string *
        jobId:Guid *
        cancellationToken:CancellationToken -> Task<JobGetOutputResponse>
Function GetOutputAsync (
    automationAccount As String,
    jobId As Guid,
    cancellationToken As CancellationToken
) As Task(Of JobGetOutputResponse)

Parameters

  • automationAccount
    Type: System.String

    The automation account name.

Return Value

Type: System.Threading.Tasks.Task<JobGetOutputResponse>

The response model for the get job output operation.

See Also

IJobOperations Interface
Microsoft.WindowsAzure.Management.Automation Namespace

Return to top