UpdateConnectorResponse

UpdateConnectorResponse
UpdateConnectorResponse

The response object after updating the connector

JSON Example
{
    "display_name": "DashboardKafka",
    "instanceId": "dashboardkafka",
    "message": "Connector successfully updated",
    "name": "dashboardkafka",
    "status": "started",
    "time": "2022-03-29 10:08:55.346489",
    "topics": [
        "string"
    ],
    "targetCluster": {
        "bootstrapServers": "target-kafka-cluster:9092",
        "tls": {
            "enabled": true,
            "certificate": "base64 encoded certificate"
        },
        "authentication": {
            "enabled": true,
            "type": "auth type plain/scram-sha-512/oauth/tls",
            "username": "targetuser",
            "password": "target password"
        }
    },
    "logging": {
        "type": "inline",
        "level": "INFO"
    },
    "resources": {
        "limits": {
            "cpu": "4000m",
            "memory": "8192Mi"
        },
        "requests": {
            "cpu": "1000m",
            "memory": "2048Mi"
        }
    }
}
string
display_name
Optional

The display name of the connector created as provided by the user

string
instanceId
Optional

The instanceId of the connector created.

string
message
Optional

The message informs of the success or failure in updating the conenctor

string
name
Optional

The Name of the connector created.

string
status
Optional

This specifeis the status of the connector updated. It can be "started", "stopped" or "pending"

string
time
Optional

The time at which the connector was updated

array of string
topics
Optional

Topic names to be replicated

targetCluster
Optional

Object having details of target kafka cluster and authentication

logging
Optional

Logging object containing logging type and logging level

resources
Optional

Maximum limits for CPU and memory resources and the requested initial resources.