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.
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
It would be handy to be able to set metadata properties for Blobs like Cache-Control and Content-Type.
It is required to use the SDK for creating blobs that require custom metadata property values.
Perhaps a "propeties" value could be added to the json for out blob.
{ "name": "outputBlob", "type": "blob", "direction": "out", "path": "{container}/{blob}", "connection": "AZURE_STORAGE_CONNECTION_STRING", "properties": { "cacheControl": "public, max-age 86400", "contentType": "application/json", "contentEncoding": "gzip" } }
context.bindings.outputBlob = {data: '...'}; context.bindingsMetadata.outputBlob.properties = {contentType:'application/json'};
The text was updated successfully, but these errors were encountered:
This needs a partner issue on the Blob Storage Binding in SDK to expose this feature on the binding.
Sorry, something went wrong.
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
It would be handy to be able to set metadata properties for Blobs like Cache-Control and Content-Type.
Known workarounds
It is required to use the SDK for creating blobs that require custom metadata property values.
Related information
Perhaps a "propeties" value could be added to the json for out blob.
To Set the Value Statically with Functions.json
To Set the Value at Runtime:
The text was updated successfully, but these errors were encountered: