如何在创建 Cosmos DB 帐户 运行 az cosmosdb create 命令时指定 MongoDB API 版本?
How do I specify MongoDB API version when Creating Cosmos DB account running the az cosmosdb create command?
目前我有一个 shell 脚本,它必须在 Azure 项目的现有资源组中为 MongoDB API 创建一个 Cosmos DB 帐户。
Bellow 是执行此操作的代码片段
az cosmosdb create \
-n $accountName \
-g $resourceGroupName \
--kind MongoDB \
--default-consistency-level Eventual \
--locations regionName='West Europe' failoverPriority=0 isZoneRedundant=False \
--locations regionName='East US' failoverPriority=1 isZoneRedundant=False
然而,这会默认生成服务器版本 3.2。
我的目标是在 "az" 命令中复制 UI where I manually generate a Version 3.6, resulting in successful reading of version 3.6
中的以下行为
你知道我应该在该代码片段中更改什么以使其直接创建 wire protocol 3.6 CosmosDB account 吗?
谢谢!
米海
只需添加 --capabilities EnableMongo
,它将创建一个针对 MongoDB 版本 3.6 的帐户。
所以你的命令是:
az cosmosdb create \
-n $accountName \
-g $resourceGroupName \
--kind MongoDB \
--default-consistency-level Eventual \
--locations regionName='West Europe' failoverPriority=0 isZoneRedundant=False \
--locations regionName='East US' failoverPriority=1 isZoneRedundant=False \
--capabilities name=EnableMongo
目前我有一个 shell 脚本,它必须在 Azure 项目的现有资源组中为 MongoDB API 创建一个 Cosmos DB 帐户。
Bellow 是执行此操作的代码片段
az cosmosdb create \
-n $accountName \
-g $resourceGroupName \
--kind MongoDB \
--default-consistency-level Eventual \
--locations regionName='West Europe' failoverPriority=0 isZoneRedundant=False \
--locations regionName='East US' failoverPriority=1 isZoneRedundant=False
然而,这会默认生成服务器版本 3.2。
我的目标是在 "az" 命令中复制 UI where I manually generate a Version 3.6, resulting in successful reading of version 3.6
中的以下行为你知道我应该在该代码片段中更改什么以使其直接创建 wire protocol 3.6 CosmosDB account 吗?
谢谢! 米海
只需添加 --capabilities EnableMongo
,它将创建一个针对 MongoDB 版本 3.6 的帐户。
所以你的命令是:
az cosmosdb create \
-n $accountName \
-g $resourceGroupName \
--kind MongoDB \
--default-consistency-level Eventual \
--locations regionName='West Europe' failoverPriority=0 isZoneRedundant=False \
--locations regionName='East US' failoverPriority=1 isZoneRedundant=False \
--capabilities name=EnableMongo