Source code for kfp.components.task_final_status

# Copyright 2022 The Kubeflow Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#      http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Definition for PipelineTaskFinalStatus."""

import dataclasses
from typing import Optional


[docs]@dataclasses.dataclass class PipelineTaskFinalStatus: """The final status of a pipeline task. This is the Python representation of the proto: PipelineTaskFinalStatus https://github.com/kubeflow/pipelines/blob/1c3e2768e6177d5d6e3f4b8eff8fafb9a3b76c1f/api/v2alpha1/pipeline_spec.proto#L886 Attributes: state: The final state of the task. The value could be one of 'SUCCEEDED', 'FAILED' or 'CANCELLED'. pipeline_job_resource_name: The pipeline job resource name, in the format of `projects/{project}/locations/{location}/pipelineJobs/{pipeline_job}`. pipeline_task_name: The pipeline task that produces this status. error_code: In case of error, the oogle.rpc.Code https://github.com/googleapis/googleapis/blob/master/google/rpc/code.proto If state is 'SUCCEEDED', this is None. error_message: In case of error, the detailed error message. If state is 'SUCCEEDED', this is None. """ state: str pipeline_job_resource_name: str pipeline_task_name: str error_code: Optional[int] error_message: Optional[str]