PipelineStepConfigurationDetails

class oci.data_science.models.PipelineStepConfigurationDetails(**kwargs)

Bases: object

The configuration details of a step.

Methods

__init__(**kwargs) Initializes a new PipelineStepConfigurationDetails object with values from keyword arguments.

Attributes

command_line_arguments Gets the command_line_arguments of this PipelineStepConfigurationDetails.
environment_variables Gets the environment_variables of this PipelineStepConfigurationDetails.
maximum_runtime_in_minutes Gets the maximum_runtime_in_minutes of this PipelineStepConfigurationDetails.
__init__(**kwargs)

Initializes a new PipelineStepConfigurationDetails object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
  • maximum_runtime_in_minutes (int) – The value to assign to the maximum_runtime_in_minutes property of this PipelineStepConfigurationDetails.
  • environment_variables (dict(str, str)) – The value to assign to the environment_variables property of this PipelineStepConfigurationDetails.
  • command_line_arguments (str) – The value to assign to the command_line_arguments property of this PipelineStepConfigurationDetails.
command_line_arguments

Gets the command_line_arguments of this PipelineStepConfigurationDetails. The command line arguments to set for step.

Returns:The command_line_arguments of this PipelineStepConfigurationDetails.
Return type:str
environment_variables

Gets the environment_variables of this PipelineStepConfigurationDetails. Environment variables to set for step.

Returns:The environment_variables of this PipelineStepConfigurationDetails.
Return type:dict(str, str)
maximum_runtime_in_minutes

Gets the maximum_runtime_in_minutes of this PipelineStepConfigurationDetails. A time bound for the execution of the step.

Returns:The maximum_runtime_in_minutes of this PipelineStepConfigurationDetails.
Return type:int