Skip to content

Commit

Permalink
Schema for Storage.LifecyclePolicyCompleted event (Azure#10001)
Browse files Browse the repository at this point in the history
* Schema for Storage.LifecyclePolicyCompleted event

* Update Storage.json

* Update Storage.json
  • Loading branch information
xioyi authored and 00Kai0 committed Oct 12, 2020
1 parent 528714f commit 64d25ea
Showing 1 changed file with 39 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,45 @@
"type": "object"
}
}
},
"StorageLifecyclePolicyCompletedEventData": {
"description": "Schema of the Data property of an EventGridEvent for an 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"
}
}
}
}
}

0 comments on commit 64d25ea

Please sign in to comment.