forked from kunal333/E2ESynapseDemo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deploySqlPool.json
41 lines (41 loc) · 1.13 KB
/
deploySqlPool.json
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
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.1",
"parameters": {
"name": {
"type": "string"
},
"location": {
"type": "string"
},
"sqlpoolName": {
"type": "string",
"defaultValue":"sqlpool1"
},
"sku": {
"type": "string",
"defaultValue":"DW100c"
}
},
"variables": {
},
"resources": [
{
"type": "Microsoft.Synapse/workspaces/sqlPools",
"apiVersion": "2019-06-01-preview",
"name": "[concat(parameters('name'),'/',parameters('sqlpoolName'))]",
"sku": {
"name": "[parameters('sku')]",
"capacity": 0
},
"location": "[parameters('location')]",
"properties": {
"status": "Paused",
"maxSizeBytes": 263882790666240,
"collation": "SQL_Latin1_General_CP1_CI_AS",
"provisioningState": "Succeeded"
}
}
],
"outputs": {}
}