Skip to content

Adding BlobMetadataUpdate Event Type in Schema #22015

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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 @@ -424,6 +424,57 @@
"type": "string"
}
}
},
"StorageBlobMetadataUpdateEventData": {
"description": "Schema of the Data property of an EventGridEvent for a Microsoft.Storage.BlobMetadataUpdate 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"
},
"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"
}
}
}
}
}