Show / Hide Table of Contents

Class InstallPublicConnectivityAddonDetails

The data to install a KafkaClusterAddon.

Inheritance
object
InstallAddonDetails
InstallPublicConnectivityAddonDetails
Inherited Members
InstallAddonDetails.Name
InstallAddonDetails.Description
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 InstallPublicConnectivityAddonDetails : InstallAddonDetails

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

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's for ingress/egress traffic.

Remarks

Required

In this article
Back to top