You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
title: Resource Manager templates for Azure Cosmos DB Cassandra API
3
3
description: Use Azure Resource Manager templates to create and configure Azure Cosmos DB Cassandra API.
4
-
author: TheovanKraay
4
+
author: markjbrown
5
5
ms.service: cosmos-db
6
6
ms.topic: conceptual
7
-
ms.date: 11/12/2019
8
-
ms.author: thvankra
7
+
ms.date: 04/27/2020
8
+
ms.author: mjbrown
9
9
---
10
10
11
11
# Manage Azure Cosmos DB Cassandra API resources using Azure Resource Manager templates
12
12
13
-
This article describes how to perform different operations to automate management of your Azure Cosmos DB accounts, databases and containers using Azure Resource Manager templates. This article has examples for SQL API accounts only, to find examples for other API type accounts see: use Azure Resource Manager templates with Azure Cosmos DB's API for[SQL](manage-sql-with-resource-manager.md), [Gremlin](manage-gremlin-with-resource-manager.md), [MongoDB](manage-mongodb-with-resource-manager.md), [Table](manage-table-with-resource-manager.md) articles.
13
+
This article describes how to perform different operations to automate management of your Azure Cosmos DB accounts, databases and containers using Azure Resource Manager templates. This article has examples for Cassandra API accounts only, to find examples for other API type accounts see: use Azure Resource Manager templates with Azure Cosmos DB's API for [SQL](manage-sql-with-resource-manager.md), [Gremlin](manage-gremlin-with-resource-manager.md), [MongoDB](manage-mongodb-with-resource-manager.md), [Table](manage-table-with-resource-manager.md) articles.
14
14
15
15
## Create Azure Cosmos account, keyspace and table <aid="create-resource"></a>
16
16
@@ -20,7 +20,190 @@ Create Azure Cosmos DB resources using an Azure Resource Manager template. This
20
20
> Account names must be lowercase and 44 or fewer characters.
21
21
> To update RU/s, resubmit the template with updated throughput property values.
az cosmosdb show --resource-group $resourceGroupName --name accountName --output tsv
47
230
```
48
231
49
232
The `az cosmosdb show` command shows the newly created Azure Cosmos account after it has been provisioned. If you choose to use a locally installed version of the Azure CLI instead of using Cloud Shell, see the [Azure CLI](/cli/azure/) article.
0 commit comments