PipelineMLJobStepUpdateDetails¶
-
class
oci.data_science.models.
PipelineMLJobStepUpdateDetails
(**kwargs)¶ Bases:
oci.data_science.models.pipeline_step_update_details.PipelineStepUpdateDetails
The type of step where the job is pre-created by the user.
Attributes
STEP_TYPE_CONTAINER
str(object=’’) -> str STEP_TYPE_CUSTOM_SCRIPT
str(object=’’) -> str STEP_TYPE_ML_JOB
str(object=’’) -> str 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 PipelineMLJobStepUpdateDetails 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'¶
-
STEP_TYPE_CUSTOM_SCRIPT
= 'CUSTOM_SCRIPT'¶
-
STEP_TYPE_ML_JOB
= 'ML_JOB'¶
-
__init__
(**kwargs)¶ Initializes a new PipelineMLJobStepUpdateDetails object with values from keyword arguments. The default value of the
step_type
attribute of this class isML_JOB
and it should not be changed. 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 PipelineMLJobStepUpdateDetails. 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 PipelineMLJobStepUpdateDetails.
- description (str) – The value to assign to the description property of this PipelineMLJobStepUpdateDetails.
- step_configuration_details (oci.data_science.models.PipelineStepConfigurationDetails) – The value to assign to the step_configuration_details property of this PipelineMLJobStepUpdateDetails.
-
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
-