Show / Hide Table of Contents

Class FixedGpuFleetShape

Fixed shape of the GPU fleet. Describes hardware resources of each node in the fleet.

Inheritance
object
GpuFleetShape
FixedGpuFleetShape
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 FixedGpuFleetShape : GpuFleetShape

Properties

DiskSizeInGBs

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

Amount of disk space in GBs required for the shape.

ShapeName

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

The name of the fixed GPU fleet shape.

Remarks

Required

In this article
Back to top