ruạṛ
# coding: utf-8 # Copyright (c) 2016, 2024, 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 PipelineCustomScriptStepRun(PipelineStepRun): """ Detail of each CustomScriptStepRun. """ def __init__(self, **kwargs): """ Initializes a new PipelineCustomScriptStepRun object with values from keyword arguments. The default value of the :py:attr:`~oci.data_science.models.PipelineCustomScriptStepRun.step_type` attribute of this class is ``CUSTOM_SCRIPT`` 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 PipelineCustomScriptStepRun. Allowed values for this property are: "ML_JOB", "CUSTOM_SCRIPT", "CONTAINER" :type step_type: str :param time_started: The value to assign to the time_started property of this PipelineCustomScriptStepRun. :type time_started: datetime :param time_finished: The value to assign to the time_finished property of this PipelineCustomScriptStepRun. :type time_finished: datetime :param step_name: The value to assign to the step_name property of this PipelineCustomScriptStepRun. :type step_name: str :param lifecycle_state: The value to assign to the lifecycle_state property of this PipelineCustomScriptStepRun. 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 PipelineCustomScriptStepRun. :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 = 'CUSTOM_SCRIPT' 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
cải xoăn