Show / Hide Table of Contents

Class PipelineStepConfigurationDetails

The configuration details of a step.

Inheritance
object
PipelineStepConfigurationDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatascienceService.Models
Assembly: OCI.DotNetSDK.Datascience.dll
Syntax
public class PipelineStepConfigurationDetails

Properties

CommandLineArguments

Declaration
[JsonProperty(PropertyName = "commandLineArguments")]
public string CommandLineArguments { get; set; }
Property Value
Type Description
string

The command line arguments to set for step.

EnvironmentVariables

Declaration
[JsonProperty(PropertyName = "environmentVariables")]
public Dictionary<string, string> EnvironmentVariables { get; set; }
Property Value
Type Description
Dictionary<string, string>

Environment variables to set for step.

MaximumRuntimeInMinutes

Declaration
[JsonProperty(PropertyName = "maximumRuntimeInMinutes")]
public long? MaximumRuntimeInMinutes { get; set; }
Property Value
Type Description
long?

A time bound for the execution of the step.

In this article
Back to top