PipelineDefaultConfigurationDetails¶
-
class
oci.data_science.models.
PipelineDefaultConfigurationDetails
(**kwargs)¶ Bases:
oci.data_science.models.pipeline_configuration_details.PipelineConfigurationDetails
The default pipeline configuration.
Attributes
TYPE_DEFAULT
str(object=’’) -> str command_line_arguments
Gets the command_line_arguments of this PipelineDefaultConfigurationDetails. environment_variables
Gets the environment_variables of this PipelineDefaultConfigurationDetails. maximum_runtime_in_minutes
Gets the maximum_runtime_in_minutes of this PipelineDefaultConfigurationDetails. type
[Required] Gets the type of this PipelineConfigurationDetails. Methods
__init__
(**kwargs)Initializes a new PipelineDefaultConfigurationDetails 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. -
TYPE_DEFAULT
= 'DEFAULT'¶
-
__init__
(**kwargs)¶ Initializes a new PipelineDefaultConfigurationDetails object with values from keyword arguments. The default value of the
type
attribute of this class isDEFAULT
and it should not be changed. The following keyword arguments are supported (corresponding to the getters/setters of this class):Parameters: - type (str) – The value to assign to the type property of this PipelineDefaultConfigurationDetails. Allowed values for this property are: “DEFAULT”
- maximum_runtime_in_minutes (int) – The value to assign to the maximum_runtime_in_minutes property of this PipelineDefaultConfigurationDetails.
- environment_variables (dict(str, str)) – The value to assign to the environment_variables property of this PipelineDefaultConfigurationDetails.
- command_line_arguments (str) – The value to assign to the command_line_arguments property of this PipelineDefaultConfigurationDetails.
-
command_line_arguments
¶ Gets the command_line_arguments of this PipelineDefaultConfigurationDetails. The command line arguments to set for steps in the pipeline.
Returns: The command_line_arguments of this PipelineDefaultConfigurationDetails. Return type: str
-
environment_variables
¶ Gets the environment_variables of this PipelineDefaultConfigurationDetails. Environment variables to set for steps in the pipeline.
Returns: The environment_variables of this PipelineDefaultConfigurationDetails. Return type: dict(str, 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.
-
maximum_runtime_in_minutes
¶ Gets the maximum_runtime_in_minutes of this PipelineDefaultConfigurationDetails. A time bound for the execution of the entire Pipeline. Timer starts when the Pipeline Run is in progress.
Returns: The maximum_runtime_in_minutes of this PipelineDefaultConfigurationDetails. Return type: int
-
type
¶ [Required] Gets the type of this PipelineConfigurationDetails. The type of pipeline.
Allowed values for this property are: “DEFAULT”, ‘UNKNOWN_ENUM_VALUE’. Any unrecognized values returned by a service will be mapped to ‘UNKNOWN_ENUM_VALUE’.
Returns: The type of this PipelineConfigurationDetails. Return type: str
-