Show / Hide Table of Contents

Class ResourceRequestConfiguration

Resource request configuration to run workload on managed compute cluster type compute target compute target.

Inheritance
object
ResourceRequestConfiguration
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
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

In this article
Back to top