Skip to content

Commit c5d37a4

Browse files
Add ChangeFeed retention in June19 and Aug20-preview version (#12685)
1 parent 0078025 commit c5d37a4

File tree

8 files changed

+30
-8
lines changed

8 files changed

+30
-8
lines changed

specification/storage/resource-manager/Microsoft.Storage/preview/2020-08-01-preview/blob.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1247,6 +1247,13 @@
12471247
"enabled": {
12481248
"type": "boolean",
12491249
"description": "Indicates whether change feed event logging is enabled for the Blob service."
1250+
},
1251+
"retentionInDays": {
1252+
"type": "integer",
1253+
"minimum": 1,
1254+
"maximum": 146000,
1255+
"format": "int32",
1256+
"description": "Indicates the duration of changeFeed retention in days. Minimum value is 1 day and maximum value is 146000 days (400 years). A null value indicates an infinite retention of the change feed."
12501257
}
12511258
},
12521259
"description": "The blob service properties for change feed events."

specification/storage/resource-manager/Microsoft.Storage/preview/2020-08-01-preview/examples/BlobServicesGet.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,8 @@
8282
},
8383
"isVersioningEnabled": true,
8484
"changeFeed": {
85-
"enabled": true
85+
"enabled": true,
86+
"retentionInDays": 7
8687
}
8788
},
8889
"sku": {

specification/storage/resource-manager/Microsoft.Storage/preview/2020-08-01-preview/examples/BlobServicesList.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,8 @@
8383
},
8484
"isVersioningEnabled": true,
8585
"changeFeed": {
86-
"enabled": true
86+
"enabled": true,
87+
"retentionInDays": 7
8788
}
8889
},
8990
"sku": {

specification/storage/resource-manager/Microsoft.Storage/preview/2020-08-01-preview/examples/BlobServicesPut.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,8 @@
7676
},
7777
"isVersioningEnabled": true,
7878
"changeFeed": {
79-
"enabled": true
79+
"enabled": true,
80+
"retentionInDays": 7
8081
}
8182
}
8283
}
@@ -156,7 +157,8 @@
156157
},
157158
"isVersioningEnabled": true,
158159
"changeFeed": {
159-
"enabled": true
160+
"enabled": true,
161+
"retentionInDays": 7
160162
}
161163
},
162164
"sku": {

specification/storage/resource-manager/Microsoft.Storage/stable/2019-06-01/blob.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1240,6 +1240,13 @@
12401240
"enabled": {
12411241
"type": "boolean",
12421242
"description": "Indicates whether change feed event logging is enabled for the Blob service."
1243+
},
1244+
"retentionInDays": {
1245+
"type": "integer",
1246+
"minimum": 1,
1247+
"maximum": 146000,
1248+
"format": "int32",
1249+
"description": "Indicates the duration of changeFeed retention in days. Minimum value is 1 day and maximum value is 146000 days (400 years). A null value indicates an infinite retention of the change feed."
12431250
}
12441251
},
12451252
"description": "The blob service properties for change feed events."

specification/storage/resource-manager/Microsoft.Storage/stable/2019-06-01/examples/BlobServicesGet.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,8 @@
8282
},
8383
"isVersioningEnabled": true,
8484
"changeFeed": {
85-
"enabled": true
85+
"enabled": true,
86+
"retentionInDays": 7
8687
}
8788
},
8889
"sku": {

specification/storage/resource-manager/Microsoft.Storage/stable/2019-06-01/examples/BlobServicesList.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,8 @@
8383
},
8484
"isVersioningEnabled": true,
8585
"changeFeed": {
86-
"enabled": true
86+
"enabled": true,
87+
"retentionInDays": 7
8788
}
8889
},
8990
"sku": {

specification/storage/resource-manager/Microsoft.Storage/stable/2019-06-01/examples/BlobServicesPut.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,8 @@
7676
},
7777
"isVersioningEnabled": true,
7878
"changeFeed": {
79-
"enabled": true
79+
"enabled": true,
80+
"retentionInDays": 7
8081
}
8182
}
8283
}
@@ -156,7 +157,8 @@
156157
},
157158
"isVersioningEnabled": true,
158159
"changeFeed": {
159-
"enabled": true
160+
"enabled": true,
161+
"retentionInDays": 7
160162
}
161163
},
162164
"sku": {

0 commit comments

Comments
 (0)