Show / Hide Table of Contents

Class FastLaunchJobConfigSummary

The shape config to launch a fast launch capable job instance

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

Properties

CoreCount

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

The number of cores associated with this fast launch job shape.

Remarks

Required

ManagedEgressSupport

Declaration
[Required(ErrorMessage = "ManagedEgressSupport is required.")]
[JsonProperty(PropertyName = "managedEgressSupport")]
[JsonConverter(typeof(ResponseEnumConverter))]
public FastLaunchJobConfigSummary.ManagedEgressSupportEnum? ManagedEgressSupport { get; set; }
Property Value
Type Description
FastLaunchJobConfigSummary.ManagedEgressSupportEnum?

The managed egress support

Remarks

Required

MemoryInGBs

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

The number of cores associated with this fast launch job shape.

Remarks

Required

Name

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

The name of the fast launch job config

Remarks

Required

ShapeName

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

The name of the fast launch job shape.

Remarks

Required

ShapeSeries

Declaration
[Required(ErrorMessage = "ShapeSeries is required.")]
[JsonProperty(PropertyName = "shapeSeries")]
[JsonConverter(typeof(ResponseEnumConverter))]
public FastLaunchJobConfigSummary.ShapeSeriesEnum? ShapeSeries { get; set; }
Property Value
Type Description
FastLaunchJobConfigSummary.ShapeSeriesEnum?

The family that the compute shape belongs to.

Remarks

Required

In this article
Back to top