-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathNew-CosmosDatabase.ps1
60 lines (52 loc) · 1.82 KB
/
New-CosmosDatabase.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
function New-CosmosDatabase {
<#
.SYNOPSIS
Creates a new CosmosDB Database
.DESCRIPTION
Creates a new CosmosDB Database
.PARAMETER DatabaseName
Name of the Database to create
.PARAMETER CosmosDBVariables
This is the Script variable generated by Connect-CosmosDB - no need to supply this variable, unless you get really creative
.EXAMPLE
New-CosmosDatabase -DatabaseName MyPrivateCosmos
.NOTES
https://docs.microsoft.com/en-us/rest/api/documentdb/create-a-database
#>
[CmdletBinding()]
param (
[Parameter(Mandatory=$true,
HelpMessage='Name of your new database')]
[string]$DatabaseName,
[Parameter(Mandatory=$false,
HelpMessage="Use Connect-CosmosDB to create this Variable collection")]
[hashtable]$CosmosDBVariables=$Script:CosmosDBVariables
)
begin {
Test-CosmosDBVariable -CosmosDBVariables $CosmosDBVariables
}
process {
$Database = $CosmosDBConnection[($DatabaseName + '_db')]
if ($Database) {
Write-Warning "$DatabaseName exists"
continue
}
$Verb = 'POST'
$Url = '{0}/{1}' -f $CosmosDBVariables['URI'],'dbs'
$ResourceType = 'dbs'
$Header = New-CosmosDBHeader -ResourceType $ResourceType -Verb $Verb
$CosmosBody = @{id=$DatabaseName} | ConvertTo-Json
try {
$Return = Invoke-RestMethod -Uri $Url -Headers $Header -Method $Verb -Body $CosmosBody -ErrorAction Stop
$script:CosmosDBConnection[$($Return.id + '_db')] = $Return
}
catch {
Write-Warning -Message $_.Exception.Message
}
}
end {
If ($Return -and $return.id -eq $DatabaseName){
Write-Verbose "$DatabaseName has been created"
}
}
}