Show / Hide Table of Contents

Class ComputeGpuMemoryClusterScaleConfig

Configuration settings for GPU Memory Cluster scaling.

Inheritance
object
ComputeGpuMemoryClusterScaleConfig
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.CoreService.Models
Assembly: OCI.DotNetSDK.Core.dll
Syntax
public class ComputeGpuMemoryClusterScaleConfig

Properties

IsDownsizeEnabled

Declaration
[JsonProperty(PropertyName = "isDownsizeEnabled")]
public bool? IsDownsizeEnabled { get; set; }
Property Value
Type Description
bool?

Whether downsizing is enabled.

IsUpsizeEnabled

Declaration
[JsonProperty(PropertyName = "isUpsizeEnabled")]
public bool? IsUpsizeEnabled { get; set; }
Property Value
Type Description
bool?

Whether upsizing is enabled.

TargetSize

Declaration
[JsonProperty(PropertyName = "targetSize")]
public long? TargetSize { get; set; }
Property Value
Type Description
long?

The configured target size for the GPU Memory cluster.

In this article
Back to top