From dc736b3a6ebb941c12339aff363b29ab10c794d6 Mon Sep 17 00:00:00 2001 From: Nitesh Vijay Date: Tue, 25 Oct 2022 07:30:00 +0530 Subject: [PATCH] Add CosmosDBMongo enum (#21199) Co-authored-by: Nitesh Vijay --- .../dataTransferService.json | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/specification/cosmos-db/resource-manager/Microsoft.DocumentDB/preview/2022-08-15-preview/dataTransferService.json b/specification/cosmos-db/resource-manager/Microsoft.DocumentDB/preview/2022-08-15-preview/dataTransferService.json index 75e6e134b72c..a32bfa269048 100644 --- a/specification/cosmos-db/resource-manager/Microsoft.DocumentDB/preview/2022-08-15-preview/dataTransferService.json +++ b/specification/cosmos-db/resource-manager/Microsoft.DocumentDB/preview/2022-08-15-preview/dataTransferService.json @@ -302,6 +302,7 @@ "type": "string", "enum": [ "CosmosDBCassandra", + "CosmosDBMongo", "CosmosDBSql", "AzureBlobStorage" ], @@ -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",