forked from Azure-Samples/netappfiles-java-sdk-sample
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_sample-appsettings.json
39 lines (39 loc) · 991 Bytes
/
_sample-appsettings.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
{
"general": {
"subscriptionId": "<subscriptionId>",
"resourceGroup": "<resourceGroupName>"
},
"accounts": [
{
"name": "Anf-Test-Account",
"location": "westcentralus",
"capacityPools": [
{
"name": "Anf-Test-Pool",
"serviceLevel": "Standard",
"size": 4398046511104,
"volumes": [
{
"name": "Anf-Test-Volume",
"creationToken": "Anf-Test-Volume",
"usageThreshold": 107374182400,
"type": "NFSv3",
"subnetId": "<subnetId>",
"exportPolicies": [
{
"ruleIndex": 1,
"allowedClients": "0.0.0.0/0",
"cifs": false,
"nfsv3": true,
"nfsv41": false,
"unixReadOnly": false,
"unixReadWrite": true
}
]
}
]
}
]
}
]
}