-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.json
48 lines (48 loc) · 1.56 KB
/
settings.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
42
43
44
45
46
47
48
{
"awsKey": "AWS Key",
"awsSecret": "AWS Secret Key",
"sdbHostName": "sdb.ap-northeast-1.amazonaws.com",
"azureAccount": "Windows Azure Storage Account",
"azureSecret": "Windows Azure Storage Secret",
"tables": {
"typetestdata": {
"replace": {
"PartitionKey": "%$ItemName%_%$Guid%",
"RowKey": "%$Identity%"
},
"type": {
"PartitionKey": "Edm.String",
"RowKey": "Edm.String",
"StringTest": "Edm.String",
"IntTest": "Edm.Int32",
"Int64Test": "Edm.Int64",
"DoubleTest": "Edm.Double",
"BoolTest": "Edm.Boolean",
"GUIDTest": "Edm.Guid",
"DateTimeTest": "Edm.DateTime"
},
"where": "`BoolTest` = '1'"
},
"sampledata": {
"replace": {
"PartitionKey": "%$ItemName%_%$Guid%",
"RowKey": "%$Identity%"
},
"type": {
"PartitionKey": "Edm.String",
"RowKey": "Edm.String",
"guid": "Edm.String",
"region": "Edm.String",
"phone": "Edm.String",
"birth": "Edm.String",
"postal": "Edm.String",
"email": "Edm.String",
"company": "Edm.String",
"name": "Edm.String",
"random": "Edm.String",
"gps": "Edm.String",
"number": "Edm.String"
}
}
}
}