Skip to content

Get Workflow Run

codecatalyst_get_workflow_run R Documentation

Returns information about a specified run of a workflow

Description

Returns information about a specified run of a workflow.

Usage

codecatalyst_get_workflow_run(spaceName, id, projectName)

Arguments

spaceName

[required] The name of the space.

id

[required] The ID of the workflow run. To retrieve a list of workflow run IDs, use list_workflow_runs.

projectName

[required] The name of the project in the space.

Value

A list with the following syntax:

list(
  spaceName = "string",
  projectName = "string",
  id = "string",
  workflowId = "string",
  status = "SUCCEEDED"|"FAILED"|"STOPPED"|"SUPERSEDED"|"CANCELLED"|"NOT_RUN"|"VALIDATING"|"PROVISIONING"|"IN_PROGRESS"|"STOPPING"|"ABANDONED",
  statusReasons = list(
    list()
  ),
  startTime = as.POSIXct(
    "2015-01-01"
  ),
  endTime = as.POSIXct(
    "2015-01-01"
  ),
  lastUpdatedTime = as.POSIXct(
    "2015-01-01"
  )
)

Request syntax

svc$get_workflow_run(
  spaceName = "string",
  id = "string",
  projectName = "string"
)