Skip to content

Latest commit

 

History

History
51 lines (37 loc) · 1.96 KB

File metadata and controls

51 lines (37 loc) · 1.96 KB
title description author ms.service ms.subservice ms.custom ms.topic ms.date ms.author ms.reviewer
PowerShell script to create a table in Azure Cosmos DB for Table
Learn how to use a PowerShell script to update the throughput for a database or a container in Azure Cosmos DB for Table
seesharprun
cosmos-db
table
devx-track-azurepowershell
sample
05/13/2020
sidandrews
mjbrown

Create a table for Azure Cosmos DB - API for Table

[!INCLUDETable]

[!INCLUDE updated-for-az]

This sample requires Azure PowerShell Az 5.4.0 or later. Run Get-Module -ListAvailable Az to see which versions are installed. If you need to install, see Install Azure PowerShell module.

Run Connect-AzAccount to sign in to Azure.

Sample script

[!code-powershellmain]

Clean up deployment

After the script sample has been run, the following command can be used to remove the resource group and all resources associated with it.

Remove-AzResourceGroup -ResourceGroupName "myResourceGroup"

Script explanation

This script uses the following commands. Each command in the table links to command specific documentation.

Command Notes
Azure Cosmos DB
New-AzCosmosDBAccount Creates an Azure Cosmos DB Account.
New-AzCosmosDBTable Creates a API for Table Table.
Azure Resource Groups
Remove-AzResourceGroup Deletes a resource group including all nested resources.

Next steps

For more information on the Azure PowerShell, see Azure PowerShell documentation.