Show / Hide Table of Contents

Class JobShapeConfigDetails

Details for the job run shape configuration. Specify only when a flex shape is selected.

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

Properties

CpuBaseline

Declaration
[JsonProperty(PropertyName = "cpuBaseline")]
[JsonConverter(typeof(ResponseEnumConverter))]
public JobShapeConfigDetails.CpuBaselineEnum? CpuBaseline { get; set; }
Property Value
Type Description
JobShapeConfigDetails.CpuBaselineEnum?

The baseline OCPU utilization for a subcore burstable VM instance. If this attribute is left blank, it will default to BASELINE_1_1. The following values are supported: BASELINE_1_8 - baseline usage is 1/8 of an OCPU. BASELINE_1_2 - baseline usage is 1/2 of an OCPU. BASELINE_1_1 - baseline usage is an entire OCPU. This represents a non-burstable instance.

MemoryInGBs

Declaration
[JsonProperty(PropertyName = "memoryInGBs")]
public float? MemoryInGBs { get; set; }
Property Value
Type Description
float?

The total amount of memory available to the job run instance, in gigabytes.

Ocpus

Declaration
[JsonProperty(PropertyName = "ocpus")]
public float? Ocpus { get; set; }
Property Value
Type Description
float?

The total number of OCPUs available to the job run instance.

In this article
Back to top