Show / Hide Table of Contents

Class OkeClusterManagedNodePoolConfiguration

The managed node pool configuration properties for an OKE member.

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

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 managed 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 managed 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 managed node pool could be scaled down.

In this article
Back to top