Show / Hide Table of Contents

Class TimeAndVerticalScalingConfig

Time of day and vertical scaling configuration.

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

Properties

TargetMemoryPerNode

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

For nodes with flexible compute shapes, this value is the desired memory in GBs on each node. This value is not used for nodes with fixed compute shapes.

TargetOcpusPerNode

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

For nodes with flexible compute shapes, this value is the desired OCPUs count on each node. This value is not used for nodes with fixed compute shapes.

TargetShape

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

For nodes with fixed compute shapes, this value is the desired shape of each node. This value is not used for nodes with flexible compute shapes.

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