From c0289eecb38e6cc23b54820c8e5d24d9d6d67403 Mon Sep 17 00:00:00 2001 From: Javier Vela Date: Thu, 7 Oct 2021 20:03:16 +0200 Subject: [PATCH] azure blob storage add publicAccessLevel param --- .../components-reference/supported-bindings/blobstorage.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/daprdocs/content/en/reference/components-reference/supported-bindings/blobstorage.md b/daprdocs/content/en/reference/components-reference/supported-bindings/blobstorage.md index 04eae4780..bb8dcdb69 100644 --- a/daprdocs/content/en/reference/components-reference/supported-bindings/blobstorage.md +++ b/daprdocs/content/en/reference/components-reference/supported-bindings/blobstorage.md @@ -32,6 +32,8 @@ spec: value: - name: getBlobRetryCount value: + - name: publicAccessLevel + value: ``` {{% alert title="Warning" color="warning" %}} The above example uses secrets as plain strings. It is recommended to use a secret store for the secrets as described [here]({{< ref component-secrets.md >}}). @@ -46,6 +48,7 @@ The above example uses secrets as plain strings. It is recommended to use a secr | container | Y | Output | The name of the Blob Storage container to write to | `myexamplecontainer` | | decodeBase64 | N | Output | Configuration to decode base64 file content before saving to Blob Storage. (In case of saving a file with binary content). `true` is the only allowed positive value. Other positive variations like `"True", "1"` are not acceptable. Defaults to `false` | `true`, `false` | | getBlobRetryCount | N | Output | Specifies the maximum number of HTTP GET requests that will be made while reading from a RetryReader Defaults to `10` | `1`, `2` +| publicAccessLevel | N | Output | Specifies whether data in the container may be accessed publicly and the level of access (only it's used if the container is created by dapr). Defaults to `none` | `blob`, `container`, `none` ## Binding support