Show / Hide Table of Contents

Class CpuFleetShapeExecutionDetails

Details about the CPU shape which was used for the task execution.

Inheritance
object
FleetShapeExecutionDetails
CpuFleetShapeExecutionDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.BatchService.Models
Assembly: OCI.DotNetSDK.Batch.dll
Syntax
public class CpuFleetShapeExecutionDetails : FleetShapeExecutionDetails

Properties

DiskSizeInGBs

Declaration
[JsonProperty(PropertyName = "diskSizeInGBs")]
public int? DiskSizeInGBs { get; set; }
Property Value
Type Description
int?

Amount of disk space provided by the shape.

MemoryInGBs

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

Amount of memory in GBs provided by the shape.

Ocpus

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

Number of OCPUs provided by the shape.

ShapeName

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

Name of the shape.

In this article
Back to top