JobStepExecutions interface

Interface representing a JobStepExecutions.

Methods

get(string, string, string, string, string, string, JobStepExecutionsGetOptionalParams)

Gets a step execution of a job execution.

listByJobExecution(string, string, string, string, string, JobStepExecutionsListByJobExecutionOptionalParams)

Lists the step executions of a job execution.

Method Details

get(string, string, string, string, string, string, JobStepExecutionsGetOptionalParams)

Gets a step execution of a job execution.

function get(resourceGroupName: string, serverName: string, jobAgentName: string, jobName: string, jobExecutionId: string, stepName: string, options?: JobStepExecutionsGetOptionalParams): Promise<JobExecution>

Parameters

resourceGroupName

string

The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.

serverName

string

The name of the server.

jobAgentName

string

The name of the job agent.

jobName

string

The name of the job to get.

jobExecutionId

string

The unique id of the job execution

stepName

string

The name of the step.

options
JobStepExecutionsGetOptionalParams

The options parameters.

Returns

Promise<JobExecution>

listByJobExecution(string, string, string, string, string, JobStepExecutionsListByJobExecutionOptionalParams)

Lists the step executions of a job execution.

function listByJobExecution(resourceGroupName: string, serverName: string, jobAgentName: string, jobName: string, jobExecutionId: string, options?: JobStepExecutionsListByJobExecutionOptionalParams): PagedAsyncIterableIterator<JobExecution, JobExecution[], PageSettings>

Parameters

resourceGroupName

string

The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.

serverName

string

The name of the server.

jobAgentName

string

The name of the job agent.

jobName

string

The name of the job to get.

jobExecutionId

string

The id of the job execution

options
JobStepExecutionsListByJobExecutionOptionalParams

The options parameters.

Returns