Show / Hide Table of Contents

Class ClusterDetails

The state of the cluster during a specified time period.

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

Properties

ClusterType

Declaration
[JsonProperty(PropertyName = "clusterType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ClusterDetails.ClusterTypeEnum? ClusterType { get; set; }
Property Value
Type Description
ClusterDetails.ClusterTypeEnum?

The type of the cluster.

ContainerCount

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

Number of containers as reported in the last cluster scan

NodeCount

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

Number of nodes as reported in the last cluster scan

PodCount

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

Number of pods as reported in the last cluster scan

In this article
Back to top