Show / Hide Table of Contents

Class PipelineJsonStepOutputParameterDetails

Pipeline JSON output parameter details

Inheritance
object
PipelineStepOutputParameterDetails
PipelineJsonStepOutputParameterDetails
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 PipelineJsonStepOutputParameterDetails : PipelineStepOutputParameterDetails

Properties

OutputFile

Declaration
[Required(ErrorMessage = "OutputFile is required.")]
[JsonProperty(PropertyName = "outputFile")]
public string OutputFile { get; set; }
Property Value
Type Description
string

Output file name

Remarks

Required

ParameterNames

Declaration
[Required(ErrorMessage = "ParameterNames is required.")]
[JsonProperty(PropertyName = "parameterNames")]
public List<string> ParameterNames { get; set; }
Property Value
Type Description
List<string>

The list of parameter names that will be output by this step

Remarks

Required

In this article
Back to top