Show / Hide Table of Contents

Class UpdateClusterSpecsDetails

update cluster specs in Kiev.

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

Properties

ClusterId

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

OCID of the Opensearch Cluster.

Remarks

Required

ClusterPrivateEndpoint

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

Updated Private endpoint of cluster.

DashboardSoftwareVersion

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

Updated version of the dashboard software the cluster is currently running.

DataNodeHostMemoryGB

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

Updated value of memory for data nodes in the cluster (in GB).

DataNodeHostOcpuCount

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

Updated value of OCPU's configured for data nodes of the cluster.

DataNodeHostShape

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

The node shape for the cluster's data nodes.

MasterNodeHostMemoryGB

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

Updated value of memory for master nodes in the cluster (in GB).

MasterNodeHostOcpuCount

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

Updated value of OCPU's configured for master nodes of the cluster.

MasterNodeHostShape

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

The node shape for the cluster's master nodes.

OpendashboardNodeHostShape

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

The shape node for the cluster's OpenSearch Dashboard nodes.

SearchNodeHostMemoryGB

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

The amount of memory in GB, for the cluster's search nodes.

SearchNodeHostOcpuCount

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

The number of OCPUs configured for the cluster's search nodes.

SearchNodeHostShape

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

The node shape for the cluster's search nodes.

SoftwareVersion

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

Updated version of the software the cluster is currently running.

In this article
Back to top