Show / Hide Table of Contents

Class ResizeOpensearchClusterHorizontalDetails

The node count configuration to update on an existing OpenSearch cluster for horizontal resizing.

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

Properties

DataNodeCount

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

The number of data nodes to configure for the cluster.

DefinedTags

Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace": {"bar-key": "value"}}

FreeformTags

Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type Description
Dictionary<string, string>

Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

MasterNodeCount

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

The number of master nodes to configure for the cluster.

OpendashboardNodeCount

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

The number of OpenSearch Dashboard nodes to configure for the cluster.

SearchNodeCount

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

The number of search nodes configured for the cluster.

In this article
Back to top