Show / Hide Table of Contents

Class BrokerShape

Configuration of the broker node.

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

Properties

NodeCount

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

Number of Kafka broker nodes

Remarks

Required

OcpuCount

Declaration
[Required(ErrorMessage = "OcpuCount is required.")]
[JsonProperty(PropertyName = "ocpuCount")]
public int? OcpuCount { get; set; }
Property Value
Type Description
int?

Number of OCPUs per nodes

Remarks

Required

StorageSizeInGbs

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

Size of the storage per nodes.

In this article
Back to top