Show / Hide Table of Contents

Class PipelineCustomScriptStepDetails

The type of step where user provides the step artifact to be executed on an execution engine managed by the pipelines service.

Inheritance
object
PipelineStepDetails
PipelineCustomScriptStepDetails
Inherited Members
PipelineStepDetails.StepName
PipelineStepDetails.Description
PipelineStepDetails.DependsOn
PipelineStepDetails.StepConfigurationDetails
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 PipelineCustomScriptStepDetails : PipelineStepDetails

Properties

IsArtifactUploaded

Declaration
[JsonProperty(PropertyName = "isArtifactUploaded")]
public bool? IsArtifactUploaded { get; set; }
Property Value
Type Description
bool?

A flag to indicate whether the artifact has been uploaded for this step or not.

StepInfrastructureConfigurationDetails

Declaration
[JsonProperty(PropertyName = "stepInfrastructureConfigurationDetails")]
public PipelineInfrastructureConfigurationDetails StepInfrastructureConfigurationDetails { get; set; }
Property Value
Type Description
PipelineInfrastructureConfigurationDetails

StepStorageMountConfigurationDetailsList

Declaration
[JsonProperty(PropertyName = "stepStorageMountConfigurationDetailsList")]
public List<StorageMountConfigurationDetails> StepStorageMountConfigurationDetailsList { get; set; }
Property Value
Type Description
List<StorageMountConfigurationDetails>

The storage mount details to mount to the instance running the pipeline step.

In this article
Back to top