interface RunUpdateModel {
    build?: ShallowReference;
    buildDropLocation?: string;
    buildFlavor?: string;
    buildPlatform?: string;
    comment?: string;
    completedDate?: string;
    controller?: string;
    customTestFields?: CustomTestField[];
    deleteInProgressResults?: boolean;
    dtlAutEnvironment?: ShallowReference;
    dtlEnvironment?: ShallowReference;
    dtlEnvironmentDetails?: DtlEnvironmentDetails;
    dueDate?: string;
    errorMessage?: string;
    iteration?: string;
    logEntries?: TestMessageLogDetails[];
    name?: string;
    releaseEnvironmentUri?: string;
    releaseUri?: string;
    runSummary?: RunSummaryModel[];
    sourceWorkflow?: string;
    startedDate?: string;
    state?: string;
    substate?: TestRunSubstate;
    tags?: TestTag[];
    testEnvironmentId?: string;
    testSettings?: ShallowReference;
}

Properties

An abstracted reference to the build that it belongs.

buildDropLocation?: string

Drop location of the build used for test run.

buildFlavor?: string

Flavor of the build used for test run. (E.g: Release, Debug)

buildPlatform?: string

Platform of the build used for test run. (E.g.: x86, amd64)

comment?: string

Comments entered by those analyzing the run.

completedDate?: string

Completed date time of the run.

controller?: string

Name of the test controller used for automated run.

customTestFields?: CustomTestField[]

Additional properties of test Run. Value of the CustomField cannot be more than 1KB.

deleteInProgressResults?: boolean

true to delete inProgess Results , false otherwise.

dtlAutEnvironment?: ShallowReference

An abstracted reference to DtlAutEnvironment.

dtlEnvironment?: ShallowReference

An abstracted reference to DtlEnvironment.

dtlEnvironmentDetails?: DtlEnvironmentDetails
dueDate?: string

Due date and time for test run.

errorMessage?: string

Error message associated with the run.

iteration?: string

The iteration in which to create the run.

logEntries?: TestMessageLogDetails[]

Log entries associated with the run. Use a comma-separated list of multiple log entry objects. { logEntry }, { logEntry }, ...

name?: string

Name of the test run.

releaseEnvironmentUri?: string

URI of release environment associated with the run.

releaseUri?: string

URI of release associated with the run.

runSummary?: RunSummaryModel[]

Run summary for run Type = NoConfigRun.

sourceWorkflow?: string

SourceWorkFlow(CI/CD) of the test run.

startedDate?: string

Start date time of the run.

state?: string

The state of the test run Below are the valid values - NotStarted, InProgress, Completed, Aborted, Waiting

substate?: TestRunSubstate

The types of sub states for test run.

tags?: TestTag[]

Tags to attach with the test run.

testEnvironmentId?: string

ID of the test environment associated with the run.

testSettings?: ShallowReference

An abstracted reference to test setting resource.