JobStreamOperationsExtensions.ListAsync Method (IJobStreamOperations, String, Guid, JobStreamListParameters)

 

Retrieve a list of jobs streams identified by job 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<JobStreamListResponse> ListAsync(
    this IJobStreamOperations operations,
    string automationAccount,
    Guid jobId,
    JobStreamListParameters parameters
)
public:
[ExtensionAttribute]
static Task<JobStreamListResponse^>^ ListAsync(
    IJobStreamOperations^ operations,
    String^ automationAccount,
    Guid jobId,
    JobStreamListParameters^ parameters
)
static member ListAsync : 
        operations:IJobStreamOperations *
        automationAccount:string *
        jobId:Guid *
        parameters:JobStreamListParameters -> Task<JobStreamListResponse>
<ExtensionAttribute>
Public Shared Function ListAsync (
    operations As IJobStreamOperations,
    automationAccount As String,
    jobId As Guid,
    parameters As JobStreamListParameters
) As Task(Of JobStreamListResponse)

Parameters

  • automationAccount
    Type: System.String

    Required. The automation account name.

Return Value

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

The response model for the list job stream operation.

See Also

JobStreamOperationsExtensions Class
Microsoft.WindowsAzure.Management.Automation Namespace

Return to top