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
operations
Type: Microsoft.WindowsAzure.Management.Automation.IJobStreamOperationsReference to the Microsoft.WindowsAzure.Management.Automation.IJobStreamOperations.
automationAccount
Type: System.StringRequired. The automation account name.
jobId
Type: System.GuidRequired. The job Id.
parameters
Type: Microsoft.WindowsAzure.Management.Automation.Models.JobStreamListParametersOptional. The parameters supplied to the list job stream's stream items operation.
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