Show / Hide Table of Contents

Class StandaloneJobInfrastructureConfigurationDetails

The standalone job infrastructure configuration.

Inheritance
object
JobInfrastructureConfigurationDetails
StandaloneJobInfrastructureConfigurationDetails
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 StandaloneJobInfrastructureConfigurationDetails : JobInfrastructureConfigurationDetails

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 running the job

Remarks

Required

JobShapeConfigDetails

Declaration
[JsonProperty(PropertyName = "jobShapeConfigDetails")]
public JobShapeConfigDetails JobShapeConfigDetails { get; set; }
Property Value
Type Description
JobShapeConfigDetails

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 job run instances.

Remarks

Required

SubnetId

Declaration
[Required(ErrorMessage = "SubnetId is required.")]
[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 job

Remarks

Required

In this article
Back to top