Show / Hide Table of Contents

Class PipelineInfrastructureConfigurationDetails

The infrastructure configuration details of a pipeline or a step.

Inheritance
object
PipelineInfrastructureConfigurationDetails
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 PipelineInfrastructureConfigurationDetails

Properties

BlockStorageSizeInGBs

Declaration
[Required(ErrorMessage = "BlockStorageSizeInGBs is required.")]
[JsonProperty(PropertyName = "blockStorageSizeInGBs")]
public int? BlockStorageSizeInGBs { get; set; }
Property Value
Type Description
int?

The size of the block storage volume to attach to the instance.

Remarks

Required

ShapeConfigDetails

Declaration
[JsonProperty(PropertyName = "shapeConfigDetails")]
public PipelineShapeConfigDetails ShapeConfigDetails { get; set; }
Property Value
Type Description
PipelineShapeConfigDetails

ShapeName

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

The shape used to launch the instance for all step runs in the pipeline.

Remarks

Required

SubnetId

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

The subnet to create a secondary vnic in to attach to the instance running the pipeline step.

In this article
Back to top