Skip to content

Commit

Permalink
remove hns only properties in change event record
Browse files Browse the repository at this point in the history
  • Loading branch information
Lin Jian committed Jun 11, 2020
1 parent c41c903 commit c751c22
Showing 1 changed file with 3 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
export type BlobChangeFeedEventType = "BlobCreate" | "BlobDeleted";
// https://msazure.visualstudio.com/One/_git/Storage-XStore?path=%2Fsrc%2FXTable%2FNotifications%2Flib%2FBlobChangeEventv4.json&version=GBmaster

export type BlobChangeFeedEventType = "UnspecifiedEventType" | "BlobCreated" | "BlobDeleted" | "BlobPropertiesUpdated" | "BlobSnapshotCreated" | "Control" | "BlobTierChanged" | "BlobAsyncOperationInitiated" | "BlobMetadataUpdated";

export interface BlobChangeFeedEvent {
topic: string;
Expand All @@ -23,10 +25,4 @@ export interface BlobChangeFeedEventData {
blobType: BlobType;
url: string;
sequencer: string;

// For HNS only.
contentOffset?: number;
destinationUrl?: string;
sourceUrl?: string;
recursive?: string;
}

0 comments on commit c751c22

Please sign in to comment.