File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change 74
74
HDFS_USER = "hdfs.user"
75
75
HDFS_KERB_TICKET = "hdfs.kerberos_ticket"
76
76
ADLS_CONNECTION_STRING = "adls.connection-string"
77
+ ADLS_CREDENTIAL = "adls.credential"
77
78
ADLS_ACCOUNT_NAME = "adls.account-name"
78
79
ADLS_ACCOUNT_KEY = "adls.account-key"
79
80
ADLS_SAS_TOKEN = "adls.sas-token"
Original file line number Diff line number Diff line change 45
45
ADLS_CLIENT_ID ,
46
46
ADLS_CLIENT_SECRET ,
47
47
ADLS_CONNECTION_STRING ,
48
+ ADLS_CREDENTIAL ,
48
49
ADLS_SAS_TOKEN ,
49
50
ADLS_TENANT_ID ,
50
51
AWS_ACCESS_KEY_ID ,
@@ -203,6 +204,7 @@ def _adls(properties: Properties) -> AbstractFileSystem:
203
204
204
205
return AzureBlobFileSystem (
205
206
connection_string = properties .get (ADLS_CONNECTION_STRING ),
207
+ credential = properties .get (ADLS_CREDENTIAL ),
206
208
account_name = properties .get (ADLS_ACCOUNT_NAME ),
207
209
account_key = properties .get (ADLS_ACCOUNT_KEY ),
208
210
sas_token = properties .get (ADLS_SAS_TOKEN ),
You can’t perform that action at this time.
0 commit comments