Skip to content

Commit 6cb5628

Browse files
Updated to align with the latest SDK release
1 parent 6d80320 commit 6cb5628

File tree

1 file changed

+48
-30
lines changed

1 file changed

+48
-30
lines changed
Lines changed: 48 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,53 @@
11
{
2-
"name": "AzureBlobDest",
3-
"properties":
4-
{
5-
"structure":[
6-
{
7-
"name":"<columnname>",
8-
"type":"<columntype>"
9-
}
2+
"name": "AzureBlobOutput",
3+
"properties": {
4+
"type": "AzureBlob",
5+
"linkedServiceName": "StorageLinkedService",
6+
"typeProperties": {
7+
"folderPath": "MyContainer/MyFolder/yearno={Year}/monthno={Month}/dayno={Day}/hourno={Hour}",
8+
"partitionedBy": [
9+
{
10+
"name": "Year",
11+
"value": {
12+
"type": "DateTime",
13+
"date": "SliceStart",
14+
"format": "yyyy"
15+
}
16+
},
17+
{
18+
"name": "Month",
19+
"value": {
20+
"type": "DateTime",
21+
"date": "SliceStart",
22+
"format": "%M"
23+
}
24+
},
25+
{
26+
"name": "Day",
27+
"value": {
28+
"type": "DateTime",
29+
"date": "SliceStart",
30+
"format": "%d"
31+
}
32+
},
33+
{
34+
"name": "Hour",
35+
"value": {
36+
"type": "DateTime",
37+
"date": "SliceStart",
38+
"format": "%HH"
39+
}
40+
}
1041
],
11-
"location":
12-
{
13-
"type": "AzureBlobLocation",
14-
"folderPath": "<container>/<folder>/yearno={Year}/monthno={Month}/dayno={Day}/",
15-
"partitionedBy":
16-
[
17-
{ "name": "Year", "value": { "type": "DateTime", "date": "SliceStart", "format": "yyyy" } },
18-
{ "name": "Month", "value": { "type": "DateTime", "date": "SliceStart", "format": "%M" } },
19-
{ "name": "Day", "value": { "type": "DateTime", "date": "SliceStart", "format": "%d" } }
20-
],
21-
"format":
22-
{
23-
"type": "TextFormat",
24-
"columnDelimiter": "\t",
25-
"rowDelimiter": "\n"
26-
},
27-
"linkedServiceName": "StorageLinkedService"
28-
},
29-
"availability":
30-
{
31-
"frequency": "Hour",
32-
"interval": 1
42+
"format": {
43+
"type": "TextFormat",
44+
"columnDelimiter": "\t",
45+
"rowDelimiter": "\n"
3346
}
47+
},
48+
"availability": {
49+
"frequency": "Hour",
50+
"interval": 1
3451
}
52+
}
3553
}

0 commit comments

Comments
 (0)