Show / Hide Table of Contents

Class TimeAndHorizontalScalingConfig

Time of day and horizontal scaling configuration.

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

Properties

TargetNodeCount

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

This value is the desired number of nodes in the cluster.

TimeRecurrence

Declaration
[JsonProperty(PropertyName = "timeRecurrence")]
public string TimeRecurrence { get; set; }
Property Value
Type Description
string

Day/time recurrence (specified following RFC 5545) at which to trigger autoscaling action. Currently only WEEKLY frequency is supported. Days of the week are specified using BYDAY field. Time of the day is specified using BYHOUR and BYMINUTE fields. Other fields are not supported.

In this article
Back to top