Show / Hide Table of Contents

Class CreateComputeGpuMemoryClusterScaleConfig

Configuration settings for GPU Memory Cluster scaling.

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

Properties

IsDownsizeEnabled

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

Enables downsizing towards the target size.

IsUpsizeEnabled

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

Enables upsizing towards the target size.

Remarks

Required

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