You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -46,29 +43,27 @@ class AzureDLFileSystem(object):
46
43
Parameters
47
44
----------
48
45
store_name: str ("")
49
-
Store name to connect to.
50
-
token: credentials object
46
+
Store name to connect to. If not supplied, we use environment variable azure_data_lake_store_name
47
+
token_credential: credentials object
51
48
When setting up a new connection, this contains the authorization
52
-
credentials (see `lib.auth()`).
49
+
credentials. Use Azure Identity to get this or define an implementation of azure.core.credentials.TokenCredential
50
+
scopes: str(None)
51
+
which is a list of scopes to use for the token.
53
52
url_suffix: str (None)
54
53
Domain to send REST requests to. The end-point URL is constructed
55
54
using this and the store_name. If None, use default.
56
55
api_version: str (2018-09-01)
57
-
The API version to target with requests. Changing this value will
58
-
change the behavior of the requests, and can cause unexpected behavior or
59
-
breaking changes. Changes to this value should be undergone with caution.
56
+
The API version to target with requests. Changing this value will change the behavior of the requests, and can cause unexpected behavior or breaking changes. Changes to this value should be undergone with caution.
60
57
per_call_timeout_seconds: float(60)
61
58
This is the timeout for each requests library call.
62
59
kwargs: optional key/values
63
-
See ``lib.auth()``; full list: tenant_id, username, password, client_id,
64
-
client_secret, resource
60
+
Other arguments forwarded to the DatalakeRESTInterface constructor.
0 commit comments