Skip to content

Commit 9c8aacc

Browse files
authored
Merge branch 'v1.15' into dash0-tracing-docs
2 parents ed531ef + 239dfef commit 9c8aacc

File tree

9 files changed

+14
-11
lines changed

9 files changed

+14
-11
lines changed

daprdocs/content/en/reference/components-reference/supported-bindings/blobstorage.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ spec:
3333
# value: <integer>
3434
# - name: publicAccessLevel
3535
# value: <publicAccessLevel>
36+
# - name: disableEntityManagement
37+
# value: <bool>
3638
```
3739
{{% alert title="Warning" color="warning" %}}
3840
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 >}}).
@@ -45,10 +47,11 @@ The above example uses secrets as plain strings. It is recommended to use a secr
4547
| `accountName` | Y | Input/Output | The name of the Azure Storage account | `"myexmapleaccount"` |
4648
| `accountKey` | Y* | Input/Output | The access key of the Azure Storage account. Only required when not using Microsoft Entra ID authentication. | `"access-key"` |
4749
| `containerName` | Y | Output | The name of the Blob Storage container to write to | `myexamplecontainer` |
48-
| `endpoint` | N | Input/Output | Optional custom endpoint URL. This is useful when using the [Azurite emulator](https://github.com/Azure/azurite) or when using custom domains for Azure Storage (although this is not officially supported). The endpoint must be the full base URL, including the protocol (`http://` or `https://`), the IP or FQDN, and optional port. | `"http://127.0.0.1:10000"`
50+
| `endpoint` | N | Input/Output | Optional custom endpoint URL. This is useful when using the [Azurite emulator](https://github.com/Azure/azurite) or when using custom domains for Azure Storage (although this is not officially supported). The endpoint must be the full base URL, including the protocol (`http://` or `https://`), the IP or FQDN, and optional port. | `"http://127.0.0.1:10000"` |
4951
| `decodeBase64` | N | Output | Configuration to decode base64 file content before saving to Blob Storage. (In case of saving a file with binary content). Defaults to `false` | `true`, `false` |
50-
| `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`
51-
| `publicAccessLevel` | N | Output | Specifies whether data in the container may be accessed publicly and the level of access (only used if the container is created by Dapr). Defaults to `none` | `blob`, `container`, `none`
52+
| `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` |
53+
| `publicAccessLevel` | N | Output | Specifies whether data in the container may be accessed publicly and the level of access (only used if the container is created by Dapr). Defaults to `none` | `blob`, `container`, `none` |
54+
| `disableEntityManagement` | N | Output | Configuration to disable entity management. When set to `true`, the binding skips the attempt to create the specified storage container. This is useful when operating with minimal Azure AD permissions. Defaults to `false` | `true`, `false` |
5255

5356
### Microsoft Entra ID authentication
5457

sdkdocs/dotnet

Submodule dotnet updated 738 files

sdkdocs/java

Submodule java updated 1284 files

sdkdocs/php

Submodule php updated 167 files

sdkdocs/pluggable-components/dotnet

Submodule dotnet updated 95 files

sdkdocs/python

Submodule python updated 36 files

0 commit comments

Comments
 (0)