Class ShapeConfig
This is used to configure the shape of the driver or executor if a flexible shape is used.
Inherited Members
Namespace: Oci.DifService.Models
Assembly: OCI.DotNetSDK.Dif.dll
Syntax
public class ShapeConfig
Properties
MemoryInGBs
Declaration
[Required(ErrorMessage = "MemoryInGBs is required.")]
[JsonProperty(PropertyName = "memoryInGBs")]
public int? MemoryInGBs { get; set; }
Property Value
| Type | Description |
|---|---|
| int? | The amount of memory used for the driver or executors. |
Remarks
Required
Ocpus
Declaration
[Required(ErrorMessage = "Ocpus is required.")]
[JsonProperty(PropertyName = "ocpus")]
public int? Ocpus { get; set; }
Property Value
| Type | Description |
|---|---|
| int? | The total number of OCPUs used for the driver or executors. See here for details. |
Remarks
Required