New CosmosDbDatabase - PlagueHO/CosmosDB GitHub Wiki
Create a new database in a Cosmos DB account.
New-CosmosDbDatabase -Context <Context> [-Key <SecureString>] [-KeyType <String>] -Id <String>
[-OfferThroughput <Int32>] [-AutoscaleThroughput <Int32>] [<CommonParameters>]
New-CosmosDbDatabase -Account <String> [-Key <SecureString>] [-KeyType <String>] -Id <String>
[-OfferThroughput <Int32>] [-AutoscaleThroughput <Int32>] [<CommonParameters>]
This cmdlet will create a database in Cosmos DB.
PS C:\> New-CosmosDbDatabase -Context $cosmosDbContext -Id 'AnotherDatabase'
Create a new database in the Cosmos DB account.
New-CosmosDbDatabase -Context $cosmosDbContext -Id 'DatabaseWithOffer' -OfferThroughput 1200
Create a new database in the Cosmos DB account with a custom offer throughput of 1200 RU/s.
New-CosmosDbDatabase -Context $cosmosDbContext -Id 'DatabaseWithOffer' -AutoscaleThroughput 40000
Create a new database in the Cosmos DB account using autoscale provisioned throughput of 40,000 RU/s.
The account name of the Cosmos DB to access.
Type: String
Parameter Sets: Account
Aliases:
Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
This is an object containing the context information of the Cosmos DB database that will be deleted. It should be created by `New-CosmosDbContext`.
Type: Context
Parameter Sets: Context
Aliases: Connection
Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
This is the Id of the database to create.
Type: String
Parameter Sets: (All)
Aliases: Name
Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
The key to be used to access this Cosmos DB.
Type: SecureString
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
The type of key that will be used to access ths Cosmos DB.
Type: String
Parameter Sets: (All)
Aliases:
Accepted values: master, resource
Required: False
Position: Named
Default value: Master
Accept pipeline input: False
Accept wildcard characters: False
The user specified throughput for the database expressed in RU/s. This can be between 400 and 100,000 and should be specified in increments of 100 RU/s. If not specified the offer throughput will be set to 400 RU/s. This parameter can not be specified in AutoscaleThroughput is specified.
Type: Int32
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: 0
Accept pipeline input: False
Accept wildcard characters: False
The user specified autoscale throughput for the database expressed in RU/s. This can be between 1000 and 1,000,000 and should be specified in increments of 100 RU/s. This parameter can not be specified in OfferThroughput is specified.
Type: Int32
Parameter Sets: (All)
Aliases: AutopilotThroughput, AutoscaleMaxThroughput, AutopilotMaxThroughput
Required: False
Position: Named
Default value: 0
Accept pipeline input: False
Accept wildcard characters: False
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).