1
0
mirror of synced 2025-12-25 02:09:19 -05:00

Update fields in source-connectors specifications: mongodb-strict-encrypt, mongodb-v2 (#9202)

This commit is contained in:
Iryna Grankova
2021-12-30 17:30:26 +02:00
committed by GitHub
parent 7d6a5ef30b
commit b8c33bdfed
8 changed files with 61 additions and 59 deletions

View File

@@ -16,5 +16,5 @@ ENV APPLICATION source-mongodb-v2
COPY --from=build /airbyte /airbyte
LABEL io.airbyte.version=0.1.9
LABEL io.airbyte.version=0.1.10
LABEL io.airbyte.name=airbyte/source-mongodb-v2

View File

@@ -10,8 +10,8 @@
"properties": {
"instance_type": {
"type": "object",
"title": "MongoDb instance type",
"description": "MongoDb instance to connect to. For MongoDB Atlas and Replica Set TLS connection is used by default.",
"title": "MongoDb Instance Type",
"description": "The MongoDb instance to connect to. For MongoDB Atlas and Replica Set TLS connection is used by default.",
"order": 0,
"oneOf": [
{
@@ -26,13 +26,13 @@
"host": {
"title": "Host",
"type": "string",
"description": "Host of a Mongo database to be replicated.",
"description": "The host name of the Mongo database.",
"order": 0
},
"port": {
"title": "Port",
"type": "integer",
"description": "Port of a Mongo database to be replicated.",
"description": "The port of the Mongo database.",
"minimum": 0,
"maximum": 65536,
"default": 27017,
@@ -40,7 +40,7 @@
"order": 1
},
"tls": {
"title": "TLS connection",
"title": "TLS Connection",
"type": "boolean",
"description": "Indicates whether TLS encryption protocol will be used to connect to MongoDB. It is recommended to use TLS connection if possible. For more information see <a href=\"https://docs.airbyte.io/integrations/sources/mongodb-v2\">documentation</a>.",
"default": false,
@@ -58,16 +58,16 @@
"default": "replica"
},
"server_addresses": {
"title": "Server addresses",
"title": "Server Addresses",
"type": "string",
"description": "The members of a replica set. Please specify `host`:`port` of each member seperated by comma.",
"description": "The members of a replica set. Please specify `host`:`port` of each member separated by comma.",
"examples": ["host1:27017,host2:27017,host3:27017"],
"order": 0
},
"replica_set": {
"title": "Replica Set",
"type": "string",
"description": "A replica set name.",
"description": "A replica set in MongoDB is a group of mongod processes that maintain the same data set.",
"order": 1
}
}
@@ -85,7 +85,7 @@
"cluster_url": {
"title": "Cluster URL",
"type": "string",
"description": "URL of a cluster to connect to.",
"description": "The URL of a cluster to connect to.",
"order": 0
}
}
@@ -93,28 +93,28 @@
]
},
"database": {
"title": "Database name",
"title": "Database Name",
"type": "string",
"description": "Database to be replicated.",
"description": "The database you want to replicate.",
"order": 1
},
"user": {
"title": "User",
"type": "string",
"description": "User",
"description": "The username which is used to access the database.",
"order": 2
},
"password": {
"title": "Password",
"type": "string",
"description": "Password",
"description": "The password associated with this username.",
"airbyte_secret": true,
"order": 3
},
"auth_source": {
"title": "Authentication source",
"title": "Authentication Source",
"type": "string",
"description": "Authentication source where user information is stored",
"description": "The authentication source where the user information is stored.",
"default": "admin",
"examples": ["admin"],
"order": 4