JobStreamOperations interface

Interface representing a JobStreamOperations.

Methods

get(string, string, string, string, JobStreamGetOptionalParams)

Retrieve the job stream identified by job stream id.

listByJob(string, string, string, JobStreamListByJobOptionalParams)

Retrieve a list of jobs streams identified by job name.

Method Details

get(string, string, string, string, JobStreamGetOptionalParams)

Retrieve the job stream identified by job stream id.

function get(resourceGroupName: string, automationAccountName: string, jobName: string, jobStreamId: string, options?: JobStreamGetOptionalParams): Promise<JobStream>

Parameters

resourceGroupName

string

Name of an Azure Resource group.

automationAccountName

string

The name of the automation account.

jobName

string

The job name.

jobStreamId

string

The job stream id.

options
JobStreamGetOptionalParams

The options parameters.

Returns

Promise<JobStream>

listByJob(string, string, string, JobStreamListByJobOptionalParams)

Retrieve a list of jobs streams identified by job name.

function listByJob(resourceGroupName: string, automationAccountName: string, jobName: string, options?: JobStreamListByJobOptionalParams): PagedAsyncIterableIterator<JobStream, JobStream[], PageSettings>

Parameters

resourceGroupName

string

Name of an Azure Resource group.

automationAccountName

string

The name of the automation account.

jobName

string

The job name.

options
JobStreamListByJobOptionalParams

The options parameters.

Returns