You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/storage/blobs/lifecycle-management-overview.md
+8-2Lines changed: 8 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ description: Use Azure Blob Storage lifecycle management policies to create auto
5
5
author: normesta
6
6
7
7
ms.author: normesta
8
-
ms.date: 09/30/2024
8
+
ms.date: 10/25/2024
9
9
ms.service: azure-blob-storage
10
10
ms.topic: conceptual
11
11
ms.reviewer: yzheng
@@ -191,8 +191,8 @@ When you configure or edit a lifecycle policy, it can take up to 24 hours for ch
191
191
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).
192
192
193
193
### 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.
194
195
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.
196
196
197
197
```json
198
198
{
@@ -213,6 +213,11 @@ The `LifecyclePolicyCompleted` event is generated when the actions defined by a
213
213
"successCount": 0,
214
214
"errorList": ""
215
215
},
216
+
"tierToColdSummary": {
217
+
"totalObjectsCount": 0,
218
+
"successCount": 0,
219
+
"errorList": ""
220
+
},
216
221
"tierToArchiveSummary": {
217
222
"totalObjectsCount": 0,
218
223
"successCount": 0,
@@ -231,6 +236,7 @@ The following table describes the schema of the `LifecyclePolicyCompleted` event
231
236
|scheduleTime|string|The time that the lifecycle policy was scheduled|
232
237
|deleteSummary|vector\<byte\>|The results summary of blobs scheduled for delete operation|
233
238
|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|
234
240
|tierToArchiveSummary|vector\<byte\>|The results summary of blobs scheduled for tier-to-archive operation|
0 commit comments