@Retention(value=RUNTIME) @Target(value=PARAMETER) public @interface BlobInput
Place this on a parameter whose value would come from a blob. The parameter type can be one of the following:
The following example is a Java function that uses a queue trigger and an input blob binding. The queue message contains the name of the blob, and the function logs the size of the blob.
@FunctionName("getBlobSize")
@StorageAccount("AzureWebJobsStorage")
public void blobSize(
@QueueTrigger(name = "filename",
queueName = "myqueue-items") String filename,
@BlobInput(name = "file",
dataType = "binary",
path = "samples-workitems/{queueTrigger}") byte[] content,
final ExecutionContext context
) {
context.getLogger().info("The size of \"" + filename + "\" is: " + content.length + " bytes");
}| Modifier and Type | Required Element and Description |
|---|---|
String |
name
The variable name used in function.json.
|
String |
path
Defines the path of the blob to which to bind.
|
| Modifier and Type | Optional Element and Description |
|---|---|
String |
connection
Defines the app setting name that contains the Azure Storage connection string.
|
String |
dataType
Defines how Functions runtime should treat the parameter value.
|
public abstract String name
public abstract String path
public abstract String dataType
Defines how Functions runtime should treat the parameter value. Possible values are:
public abstract String connection
Copyright © 2022. All rights reserved.