Show / Hide Table of Contents

Class VirtualNodePoolCyclingDetails

Virtual Node Pool Cycling Details

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

Properties

IsVirtualNodeCyclingEnabled

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

If virtual nodes in the virtual nodepool will be cycled to have new changes.

MaximumSurge

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

Maximum additional new virtual nodes that would be temporarily created and added to virtual nodepool during the cycling virtual nodepool process. OKE supports both integer and percentage input. Defaults to 1, Ranges from 0 to Virtual Nodepool size or 0% to 100%

MaximumUnavailable

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

Maximum active virtual nodes that would be terminated from virtual nodepool during the cycling virtual nodepool process. OKE supports both integer and percentage input. Defaults to 0, Ranges from 0 to Virtual Nodepool size or 0% to 100%

In this article
Back to top