Show / Hide Table of Contents

Class OkeClusterVirtualNodePoolConfiguration

The virtual node pool configuration properties for an OKE member.

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

Properties

Id

Declaration
[Required(ErrorMessage = "Id is required.")]
[JsonProperty(PropertyName = "id")]
public string Id { get; set; }
Property Value
Type Description
string

The OCID of the virtual node pool in OKE cluster.

Remarks

Required

Maximum

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

The maximum number to which nodes in the virtual node pool could be scaled up.

Minimum

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

The minimum number to which nodes in the virtual node pool could be scaled down.

In this article
Back to top