Show / Hide Table of Contents

Class CreateServiceManagedGpuFleetDetails

Service managed GPU Fleet configuration of the batch context.

Inheritance
object
CreateFleetDetails
CreateServiceManagedGpuFleetDetails
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 CreateServiceManagedGpuFleetDetails : CreateFleetDetails

Properties

MaxConcurrentTasks

Declaration
[Required(ErrorMessage = "MaxConcurrentTasks is required.")]
[JsonProperty(PropertyName = "maxConcurrentTasks")]
public int? MaxConcurrentTasks { get; set; }
Property Value
Type Description
int?

Maximum number of concurrent tasks for the service managed GPU fleet.

Remarks

Required

Name

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

Name of the service managed GPU fleet.

Remarks

Required

Shape

Declaration
[Required(ErrorMessage = "Shape is required.")]
[JsonProperty(PropertyName = "shape")]
public CreateGpuFleetShapeDetails Shape { get; set; }
Property Value
Type Description
CreateGpuFleetShapeDetails
Remarks

Required

In this article
Back to top