Show / Hide Table of Contents

Class NodeSummary

The details of each node in the cluster.

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

Properties

DisplayName

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

A user-friendly name of a cluster node.

Remarks

Required

PrivateEndpointFqdn

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

The fully qualified domain name (FQDN) of the API endpoint to access a specific node.

Remarks

Required

PrivateEndpointIpAddress

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

The private IP address of the API endpoint to access a specific node.

Remarks

Required

RedisClusterId

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

The OCID of the cluster

Remarks

Required

ShardNumber

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

The shard number to which the node belongs to.

In this article
Back to top