Class KafkaConnectionSummary
Summary of the Kafka Connection.
Inherited Members
Namespace: Oci.GoldengateService.Models
Assembly: OCI.DotNetSDK.Goldengate.dll
Syntax
public class KafkaConnectionSummary : ConnectionSummary
Properties
BootstrapServers
Declaration
[JsonProperty(PropertyName = "bootstrapServers")]
public List<KafkaBootstrapServer> BootstrapServers { get; set; }
Property Value
Type | Description |
---|---|
List<KafkaBootstrapServer> | Kafka bootstrap. Equivalent of bootstrap.servers configuration property in Kafka: list of KafkaBootstrapServer objects specified by host/port. Used for establishing the initial connection to the Kafka cluster. Example: "server1.example.com:9092,server2.example.com:9092" |
SecurityProtocol
Declaration
[JsonProperty(PropertyName = "securityProtocol")]
[JsonConverter(typeof(StringEnumConverter))]
public KafkaConnection.SecurityProtocolEnum? SecurityProtocol { get; set; }
Property Value
Type | Description |
---|---|
KafkaConnection.SecurityProtocolEnum? | Security Type for Kafka. |
StreamPoolId
Declaration
[JsonProperty(PropertyName = "streamPoolId")]
public string StreamPoolId { get; set; }
Property Value
Type | Description |
---|---|
string | The OCID of the stream pool being referenced. |
TechnologyType
Declaration
[Required(ErrorMessage = "TechnologyType is required.")]
[JsonProperty(PropertyName = "technologyType")]
[JsonConverter(typeof(StringEnumConverter))]
public KafkaConnection.TechnologyTypeEnum? TechnologyType { get; set; }
Property Value
Type | Description |
---|---|
KafkaConnection.TechnologyTypeEnum? | The Kafka technology type. |
Remarks
Required
Username
Declaration
[JsonProperty(PropertyName = "username")]
public string Username { get; set; }
Property Value
Type | Description |
---|---|
string | The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it. |