Commit eaa3f79
Add use_fabric_endpoint parameter to MicrosoftAzure class (#1357)
This change adds support for the use_fabric_endpoint parameter to the
MicrosoftAzure object store class, enabling connections to Microsoft
Fabric OneLake storage.
The parameter allows users to specify that they want to use Data Lake
Storage Gen2 endpoints (dfs.fabric.microsoft.com) instead of the default
Azure Blob Storage endpoints (blob.core.windows.net), which is required
for OneLake/Fabric storage access.
Implementation follows the same pattern as existing boolean parameters
(use_emulator, allow_http) by:
- Adding the parameter to the PyO3 signature macro
- Adding it as Option<bool> to the function parameters
- Conditionally calling with_use_fabric_endpoint() on the builder
Fixes #1356
Co-authored-by: Claude Sonnet 4.5 <noreply@anthropic.com>1 parent 7aff363 commit eaa3f79
1 file changed
+6
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
76 | 76 | | |
77 | 77 | | |
78 | 78 | | |
79 | | - | |
| 79 | + | |
80 | 80 | | |
81 | 81 | | |
82 | 82 | | |
| |||
89 | 89 | | |
90 | 90 | | |
91 | 91 | | |
| 92 | + | |
92 | 93 | | |
93 | 94 | | |
94 | 95 | | |
| |||
127 | 128 | | |
128 | 129 | | |
129 | 130 | | |
| 131 | + | |
| 132 | + | |
| 133 | + | |
| 134 | + | |
130 | 135 | | |
131 | 136 | | |
132 | 137 | | |
| |||
0 commit comments