Class ResourceRequestConfiguration
Resource request configuration to run workload on managed compute cluster type compute target compute target.
Inherited Members
Namespace: Oci.DatascienceService.Models
Assembly: OCI.DotNetSDK.Datascience.dll
Syntax
public class ResourceRequestConfiguration
Properties
Gpus
Declaration
[JsonProperty(PropertyName = "gpus")]
public int? Gpus { get; set; }
Property Value
| Type | Description |
|---|---|
| int? | The total number of gpus required to be allocated to the workload. |
MemoryInGBs
Declaration
[Required(ErrorMessage = "MemoryInGBs is required.")]
[JsonProperty(PropertyName = "memoryInGBs")]
public float? MemoryInGBs { get; set; }
Property Value
| Type | Description |
|---|---|
| float? | The memory in Gbs required to be allocated to run the workload. |
Remarks
Required
Ocpus
Declaration
[Required(ErrorMessage = "Ocpus is required.")]
[JsonProperty(PropertyName = "ocpus")]
public float? Ocpus { get; set; }
Property Value
| Type | Description |
|---|---|
| float? | The ocpus required to be allocated to run the workload. |
Remarks
Required