Show / Hide Table of Contents

Class ResourceLimitConfiguration

Resource limit configuration details for workload on managed compute cluster type compute target

Inheritance
object
ResourceLimitConfiguration
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 ResourceLimitConfiguration

Properties

MemoryInGBs

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

Burstable limit for memory.

Remarks

Required

Ocpus

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

Burstable limit for cpu.

Remarks

Required

In this article
Back to top