File: //lib/mysqlsh/lib/python3.8/site-packages/oci/data_science/models/pipeline_container_step_run.py
# coding: utf-8
# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved.
# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
# NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101
from .pipeline_step_run import PipelineStepRun
from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401
from oci.decorators import init_model_state_from_kwargs
@init_model_state_from_kwargs
class PipelineContainerStepRun(PipelineStepRun):
"""
Detail of each ContainerStepRun.
"""
def __init__(self, **kwargs):
"""
Initializes a new PipelineContainerStepRun object with values from keyword arguments. The default value of the :py:attr:`~oci.data_science.models.PipelineContainerStepRun.step_type` attribute
of this class is ``CONTAINER`` and it should not be changed.
The following keyword arguments are supported (corresponding to the getters/setters of this class):
:param step_type:
The value to assign to the step_type property of this PipelineContainerStepRun.
Allowed values for this property are: "ML_JOB", "CUSTOM_SCRIPT", "CONTAINER", "DATAFLOW"
:type step_type: str
:param time_started:
The value to assign to the time_started property of this PipelineContainerStepRun.
:type time_started: datetime
:param time_finished:
The value to assign to the time_finished property of this PipelineContainerStepRun.
:type time_finished: datetime
:param step_name:
The value to assign to the step_name property of this PipelineContainerStepRun.
:type step_name: str
:param lifecycle_state:
The value to assign to the lifecycle_state property of this PipelineContainerStepRun.
Allowed values for this property are: "WAITING", "ACCEPTED", "IN_PROGRESS", "FAILED", "SUCCEEDED", "CANCELING", "CANCELED", "DELETED", "SKIPPED"
:type lifecycle_state: str
:param lifecycle_details:
The value to assign to the lifecycle_details property of this PipelineContainerStepRun.
:type lifecycle_details: str
"""
self.swagger_types = {
'step_type': 'str',
'time_started': 'datetime',
'time_finished': 'datetime',
'step_name': 'str',
'lifecycle_state': 'str',
'lifecycle_details': 'str'
}
self.attribute_map = {
'step_type': 'stepType',
'time_started': 'timeStarted',
'time_finished': 'timeFinished',
'step_name': 'stepName',
'lifecycle_state': 'lifecycleState',
'lifecycle_details': 'lifecycleDetails'
}
self._step_type = None
self._time_started = None
self._time_finished = None
self._step_name = None
self._lifecycle_state = None
self._lifecycle_details = None
self._step_type = 'CONTAINER'
def __repr__(self):
return formatted_flat_dict(self)
def __eq__(self, other):
if other is None:
return False
return self.__dict__ == other.__dict__
def __ne__(self, other):
return not self == other