Class FleetShape
Shape of the fleet. Describes hardware resources of each node in the fleet.
Inherited Members
Namespace: Oci.BatchService.Models
Assembly: OCI.DotNetSDK.Batch.dll
Syntax
public class FleetShape
Properties
MemoryInGBs
Declaration
[Required(ErrorMessage = "MemoryInGBs is required.")]
[JsonProperty(PropertyName = "memoryInGBs")]
public int? MemoryInGBs { get; set; }
Property Value
| Type | Description |
|---|---|
| int? | Amount of memory in GBs required by the shape. |
Remarks
Required
Ocpus
Declaration
[Required(ErrorMessage = "Ocpus is required.")]
[JsonProperty(PropertyName = "ocpus")]
public int? Ocpus { get; set; }
Property Value
| Type | Description |
|---|---|
| int? | Number of OCPUs required by the shape. |
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 shape. |
Remarks
Required