Show / Hide Table of Contents

Class PipelineContainerStepDetails

The type of step where user provides the container details for an execution engine managed by the pipelines service.

Inheritance
object
PipelineStepDetails
PipelineContainerStepDetails
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 PipelineContainerStepDetails : 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.

StepContainerConfigurationDetails

Declaration
[Required(ErrorMessage = "StepContainerConfigurationDetails is required.")]
[JsonProperty(PropertyName = "stepContainerConfigurationDetails")]
public PipelineContainerConfigurationDetails StepContainerConfigurationDetails { get; set; }
Property Value
Type Description
PipelineContainerConfigurationDetails
Remarks

Required

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