-
Notifications
You must be signed in to change notification settings - Fork 5.1k
/
Storage.json
566 lines (566 loc) · 22.5 KB
/
Storage.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
{
"swagger": "2.0",
"info": {
"version": "2018-01-01",
"title": "Schema of Azure Storage events published to Azure Event Grid",
"description": "Describes the schema of the Azure Storage events published to Azure Event Grid. This corresponds to the Data property of an EventGridEvent."
},
"paths": {},
"definitions": {
"StorageBlobCreatedEventData": {
"description": "Schema of the Data property of an EventGridEvent for a Microsoft.Storage.BlobCreated event.",
"type": "object",
"properties": {
"api": {
"description": "The name of the API/operation that triggered this event.",
"type": "string"
},
"clientRequestId": {
"description": "A request id provided by the client of the storage API operation that triggered this event.",
"type": "string"
},
"requestId": {
"description": "The request id generated by the Storage service for the storage API operation that triggered this event.",
"type": "string"
},
"eTag": {
"description": "The etag of the blob at the time this event was triggered.",
"type": "string"
},
"contentType": {
"description": "The content type of the blob. This is the same as what would be returned in the Content-Type header from the blob.",
"type": "string"
},
"contentLength": {
"description": "The size of the blob in bytes. This is the same as what would be returned in the Content-Length header from the blob.",
"type": "integer",
"format": "int64"
},
"contentOffset": {
"description": "The offset of the blob in bytes.",
"type": "integer",
"format": "int64"
},
"blobType": {
"description": "The type of blob.",
"type": "string"
},
"url": {
"description": "The path to the blob.",
"type": "string"
},
"sequencer": {
"description": "An opaque string value representing the logical sequence of events for any particular blob name. Users can use standard string comparison to understand the relative sequence of two events on the same blob name.",
"type": "string"
},
"identity": {
"description": "The identity of the requester that triggered this event.",
"type": "string"
},
"storageDiagnostics": {
"description": "For service use only. Diagnostic data occasionally included by the Azure Storage service. This property should be ignored by event consumers.",
"type": "object"
}
}
},
"StorageBlobDeletedEventData": {
"description": "Schema of the Data property of an EventGridEvent for a Microsoft.Storage.BlobDeleted event.",
"type": "object",
"properties": {
"api": {
"description": "The name of the API/operation that triggered this event.",
"type": "string"
},
"clientRequestId": {
"description": "A request id provided by the client of the storage API operation that triggered this event.",
"type": "string"
},
"requestId": {
"description": "The request id generated by the Storage service for the storage API operation that triggered this event.",
"type": "string"
},
"contentType": {
"description": "The content type of the blob. This is the same as what would be returned in the Content-Type header from the blob.",
"type": "string"
},
"blobType": {
"description": "The type of blob.",
"type": "string"
},
"url": {
"description": "The path to the blob.",
"type": "string"
},
"sequencer": {
"description": "An opaque string value representing the logical sequence of events for any particular blob name. Users can use standard string comparison to understand the relative sequence of two events on the same blob name.",
"type": "string"
},
"identity": {
"description": "The identity of the requester that triggered this event.",
"type": "string"
},
"storageDiagnostics": {
"description": "For service use only. Diagnostic data occasionally included by the Azure Storage service. This property should be ignored by event consumers.",
"type": "object"
}
}
},
"StorageDirectoryCreatedEventData": {
"description": "Schema of the Data property of an EventGridEvent for a Microsoft.Storage.DirectoryCreated event.",
"type": "object",
"properties": {
"api": {
"description": "The name of the API/operation that triggered this event.",
"type": "string"
},
"clientRequestId": {
"description": "A request id provided by the client of the storage API operation that triggered this event.",
"type": "string"
},
"requestId": {
"description": "The request id generated by the storage service for the storage API operation that triggered this event.",
"type": "string"
},
"eTag": {
"description": "The etag of the directory at the time this event was triggered.",
"type": "string"
},
"url": {
"description": "The path to the directory.",
"type": "string"
},
"sequencer": {
"description": "An opaque string value representing the logical sequence of events for any particular directory name. Users can use standard string comparison to understand the relative sequence of two events on the same directory name.",
"type": "string"
},
"identity": {
"description": "The identity of the requester that triggered this event.",
"type": "string"
},
"storageDiagnostics": {
"description": "For service use only. Diagnostic data occasionally included by the Azure Storage service. This property should be ignored by event consumers.",
"type": "object"
}
}
},
"StorageDirectoryDeletedEventData": {
"description": "Schema of the Data property of an EventGridEvent for a Microsoft.Storage.DirectoryDeleted event.",
"type": "object",
"properties": {
"api": {
"description": "The name of the API/operation that triggered this event.",
"type": "string"
},
"clientRequestId": {
"description": "A request id provided by the client of the storage API operation that triggered this event.",
"type": "string"
},
"requestId": {
"description": "The request id generated by the storage service for the storage API operation that triggered this event.",
"type": "string"
},
"url": {
"description": "The path to the deleted directory.",
"type": "string"
},
"recursive": {
"description": "Is this event for a recursive delete operation.",
"type": "string"
},
"sequencer": {
"description": "An opaque string value representing the logical sequence of events for any particular directory name. Users can use standard string comparison to understand the relative sequence of two events on the same directory name.",
"type": "string"
},
"identity": {
"description": "The identity of the requester that triggered this event.",
"type": "string"
},
"storageDiagnostics": {
"description": "For service use only. Diagnostic data occasionally included by the Azure Storage service. This property should be ignored by event consumers.",
"type": "object"
}
}
},
"StorageBlobRenamedEventData": {
"description": "Schema of the Data property of an EventGridEvent for a Microsoft.Storage.BlobRenamed event.",
"type": "object",
"properties": {
"api": {
"description": "The name of the API/operation that triggered this event.",
"type": "string"
},
"clientRequestId": {
"description": "A request id provided by the client of the storage API operation that triggered this event.",
"type": "string"
},
"requestId": {
"description": "The request id generated by the storage service for the storage API operation that triggered this event.",
"type": "string"
},
"sourceUrl": {
"description": "The path to the blob that was renamed.",
"type": "string"
},
"destinationUrl": {
"description": "The new path to the blob after the rename operation.",
"type": "string"
},
"sequencer": {
"description": "An opaque string value representing the logical sequence of events for any particular blob name. Users can use standard string comparison to understand the relative sequence of two events on the same blob name.",
"type": "string"
},
"identity": {
"description": "The identity of the requester that triggered this event.",
"type": "string"
},
"storageDiagnostics": {
"description": "For service use only. Diagnostic data occasionally included by the Azure Storage service. This property should be ignored by event consumers.",
"type": "object"
}
}
},
"StorageDirectoryRenamedEventData": {
"description": "Schema of the Data property of an EventGridEvent for a Microsoft.Storage.DirectoryRenamed event.",
"type": "object",
"properties": {
"api": {
"description": "The name of the API/operation that triggered this event.",
"type": "string"
},
"clientRequestId": {
"description": "A request id provided by the client of the storage API operation that triggered this event.",
"type": "string"
},
"requestId": {
"description": "The request id generated by the storage service for the storage API operation that triggered this event.",
"type": "string"
},
"sourceUrl": {
"description": "The path to the directory that was renamed.",
"type": "string"
},
"destinationUrl": {
"description": "The new path to the directory after the rename operation.",
"type": "string"
},
"sequencer": {
"description": "An opaque string value representing the logical sequence of events for any particular directory name. Users can use standard string comparison to understand the relative sequence of two events on the same directory name.",
"type": "string"
},
"identity": {
"description": "The identity of the requester that triggered this event.",
"type": "string"
},
"storageDiagnostics": {
"description": "For service use only. Diagnostic data occasionally included by the Azure Storage service. This property should be ignored by event consumers.",
"type": "object"
}
}
},
"StorageLifecyclePolicyCompletedEventData": {
"description": "Schema of the Data property of an EventGridEvent for a Microsoft.Storage.LifecyclePolicyCompleted event.",
"type": "object",
"properties": {
"scheduleTime": {
"description": "The time the policy task was scheduled.",
"type": "string"
},
"deleteSummary": {
"$ref": "#/definitions/StorageLifecyclePolicyActionSummaryDetail"
},
"tierToCoolSummary": {
"$ref": "#/definitions/StorageLifecyclePolicyActionSummaryDetail"
},
"tierToArchiveSummary": {
"$ref": "#/definitions/StorageLifecyclePolicyActionSummaryDetail"
}
}
},
"StorageLifecyclePolicyActionSummaryDetail": {
"description": "Execution statistics of a specific policy action in a Blob Management cycle.",
"type": "object",
"properties": {
"totalObjectsCount": {
"description": "Total number of objects to be acted on by this action.",
"type": "integer",
"format": "int64"
},
"successCount": {
"description": "Number of success operations of this action.",
"type": "integer",
"format": "int64"
},
"errorList": {
"description": "Error messages of this action if any.",
"type": "string"
}
}
},
"StorageBlobTierChangedEventData": {
"description": "Schema of the Data property of an EventGridEvent for a Microsoft.Storage.BlobTierChanged event.",
"type": "object",
"properties": {
"api": {
"description": "The name of the API/operation that triggered this event.",
"type": "string"
},
"clientRequestId": {
"description": "A request id provided by the client of the storage API operation that triggered this event.",
"type": "string"
},
"requestId": {
"description": "The request id generated by the Storage service for the storage API operation that triggered this event.",
"type": "string"
},
"contentType": {
"description": "The content type of the blob. This is the same as what would be returned in the Content-Type header from the blob.",
"type": "string"
},
"contentLength": {
"description": "The size of the blob in bytes. This is the same as what would be returned in the Content-Length header from the blob.",
"type": "integer",
"format": "int64"
},
"blobType": {
"description": "The type of blob.",
"type": "string"
},
"url": {
"description": "The path to the blob.",
"type": "string"
},
"sequencer": {
"description": "An opaque string value representing the logical sequence of events for any particular blob name. Users can use standard string comparison to understand the relative sequence of two events on the same blob name.",
"type": "string"
},
"identity": {
"description": "The identity of the requester that triggered this event.",
"type": "string"
},
"storageDiagnostics": {
"description": "For service use only. Diagnostic data occasionally included by the Azure Storage service. This property should be ignored by event consumers.",
"type": "object"
}
}
},
"StorageAsyncOperationInitiatedEventData": {
"description": "Schema of the Data property of an EventGridEvent for a Microsoft.Storage.AsyncOperationInitiated event.",
"type": "object",
"properties": {
"api": {
"description": "The name of the API/operation that triggered this event.",
"type": "string"
},
"clientRequestId": {
"description": "A request id provided by the client of the storage API operation that triggered this event.",
"type": "string"
},
"requestId": {
"description": "The request id generated by the Storage service for the storage API operation that triggered this event.",
"type": "string"
},
"contentType": {
"description": "The content type of the blob. This is the same as what would be returned in the Content-Type header from the blob.",
"type": "string"
},
"contentLength": {
"description": "The size of the blob in bytes. This is the same as what would be returned in the Content-Length header from the blob.",
"type": "integer",
"format": "int64"
},
"blobType": {
"description": "The type of blob.",
"type": "string"
},
"url": {
"description": "The path to the blob.",
"type": "string"
},
"sequencer": {
"description": "An opaque string value representing the logical sequence of events for any particular blob name. Users can use standard string comparison to understand the relative sequence of two events on the same blob name.",
"type": "string"
},
"identity": {
"description": "The identity of the requester that triggered this event.",
"type": "string"
},
"storageDiagnostics": {
"description": "For service use only. Diagnostic data occasionally included by the Azure Storage service. This property should be ignored by event consumers.",
"type": "object"
}
}
},
"StorageBlobInventoryPolicyCompletedEventData": {
"description": "Schema of the Data property of an EventGridEvent for an Microsoft.Storage.BlobInventoryPolicyCompleted event.",
"type": "object",
"properties": {
"scheduleDateTime": {
"description": "The time at which inventory policy was scheduled.",
"format": "date-time",
"type": "string"
},
"accountName": {
"description": "The account name for which inventory policy is registered.",
"type": "string"
},
"ruleName": {
"description": "The rule name for inventory policy.",
"type": "string"
},
"policyRunStatus": {
"description": "The status of inventory run, it can be Succeeded/PartiallySucceeded/Failed.",
"type": "string"
},
"policyRunStatusMessage": {
"description": "The status message for inventory run.",
"type": "string"
},
"policyRunId": {
"description": "The policy run id for inventory run.",
"type": "string"
},
"manifestBlobUrl": {
"description": "The blob URL for manifest file for inventory run.",
"type": "string"
}
}
},
"StorageTaskQueuedEventData": {
"description": "Schema of the Data property of an EventGridEvent for an Microsoft.Storage.StorageTaskQueued event.",
"type": "object",
"properties": {
"queuedDateTime": {
"description": "The time at which a storage task was queued.",
"format": "date-time",
"type": "string"
},
"taskExecutionId": {
"description": "The execution id for a storage task.",
"type": "string"
}
},
"x-ms-examples": {
"StorageTaskQueuedCloudEventsSchema": {
"$ref": "./examples/cloud-events-schema/storage_task_queued.json"
},
"StorageTaskQueuedEventGridSchema": {
"$ref": "./examples/event-grid-schema/storage_task_queued.json"
}
}
},
"StorageTaskCompletedEventData": {
"description": "Schema of the Data property of an EventGridEvent for an Microsoft.Storage.StorageTaskCompleted event.",
"type": "object",
"properties": {
"status": {
"description": "The status for a storage task.",
"type": "string",
"enum": [
"Succeeded",
"Failed"
],
"x-ms-enum": {
"name": "StorageTaskCompletedStatus",
"modelAsString": true
}
},
"completedDateTime": {
"description": "The time at which a storage task was completed.",
"format": "date-time",
"type": "string"
},
"taskExecutionId": {
"description": "The execution id for a storage task.",
"type": "string"
},
"taskName": {
"description": "The task name for a storage task.",
"type": "string"
},
"summaryReportBlobUrl": {
"description": "The summary report blob url for a storage task",
"format": "url",
"type": "string"
}
},
"x-ms-examples": {
"StorageTaskCompletedCloudEventsSchema": {
"$ref": "./examples/cloud-events-schema/storage_task_completed.json"
},
"StorageTaskCompletedEventGridSchema": {
"$ref": "./examples/event-grid-schema/storage_task_completed.json"
}
}
},
"StorageTaskAssignmentQueuedEventData": {
"description": "Schema of the Data property of an EventGridEvent for an Microsoft.Storage.StorageTaskAssignmentQueued event.",
"type": "object",
"properties": {
"queuedDateTime": {
"description": "The time at which a storage task was queued.",
"format": "date-time",
"type": "string",
"x-ms-client-name": "queuedOn"
},
"taskExecutionId": {
"description": "The execution id for a storage task.",
"type": "string"
}
},
"x-ms-examples": {
"StorageTaskAssignmentQueuedCloudEventsSchema": {
"$ref": "./examples/cloud-events-schema/storage_task_assignment_queued.json"
},
"StorageTaskAssignmentQueuedEventGridSchema": {
"$ref": "./examples/event-grid-schema/storage_task_assignment_queued.json"
}
}
},
"StorageTaskAssignmentCompletedEventData": {
"description": "Schema of the Data property of an EventGridEvent for an Microsoft.Storage.StorageTaskAssignmentCompleted event.",
"type": "object",
"properties": {
"status": {
"description": "The status for a storage task.",
"type": "string",
"enum": [
"Succeeded",
"Failed"
],
"x-ms-enum": {
"name": "StorageTaskAssignmentCompletedStatus",
"modelAsString": true
}
},
"completedDateTime": {
"description": "The time at which a storage task was completed.",
"format": "date-time",
"type": "string",
"x-ms-client-name": "completedOn"
},
"taskExecutionId": {
"description": "The execution id for a storage task.",
"type": "string"
},
"taskName": {
"description": "The task name for a storage task.",
"type": "string"
},
"summaryReportBlobUrl": {
"description": "The summary report blob url for a storage task",
"format": "url",
"type": "string",
"x-ms-client-name": "summaryReportBlobUri"
}
},
"x-ms-examples": {
"StorageTaskAssignmentCompletedCloudEventsSchema": {
"$ref": "./examples/cloud-events-schema/storage_task_assignment_completed.json"
},
"StorageTaskAssignmentCompletedEventGridSchema": {
"$ref": "./examples/event-grid-schema/storage_task_assignment_completed.json"
}
}
}
}
}