Share via


JobStreamOperationsExtensions.GetAsync Method (IJobStreamOperations, String, Guid, String)

 

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

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

Syntax

public static Task<JobStreamGetResponse> GetAsync(
    this IJobStreamOperations operations,
    string automationAccount,
    Guid jobId,
    string jobStreamId
)
public:
[ExtensionAttribute]
static Task<JobStreamGetResponse^>^ GetAsync(
    IJobStreamOperations^ operations,
    String^ automationAccount,
    Guid jobId,
    String^ jobStreamId
)
static member GetAsync : 
        operations:IJobStreamOperations *
        automationAccount:string *
        jobId:Guid *
        jobStreamId:string -> Task<JobStreamGetResponse>
<ExtensionAttribute>
Public Shared Function GetAsync (
    operations As IJobStreamOperations,
    automationAccount As String,
    jobId As Guid,
    jobStreamId As String
) As Task(Of JobStreamGetResponse)

Parameters

  • automationAccount
    Type: System.String

    Required. The automation account name.

Return Value

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

The response model for the get job stream operation.

See Also

JobStreamOperationsExtensions Class
Microsoft.WindowsAzure.Management.Automation Namespace

Return to top