Skip to content

Commit

Permalink
Add CosmosDBMongo enum (Azure#21199)
Browse files Browse the repository at this point in the history
Co-authored-by: Nitesh Vijay <niteshvijay@microsoft.com>
  • Loading branch information
2 people authored and kayousef committed Dec 21, 2022
1 parent 2b2de15 commit 9553efa
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 9553efa

Please sign in to comment.