StorageBlobFunctionOptions interface
- Extends
-
StorageBlobTriggerOptions,Partial<FunctionOptions>
Properties
handler | |
trigger |
Inherited Properties
connection | An app setting (or environment variable) with the storage connection string to be used by this blob input or output |
extra |
Configuration for an optional set of secondary inputs
During invocation, get these values with |
extra |
Configuration for an optional set of secondary outputs
During invocation, set these values with |
path | The path to the blob container, for example "samples-workitems/{name}" |
return | Configuration for the optional primary output of the function This is the main output that you should set as the return value of the function handler during invocation |
source | The source of the triggering event.
Use |
Property Details
handler
trigger
Inherited Property Details
connection
An app setting (or environment variable) with the storage connection string to be used by this blob input or output
connection: string
Property Value
string
Inherited From StorageBlobTriggerOptions.connection
extraInputs
Configuration for an optional set of secondary inputs
During invocation, get these values with context.extraInputs.get()
extraInputs?: FunctionInput[]
Property Value
Inherited From Partial.extraInputs
extraOutputs
Configuration for an optional set of secondary outputs
During invocation, set these values with context.extraOutputs.set()
extraOutputs?: FunctionOutput[]
Property Value
Inherited From Partial.extraOutputs
path
The path to the blob container, for example "samples-workitems/{name}"
path: string
Property Value
string
Inherited From StorageBlobTriggerOptions.path
return
Configuration for the optional primary output of the function This is the main output that you should set as the return value of the function handler during invocation
return?: FunctionOutput
Property Value
Inherited From Partial.return
source
The source of the triggering event.
Use EventGrid
for an Event Grid-based blob trigger, which provides much lower latency.
The default is LogsAndContainerScan
, which uses the standard polling mechanism to detect changes in the container.
source?: "EventGrid" | "LogsAndContainerScan"
Property Value
"EventGrid" | "LogsAndContainerScan"
Inherited From StorageBlobTriggerOptions.source