All Downloads are FREE. Search and download functionalities are using the official Maven repository.

json.schema.entity.services.connections.messaging.redpandaConnection.json Maven / Gradle / Ivy

There is a newer version: 1.6.0-rc1
Show newest version
{
  "$id": "https://open-metadata.org/schema/entity/services/connections/messaging/RedpandaConnection.json",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "RedpandaConnection",
  "description": "Redpanda Connection Config",
  "type": "object",
  "javaType": "org.openmetadata.schema.services.connections.messaging.RedpandaConnection",
  "definitions": {
    "RedpandaType": {
      "description": "Redpanda service type",
      "type": "string",
      "enum": ["Redpanda"],
      "default": "Redpanda"
    }
  },
  "properties": {
    "type": {
      "title": "Service Type",
      "description": "Service Type",
      "$ref": "#/definitions/RedpandaType",
      "default": "Redpanda"
    },
    "bootstrapServers": {
      "title": "Bootstrap Servers",
      "description": "Redpanda bootstrap servers. add them in comma separated values ex: host1:9092,host2:9092",
      "type": "string"
    },
    "schemaRegistryURL": {
      "title": "Schema Registry URL",
      "description": "Confluent Redpanda Schema Registry URL.",
      "type": "string",
      "format": "uri"
    },
    "saslUsername": {
      "title": "SASL Username",
      "description": "sasl.username consumer config property",
      "type": "string"
    },
    "saslPassword": {
      "title": "SASL Password",
      "description": "sasl.password consumer config property",
      "type": "string",
      "format": "password"
    },
    "securityProtocol": {
      "title": "Security Protocol",
      "description": "security.protocol consumer config property",
      "type": "string",
      "enum": ["PLAINTEXT","SASL_PLAINTEXT","SASL_SSL","SSL"],
      "default": "PLAINTEXT"
    },
    "saslMechanism": {
      "title": "SASL Mechanism",
      "description": "sasl.mechanism Consumer Config property",
      "$ref": "saslMechanismType.json",
      "default": "PLAIN"
    },
    "basicAuthUserInfo": {
      "title": "Schema Registry Basic Auth User Info",
      "description": "basic.auth.user.info schema registry config property, Client HTTP credentials in the form of username:password.",
      "type": "string",
      "format": "password"
    },
    "consumerConfig": {
      "title": "Consumer Config",
      "description": "Confluent Redpanda Consumer Config",
      "type": "object",
      "default": {},
      "additionalProperties": true
    },
    "schemaRegistryConfig": {
      "title": "Schema Registry Config",
      "description": "Confluent Redpanda Schema Registry Config.",
      "type": "object",
      "default": {},
      "additionalProperties": true
    },
    "supportsMetadataExtraction": {
      "title": "Supports Metadata Extraction",
      "$ref": "../connectionBasicType.json#/definitions/supportsMetadataExtraction"
    }
  },
  "additionalProperties": false,
  "required": ["bootstrapServers"]
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy