Workflow interface

Interface representing a Workflow.

Methods

get(string, string, string, WorkflowGetOptionalParams)

Gets the details of the job.

list(string, string, WorkflowListOptionalParams)

Gets the list of jobs in the given vault.

Method Details

get(string, string, string, WorkflowGetOptionalParams)

Gets the details of the job.

function get(resourceGroupName: string, vaultName: string, jobName: string, options?: WorkflowGetOptionalParams): Promise<WorkflowModel>

Parameters

resourceGroupName

string

The name of the resource group. The name is case insensitive.

vaultName

string

The vault name.

jobName

string

The job (workflow) name.

options
WorkflowGetOptionalParams

The options parameters.

Returns

Promise<WorkflowModel>

list(string, string, WorkflowListOptionalParams)

Gets the list of jobs in the given vault.

function list(resourceGroupName: string, vaultName: string, options?: WorkflowListOptionalParams): PagedAsyncIterableIterator<WorkflowModel, WorkflowModel[], PageSettings>

Parameters

resourceGroupName

string

The name of the resource group. The name is case insensitive.

vaultName

string

The vault name.

options
WorkflowListOptionalParams

The options parameters.

Returns