@@ -20,12 +20,12 @@ class AzureConfig(TypedDict, total=False):
20
20
```
21
21
"""
22
22
23
- storage_account_name : str
23
+ account_name : str
24
24
"""The name of the azure storage account. (Required.)
25
25
26
26
**Environment variable**: `AZURE_STORAGE_ACCOUNT_NAME`.
27
27
"""
28
- storage_account_key : str
28
+ account_key : str
29
29
"""Master key for accessing storage account.
30
30
31
31
**Environment variables**:
@@ -34,23 +34,23 @@ class AzureConfig(TypedDict, total=False):
34
34
- `AZURE_STORAGE_ACCESS_KEY`
35
35
- `AZURE_STORAGE_MASTER_KEY`
36
36
"""
37
- storage_client_id : str
37
+ client_id : str
38
38
"""The client id for use in client secret or k8s federated credential flow.
39
39
40
40
**Environment variables**:
41
41
42
42
- `AZURE_STORAGE_CLIENT_ID`
43
43
- `AZURE_CLIENT_ID`
44
44
"""
45
- storage_client_secret : str
45
+ client_secret : str
46
46
"""The client secret for use in client secret flow.
47
47
48
48
**Environment variables**:
49
49
50
50
- `AZURE_STORAGE_CLIENT_SECRET`
51
51
- `AZURE_CLIENT_SECRET`
52
52
"""
53
- storage_tenant_id : str
53
+ tenant_id : str
54
54
"""The tenant id for use in client secret or k8s federated credential flow.
55
55
56
56
**Environment variables**:
@@ -60,7 +60,7 @@ class AzureConfig(TypedDict, total=False):
60
60
- `AZURE_TENANT_ID`
61
61
- `AZURE_AUTHORITY_ID`
62
62
"""
63
- storage_authority_host : str
63
+ authority_host : str
64
64
"""Sets an alternative authority host for OAuth based authorization.
65
65
66
66
Defaults to `https://login.microsoftonline.com`.
@@ -77,7 +77,7 @@ class AzureConfig(TypedDict, total=False):
77
77
- `AZURE_STORAGE_AUTHORITY_HOST`
78
78
- `AZURE_AUTHORITY_HOST`
79
79
"""
80
- storage_sas_key : str
80
+ sas_key : str
81
81
"""
82
82
Shared access signature.
83
83
@@ -89,12 +89,12 @@ class AzureConfig(TypedDict, total=False):
89
89
- `AZURE_STORAGE_SAS_KEY`
90
90
- `AZURE_STORAGE_SAS_TOKEN`
91
91
"""
92
- storage_token : str
92
+ token : str
93
93
"""A static bearer token to be used for authorizing requests.
94
94
95
95
**Environment variable**: `AZURE_STORAGE_TOKEN`.
96
96
"""
97
- storage_use_emulator : bool
97
+ use_emulator : bool
98
98
"""Set if the Azure emulator should be used (defaults to `False`).
99
99
100
100
**Environment variable**: `AZURE_STORAGE_USE_EMULATOR`.
@@ -107,9 +107,9 @@ class AzureConfig(TypedDict, total=False):
107
107
108
108
!!! note
109
109
110
- `storage_endpoint ` will take precedence over this option.
110
+ `endpoint ` will take precedence over this option.
111
111
"""
112
- storage_endpoint : str
112
+ endpoint : str
113
113
"""Override the endpoint used to communicate with blob storage.
114
114
115
115
Defaults to `https://{account}.blob.core.windows.net`.
@@ -143,7 +143,7 @@ class AzureConfig(TypedDict, total=False):
143
143
federated_token_file : str
144
144
"""Sets a file path for acquiring azure federated identity token in k8s.
145
145
146
- Requires `storage_client_id ` and `storage_tenant_id ` to be set.
146
+ Requires `client_id ` and `tenant_id ` to be set.
147
147
148
148
**Environment variable**: `AZURE_FEDERATED_TOKEN_FILE`.
149
149
"""
0 commit comments