We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f222fa1 commit 1a1e4e8Copy full SHA for 1a1e4e8
types/storage.d.ts
@@ -43,7 +43,14 @@ export interface StorageQueueOptions {
43
connection: string;
44
}
45
46
-export type StorageBlobTriggerOptions = StorageBlobOptions;
+export interface StorageBlobTriggerOptions extends StorageBlobOptions {
47
+ /**
48
+ * The source of the triggering event.
49
+ * Use `EventGrid` for an Event Grid-based blob trigger, which provides much lower latency.
50
+ * The default is `LogsAndContainerScan`, which uses the standard polling mechanism to detect changes in the container.
51
+ */
52
+ source?: 'EventGrid' | 'LogsAndContainerScan';
53
+}
54
export type StorageBlobTrigger = FunctionTrigger & StorageBlobTriggerOptions;
55
56
export type StorageBlobInputOptions = StorageBlobOptions;
0 commit comments