Package version:

Information about an activity run in a pipeline.

interface ActivityRun {
    activityName?: string;
    activityRunEnd?: any;
    activityRunId?: string;
    activityRunStart?: any;
    activityType?: string;
    durationInMs?: number;
    error?: any;
    input?: any;
    linkedServiceName?: string;
    output?: any;
    pipelineName?: string;
    pipelineRunId?: string;
    status?: string;
    [property: string]: any;
}

Indexable

  • [property: string]: any

    Describes unknown properties. The value of an unknown property can be of "any" type.

Properties

activityName?: string

The name of the activity. NOTE: This property will not be serialized. It can only be populated by the server.

activityRunEnd?: any

The end time of the activity run in 'ISO 8601' format. NOTE: This property will not be serialized. It can only be populated by the server.

activityRunId?: string

The id of the activity run. NOTE: This property will not be serialized. It can only be populated by the server.

activityRunStart?: any

The start time of the activity run in 'ISO 8601' format. NOTE: This property will not be serialized. It can only be populated by the server.

activityType?: string

The type of the activity. NOTE: This property will not be serialized. It can only be populated by the server.

durationInMs?: number

The duration of the activity run. NOTE: This property will not be serialized. It can only be populated by the server.

error?: any

The error if any from the activity run. NOTE: This property will not be serialized. It can only be populated by the server.

input?: any

The input for the activity. NOTE: This property will not be serialized. It can only be populated by the server.

linkedServiceName?: string

The name of the compute linked service. NOTE: This property will not be serialized. It can only be populated by the server.

output?: any

The output for the activity. NOTE: This property will not be serialized. It can only be populated by the server.

pipelineName?: string

The name of the pipeline. NOTE: This property will not be serialized. It can only be populated by the server.

pipelineRunId?: string

The id of the pipeline run. NOTE: This property will not be serialized. It can only be populated by the server.

status?: string

The status of the activity run. NOTE: This property will not be serialized. It can only be populated by the server.