Class KafkaBootstrapServer
Represents a Kafka bootstrap server with host name, optional port defaults to 9092. Deprecated: privateIp is returned only for legacy deployments created with it. On update payloads, privateIp can only be set to empty (cleared).
Inherited Members
Namespace: Oci.GoldengateService.Models
Assembly: OCI.DotNetSDK.Goldengate.dll
Syntax
public class KafkaBootstrapServer
Properties
Host
Declaration
[Required(ErrorMessage = "Host is required.")]
[JsonProperty(PropertyName = "host")]
public string Host { get; set; }
Property Value
| Type | Description |
|---|---|
| string | The name or address of a host. |
Remarks
Required
Port
Declaration
[JsonProperty(PropertyName = "port")]
public int? Port { get; set; }
Property Value
| Type | Description |
|---|---|
| int? | The port of an endpoint usually specified for a connection. |
PrivateIp
Declaration
[JsonProperty(PropertyName = "privateIp")]
public string PrivateIp { get; set; }
Property Value
| Type | Description |
|---|---|
| string | This property is not available when creating connections. For existing deprecated connections having this value set, the value cannot be updated; set it to empty.
|