PipelineStepUpdateDetails¶
-
class
oci.data_science.models.
PipelineStepUpdateDetails
(**kwargs)¶ Bases:
object
The details of the step to update.
Attributes
STEP_TYPE_CONTAINER
A constant which can be used with the step_type property of a PipelineStepUpdateDetails. STEP_TYPE_CUSTOM_SCRIPT
A constant which can be used with the step_type property of a PipelineStepUpdateDetails. STEP_TYPE_ML_JOB
A constant which can be used with the step_type property of a PipelineStepUpdateDetails. description
Gets the description of this PipelineStepUpdateDetails. step_configuration_details
Gets the step_configuration_details of this PipelineStepUpdateDetails. step_name
[Required] Gets the step_name of this PipelineStepUpdateDetails. step_type
[Required] Gets the step_type of this PipelineStepUpdateDetails. Methods
__init__
(**kwargs)Initializes a new PipelineStepUpdateDetails object with values from keyword arguments. get_subtype
(object_dictionary)Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype. -
STEP_TYPE_CONTAINER
= 'CONTAINER'¶ A constant which can be used with the step_type property of a PipelineStepUpdateDetails. This constant has a value of “CONTAINER”
-
STEP_TYPE_CUSTOM_SCRIPT
= 'CUSTOM_SCRIPT'¶ A constant which can be used with the step_type property of a PipelineStepUpdateDetails. This constant has a value of “CUSTOM_SCRIPT”
-
STEP_TYPE_ML_JOB
= 'ML_JOB'¶ A constant which can be used with the step_type property of a PipelineStepUpdateDetails. This constant has a value of “ML_JOB”
-
__init__
(**kwargs)¶ Initializes a new PipelineStepUpdateDetails object with values from keyword arguments. This class has the following subclasses and if you are using this class as input to a service operations then you should favor using a subclass over the base class:
PipelineMLJobStepUpdateDetails
PipelineCustomScriptStepUpdateDetails
PipelineContainerStepUpdateDetails
The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - step_type (str) – The value to assign to the step_type property of this PipelineStepUpdateDetails. Allowed values for this property are: “ML_JOB”, “CUSTOM_SCRIPT”, “CONTAINER”
- step_name (str) – The value to assign to the step_name property of this PipelineStepUpdateDetails.
- description (str) – The value to assign to the description property of this PipelineStepUpdateDetails.
- step_configuration_details (oci.data_science.models.PipelineStepConfigurationDetails) – The value to assign to the step_configuration_details property of this PipelineStepUpdateDetails.
-
description
¶ Gets the description of this PipelineStepUpdateDetails. A short description of the step.
Returns: The description of this PipelineStepUpdateDetails. Return type: str
-
static
get_subtype
(object_dictionary)¶ Given the hash representation of a subtype of this class, use the info in the hash to return the class of the subtype.
-
step_configuration_details
¶ Gets the step_configuration_details of this PipelineStepUpdateDetails.
Returns: The step_configuration_details of this PipelineStepUpdateDetails. Return type: oci.data_science.models.PipelineStepConfigurationDetails
-
step_name
¶ [Required] Gets the step_name of this PipelineStepUpdateDetails. The name of the step.
Returns: The step_name of this PipelineStepUpdateDetails. Return type: str
-
step_type
¶ [Required] Gets the step_type of this PipelineStepUpdateDetails. The type of step.
Allowed values for this property are: “ML_JOB”, “CUSTOM_SCRIPT”, “CONTAINER”
Returns: The step_type of this PipelineStepUpdateDetails. Return type: str
-