Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Eventgrid schema for Storage.BlobInventoryCompleted event #14574

Merged
merged 5 commits into from
Jun 1, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -389,6 +389,41 @@
"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"
ruban30 marked this conversation as resolved.
Show resolved Hide resolved
},
"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"
}
}
}
}
}