Skip to content

Commit

Permalink
Add CosmosDBMongo enum (#21199)
Browse files Browse the repository at this point in the history
Co-authored-by: Nitesh Vijay <niteshvijay@microsoft.com>
  • Loading branch information
niteshvijay1995 and niteshvijay-ms authored Oct 25, 2022
1 parent d78681a commit dc736b3
Showing 1 changed file with 23 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,7 @@
"type": "string",
"enum": [
"CosmosDBCassandra",
"CosmosDBMongo",
"CosmosDBSql",
"AzureBlobStorage"
],
Expand Down Expand Up @@ -339,6 +340,28 @@
],
"x-ms-discriminator-value": "CosmosDBCassandra"
},
"CosmosMongoDataTransferDataSourceSink": {
"type": "object",
"description": "A CosmosDB Cassandra API data source/sink",
"properties": {
"databaseName": {
"type": "string"
},
"collectionName": {
"type": "string"
}
},
"allOf": [
{
"$ref": "#/definitions/DataTransferDataSourceSink"
}
],
"required": [
"databaseName",
"collectionName"
],
"x-ms-discriminator-value": "CosmosDBMongo"
},
"CosmosSqlDataTransferDataSourceSink": {
"type": "object",
"description": "A CosmosDB Cassandra API data source/sink",
Expand Down

0 comments on commit dc736b3

Please sign in to comment.