Share via


JobStreamOperationsExtensions.ListTestJobStreamsAsync Method (IJobStreamOperations, String, String, JobStreamListParameters)

 

Retrieve a list of test job streams identified by runbook name. (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> ListTestJobStreamsAsync(
    this IJobStreamOperations operations,
    string automationAccount,
    string runbookName,
    JobStreamListParameters parameters
)
public:
[ExtensionAttribute]
static Task<JobStreamListResponse^>^ ListTestJobStreamsAsync(
    IJobStreamOperations^ operations,
    String^ automationAccount,
    String^ runbookName,
    JobStreamListParameters^ parameters
)
static member ListTestJobStreamsAsync : 
        operations:IJobStreamOperations *
        automationAccount:string *
        runbookName:string *
        parameters:JobStreamListParameters -> Task<JobStreamListResponse>
<ExtensionAttribute>
Public Shared Function ListTestJobStreamsAsync (
    operations As IJobStreamOperations,
    automationAccount As String,
    runbookName As String,
    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