@@ -137,6 +137,7 @@ def get_storage_options_schema(cls) -> JsonObjectSchema:
137
137
additional_properties = True ,
138
138
)
139
139
140
+
140
141
class AzureFsAccessor (FsAccessor ):
141
142
@classmethod
142
143
def get_protocol (cls ) -> str :
@@ -148,27 +149,33 @@ def get_storage_options_schema(cls) -> JsonObjectSchema:
148
149
return JsonObjectSchema (
149
150
properties = dict (
150
151
anon = JsonBooleanSchema (
151
- title = 'Whether to anonymously connect to Azure Blob Storage.'
152
+ title = 'Whether to anonymously connect to'
153
+ ' Azure Blob Storage.'
152
154
),
153
155
account_name = JsonStringSchema (
154
156
min_length = 1 ,
155
157
title = 'Azure storage account name.' ,
156
158
description = 'Must be used with the account key parameter.'
157
- ' This is not required when using a connection string.'
159
+ ' This is not required when using a'
160
+ ' connection string.'
158
161
159
162
),
160
163
account_key = JsonStringSchema (
161
164
min_length = 1 ,
162
165
title = 'Azure storage account key.' ,
163
- description = 'Must be used with the account name parameter.'
164
- ' This is not required when using a connection string'
166
+ description = 'Must be used with the account'
167
+ ' name parameter.'
168
+ ' This is not required when using a'
169
+ ' connection string'
165
170
),
166
171
connection_string = JsonStringSchema (
167
172
min_length = 1 ,
168
173
title = 'Connection string for Azure blob storage.' ,
169
- description = 'Use this parameter inplace of both account name and key'
170
- ' because they are both contained in the string.'
171
- )
174
+ description = 'Use this parameter inplace of both'
175
+ ' account name and key'
176
+ ' because they are both contained'
177
+ ' in the string.'
178
+ ),
172
179
** COMMON_STORAGE_OPTIONS_SCHEMA_PROPERTIES ,
173
180
),
174
181
additional_properties = True ,
0 commit comments