Show / Hide Table of Contents

Class AddKafkaDetails

The information about the Kafka service to be added.

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

Properties

BlockVolumeSizeInGBs

Declaration
[JsonProperty(PropertyName = "blockVolumeSizeInGBs")]
public long? BlockVolumeSizeInGBs { get; set; }
Property Value
Type Description
long?

The size of block volme in GB to be attached to the given node. All details needed for attaching the block volume are managed by the service itself.

ClusterAdminPassword

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

Base-64 encoded password for the cluster admin user.

NumberOfKafkaNodes

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

Number of Kafka nodes for the cluster.

Remarks

Required

SecretId

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

The secretId for the clusterAdminPassword.

Shape

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

Shape of the Kafka broker node.

Remarks

Required

ShapeConfig

Declaration
[JsonProperty(PropertyName = "shapeConfig")]
public ShapeConfigDetails ShapeConfig { get; set; }
Property Value
Type Description
ShapeConfigDetails
In this article
Back to top