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

main.resources.message_en_US.properties Maven / Gradle / Ivy

The newest version!
ConfigurationException = A configuration problem exists. Please validate your settings.
ReadCloudantStreamError = An error occurred while processing the Cloudant _changes feed : %s
CloudantDatabaseError = Could not connect to Cloudant database: %s
ClosedStreamError = Cloudant _changes feed is closed. Operation not permitted.
TerminateStreamError = An error occurred while closing Cloudant _changes feed: %s

CloudantConnectUrlDisp = Database connection
CloudantConnectUrlDoc = Cloudant database connection URL (format: https://.cloudant.com/)

CloudantConnectUsrDisp = Database username
CloudantConnectUsrDoc = Cloudant database username

CloudantConnectPwdDisp = Database password
CloudantConnectPwdDoc = Cloudant database password

CloudantLastSeqNumDoc = Last update sequence identifier to resume from. \
	Identified sequence number is included in the result set. \
	See "last_seq" parameter in Cloudant _changes API documentation for details. \
	(example: 1-g1AAAAI9eJyV0EsKwjAUBdD4Ad2FdQMlMW3TjOxONF9KqS1oHDjSnehOdCe6k5oQsNZBqZP3Hi\
	EcLrcEAMzziQSB5KLeq0zyJDTqYE4QJqEo66NklQkrZUr7c8wAXzRNU-T22tmHGVMUapR2Bdwj8MBOvu4gscQyU\
	tghyw-CYJ-SOWXTUSJMkKQ_UWgfsnXIuYOkhCCN6PBGqqmd4GKXda4OGvk0VCcCweHFeOjmoXubiEREIyb-KMdL\
	Dy89W4nTVGkqhhfkoZeHvkrimMJYrYo31bKsIg)
CloudantLastSeqNumDisp = Last sequence number

KafkaTopicListDoc = Kafka topic list
KafkaTopicListDisp = Kafka topics

GuidSchema = GUID Schema is unknown

CloudantLimitation = Error retrieving server response

CloudantOmitDDocDisp=Omit design documents
CloudantOmitDDocDoc=True to omit design documents when generating messages.

CloudantSchemaDisp = Enable struct schema generation (experimental)
CloudantSchemaDoc = True to enable generation of a struct schema with each JSON document.\
  The struct schema will include all the fields found in the document with the following mappings:\
  string -> Schema.Type.STRING\
  number -> Schema.Type.FLOAT64\
  object -> Schema.Type.STRUCT\
  array -> Schema.Type.ARRAY (note limited to single element type,\
   empty arrays are treated as String arrays)\
  boolean -> Schema.Type.BOOLEAN\
  null -> Schema.Type.STRING\
  Note that all fields are marked as optional in the generated STRUCT schema for a document and the\
  fields are ordered in the struct by field name.\
  For example the document: \
  {\
    "_id": "mydoc",\
    "object1" : {\
      "key1": "one"\
     },\
    "array1": ["e1", "e2", "e3"],\
    "key2" : false,\
    "key3" : 3\
  }\
  Maps to the struct schema:\
  "_id" -> Schema.Type.STRING\
  "array1" -> Schema.Type.ARRAY(Schema.Type.STRING)\
  "key2" -> Schema.Type.BOOLEAN\
  "key3" -> Schema.Type.FLOAT64\
  "object1" -> Schema.Type.STRUCT ("key1" -> Schema.Type.STRING)

CloudantSchemaFlattenDisp = Flatten nested arrays and objects during struct generation.
CloudantSchemaFlattenDoc = True to flatten nested arrays and objects during struct generation.\
  Only used when cloudant.value.schema.struct is true.\
  Nested arrays will be expanded to individual elements appended with the array index.\
  Nested objects will be flattened to the root struct with the next object name appended.\
  The type mappings are as follows:\
  string -> Schema.Type.STRING\
  number -> Schema.Type.FLOAT64\
  boolean -> Schema.Type.BOOLEAN\
  null -> Schema.Type.STRING\
  Note that all fields are marked as optional in the generated STRUCT schema for a document.\
  Using this option removes the limitation of only having a single element type within arrays.\
  For example the document: \
  {\
    "_id": "mydoc",\
    "object1" : {\
      "key1": "one"\
     },\
    "array1": ["e1", "e2", "e3"],\
    "object2": {\
      "object3" : {\
        "key3": 2\
      },\
      "array2" : [1, "two", true],\
      "key2" : false\
    }\
  }\
  Maps to the struct schema:\
  "_id" -> Schema.Type.STRING\
   "array1.0" -> Schema.Type.STRING\
  "array1.1" -> Schema.Type.STRING\
  "array1.2" -> Schema.Type.STRING\
  "object1.key1" -> Schema.Type.STRING\
  "object2.array2.0" -> Schema.Type.FLOAT64\
  "object2.array2.1" -> Schema.Type.STRING\
  "object2.array2.2" -> Schema.Type.BOOLEAN\
  "object2.key2" -> Schema.Type.BOOLEAN\
  "object2.object3.key3" -> Schema.Type.FLOAT64

CloudantSchemaUnknownJsonElement=Unknown JsonElement type.
CloudantSchemaUnknownJsonPrimitive=Unknown JsonPrimitive type.
CloudantSchemaMixedArrays=JSON arrays with mixed element types cannot be converted to org.apache.kafka.connect.data.Schema.Type.ARRAY. Consider using the flatten option.




© 2015 - 2024 Weber Informatics LLC | Privacy Policy