ActivityRun Class
Information about an activity run in a pipeline.
Constructor
ActivityRun(*args: Any, **kwargs: Any)
Variables
| Name | Description |
|---|---|
|
pipeline_name
|
The name of the pipeline. |
|
pipeline_run_id
|
The id of the pipeline run. |
|
activity_name
|
The name of the activity. |
|
activity_type
|
The type of the activity. |
|
activity_run_id
|
The id of the activity run. |
|
linked_service_name
|
The name of the compute linked service. |
|
status
|
The status of the activity run. |
|
activity_run_start
|
The start time of the activity run in 'ISO 8601' format. |
|
activity_run_end
|
The end time of the activity run in 'ISO 8601' format. |
|
duration_in_ms
|
The duration of the activity run. |
|
input
|
The input for the activity. |
|
output
|
The output for the activity. |
|
error
|
The error if any from the activity run. |
Attributes
activity_name
The name of the activity.
activity_name: str | None
activity_run_end
The end time of the activity run in 'ISO 8601' format.
activity_run_end: datetime | None
activity_run_id
The id of the activity run.
activity_run_id: str | None
activity_run_start
The start time of the activity run in 'ISO 8601' format.
activity_run_start: datetime | None
activity_type
The type of the activity.
activity_type: str | None
duration_in_ms
The duration of the activity run.
duration_in_ms: int | None
error
The error if any from the activity run.
error: Any | None
input
The input for the activity.
input: Any | None
linked_service_name
The name of the compute linked service.
linked_service_name: str | None
output
The output for the activity.
output: Any | None
pipeline_name
The name of the pipeline.
pipeline_name: str | None
pipeline_run_id
The id of the pipeline run.
pipeline_run_id: str | None
status
The status of the activity run.
status: str | None