Skip to content

Commit fdaaded

Browse files
Merge pull request #289244 from normesta/LCM2
Adding a new summary section to the lifecycle management overview event example
2 parents 9130839 + d6b1380 commit fdaaded

File tree

2 files changed

+19
-3
lines changed

2 files changed

+19
-3
lines changed

articles/event-grid/event-schema-blob-storage.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Azure Blob Storage as Event Grid source
33
description: Describes the properties that are provided for blob storage events with Azure Event Grid
44
ms.topic: conceptual
5-
ms.date: 05/31/2024
5+
ms.date: 10/25/2024
66
---
77

88
# Azure Blob Storage as an Event Grid source
@@ -1136,6 +1136,11 @@ When an event is triggered, the Event Grid service sends data about that event t
11361136
"successCount": 0,
11371137
"errorList": ""
11381138
},
1139+
"tierToColdSummary": {
1140+
"totalObjectsCount": 0,
1141+
"successCount": 0,
1142+
"errorList": ""
1143+
},
11391144
"tierToArchiveSummary": {
11401145
"totalObjectsCount": 0,
11411146
"successCount": 0,
@@ -1192,6 +1197,11 @@ When an event is triggered, the Event Grid service sends data about that event t
11921197
"successCount": 0,
11931198
"errorList": ""
11941199
},
1200+
"tierToColdSummary": {
1201+
"totalObjectsCount": 0,
1202+
"successCount": 0,
1203+
"errorList": ""
1204+
},
11951205
"tierToArchiveSummary": {
11961206
"totalObjectsCount": 0,
11971207
"successCount": 0,

articles/storage/blobs/lifecycle-management-overview.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Use Azure Blob Storage lifecycle management policies to create auto
55
author: normesta
66

77
ms.author: normesta
8-
ms.date: 09/30/2024
8+
ms.date: 10/25/2024
99
ms.service: azure-blob-storage
1010
ms.topic: conceptual
1111
ms.reviewer: yzheng
@@ -191,8 +191,8 @@ When you configure or edit a lifecycle policy, it can take up to 24 hours for ch
191191
If you disable a policy, then no new policy runs will be scheduled, but if a run is already in progress, that run will continue until it completes and you're billed for any actions that are required to complete the run. See [Regional availability and pricing](#regional-availability-and-pricing).
192192

193193
### Lifecycle policy completed event
194+
The `LifecyclePolicyCompleted` event is generated when the actions defined by a lifecycle management policy are performed. A summary section appears for each action that is included in the policy definition. The following json shows an example `LifecyclePolicyCompleted` event for a policy. Because the policy definition includes the `delete`, `tierToCool`, `tierToCold`, and `tierToArchive` actions, a summary section appears for each one.
194195

195-
The `LifecyclePolicyCompleted` event is generated when the actions defined by a lifecycle management policy are performed. The following json shows an example `LifecyclePolicyCompleted` event.
196196

197197
```json
198198
{
@@ -213,6 +213,11 @@ The `LifecyclePolicyCompleted` event is generated when the actions defined by a
213213
"successCount": 0,
214214
"errorList": ""
215215
},
216+
"tierToColdSummary": {
217+
"totalObjectsCount": 0,
218+
"successCount": 0,
219+
"errorList": ""
220+
},
216221
"tierToArchiveSummary": {
217222
"totalObjectsCount": 0,
218223
"successCount": 0,
@@ -231,6 +236,7 @@ The following table describes the schema of the `LifecyclePolicyCompleted` event
231236
|scheduleTime|string|The time that the lifecycle policy was scheduled|
232237
|deleteSummary|vector\<byte\>|The results summary of blobs scheduled for delete operation|
233238
|tierToCoolSummary|vector\<byte\>|The results summary of blobs scheduled for tier-to-cool operation|
239+
|tierToColdSummary|vector\<byte\>|The results summary of blobs scheduled for tier-to-cold operation|
234240
|tierToArchiveSummary|vector\<byte\>|The results summary of blobs scheduled for tier-to-archive operation|
235241

236242
## Examples of lifecycle policies

0 commit comments

Comments
 (0)