Show / Hide Table of Contents

Class MetricBasedHorizontalScaleInConfig

Configration for a metric based horizontal scale-in policy.

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

Properties

Metric

Declaration
[JsonProperty(PropertyName = "metric")]
public AutoScalePolicyMetricRule Metric { get; set; }
Property Value
Type Description
AutoScalePolicyMetricRule

MinNodeCount

Declaration
[JsonProperty(PropertyName = "minNodeCount")]
public int? MinNodeCount { get; set; }
Property Value
Type Description
int?

This value is the minimum number of nodes the cluster can be scaled-in to.

StepSize

Declaration
[JsonProperty(PropertyName = "stepSize")]
public int? StepSize { get; set; }
Property Value
Type Description
int?

This value is the number of nodes to remove during a scale-in event.

In this article
Back to top