Show / Hide Table of Contents

Class PublicConnectivityAddon

The data that represents a Public Connectivity Addon

Inheritance
object
KafkaClusterAddon
PublicConnectivityAddon
Inherited Members
KafkaClusterAddon.Name
KafkaClusterAddon.Description
KafkaClusterAddon.TimeCreated
KafkaClusterAddon.TimeUpdated
KafkaClusterAddon.LifecycleState
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 PublicConnectivityAddon : KafkaClusterAddon

Properties

AuthenticationMechanism

Declaration
[Required(ErrorMessage = "AuthenticationMechanism is required.")]
[JsonProperty(PropertyName = "authenticationMechanism")]
[JsonConverter(typeof(StringEnumConverter))]
public AuthenticationMechanism? AuthenticationMechanism { get; set; }
Property Value
Type Description
AuthenticationMechanism?

Authentication mechanism.

Remarks

Required

BootstrapUrl

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

The bootstrap url of the kafka cluster.

Remarks

Required

NetworkCidrs

Declaration
[Required(ErrorMessage = "NetworkCidrs is required.")]
[JsonProperty(PropertyName = "networkCidrs")]
public List<string> NetworkCidrs { get; set; }
Property Value
Type Description
List<string>

A list of CIDR ranges for ingress/egress traffic.

Remarks

Required

In this article
Back to top