flywheel-sdk 18.1.0rc0__py2.py3-none-any.whl → 18.1.1__py2.py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
flywheel/__init__.py CHANGED
@@ -140,6 +140,7 @@ from flywheel.models.change import Change
140
140
  from flywheel.models.change_log_container_type import ChangeLogContainerType
141
141
  from flywheel.models.change_log_document import ChangeLogDocument
142
142
  from flywheel.models.change_method import ChangeMethod
143
+ from flywheel.models.channel import Channel
143
144
  from flywheel.models.classic_batch_job_output import ClassicBatchJobOutput
144
145
  from flywheel.models.classic_batch_job_output_inflated_jobs import ClassicBatchJobOutputInflatedJobs
145
146
  from flywheel.models.classic_batch_proposal_input import ClassicBatchProposalInput
@@ -457,6 +458,7 @@ from flywheel.models.modality_output import ModalityOutput
457
458
  from flywheel.models.modified_result import ModifiedResult
458
459
  from flywheel.models.modify_report_input import ModifyReportInput
459
460
  from flywheel.models.modify_user_input import ModifyUserInput
461
+ from flywheel.models.multifactor_account import MultifactorAccount
460
462
  from flywheel.models.note import Note
461
463
  from flywheel.models.note_input import NoteInput
462
464
  from flywheel.models.open_tracing import OpenTracing
flywheel/api_client.py CHANGED
@@ -81,7 +81,7 @@ class ApiClient(object):
81
81
  self.default_query_params = []
82
82
  self.cookie = cookie
83
83
  # Set default User-Agent.
84
- self.user_agent = 'Swagger-Codegen/18.1.0-rc0/python'
84
+ self.user_agent = 'Swagger-Codegen/18.1.1/python'
85
85
  self.last_response = None
86
86
  self._version_check_fn = None
87
87
  self._context = context
flywheel/configuration.py CHANGED
@@ -253,5 +253,5 @@ class Configuration(six.with_metaclass(TypeWithDefault, object)):
253
253
  "OS: {env}\n"\
254
254
  "Python Version: {pyversion}\n"\
255
255
  "Version of the API: 0.0.1\n"\
256
- "SDK Package Version: 18.1.0-rc0".\
256
+ "SDK Package Version: 18.1.1".\
257
257
  format(env=sys.platform, pyversion=sys.version)
flywheel/flywheel.py CHANGED
@@ -39,7 +39,7 @@ from flywheel.view_builder import ViewBuilder
39
39
  from flywheel.finder import Finder
40
40
  import flywheel.api
41
41
 
42
- SDK_VERSION = "18.1.0-rc0"
42
+ SDK_VERSION = "18.1.1"
43
43
 
44
44
  def config_from_api_key(api_key):
45
45
  parts = api_key.split(':')
@@ -88,6 +88,7 @@ from flywheel.models.change import Change
88
88
  from flywheel.models.change_log_container_type import ChangeLogContainerType
89
89
  from flywheel.models.change_log_document import ChangeLogDocument
90
90
  from flywheel.models.change_method import ChangeMethod
91
+ from flywheel.models.channel import Channel
91
92
  from flywheel.models.classic_batch_job_output import ClassicBatchJobOutput
92
93
  from flywheel.models.classic_batch_job_output_inflated_jobs import ClassicBatchJobOutputInflatedJobs
93
94
  from flywheel.models.classic_batch_proposal_input import ClassicBatchProposalInput
@@ -405,6 +406,7 @@ from flywheel.models.modality_output import ModalityOutput
405
406
  from flywheel.models.modified_result import ModifiedResult
406
407
  from flywheel.models.modify_report_input import ModifyReportInput
407
408
  from flywheel.models.modify_user_input import ModifyUserInput
409
+ from flywheel.models.multifactor_account import MultifactorAccount
408
410
  from flywheel.models.note import Note
409
411
  from flywheel.models.note_input import NoteInput
410
412
  from flywheel.models.open_tracing import OpenTracing
@@ -0,0 +1,27 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Flywheel
5
+
6
+ No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
7
+
8
+ OpenAPI spec version: 0.0.1
9
+
10
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
11
+ """
12
+
13
+
14
+ ## NOTE: This file is auto generated by the swagger code generator program.
15
+ ## Do not edit the file manually.
16
+
17
+ import pprint
18
+ import re # noqa: F401
19
+ import six
20
+
21
+ import enum
22
+
23
+ class Channel(str, enum.Enum):
24
+ SMS = "sms"
25
+ VOICE = "voice"
26
+ PUSH = "push"
27
+ TOTP = "totp"
@@ -21,6 +21,7 @@ import six
21
21
  from flywheel.models.api_key_output import ApiKeyOutput # noqa: F401,E501
22
22
  from flywheel.models.azure_ml_account import AzureMLAccount # noqa: F401,E501
23
23
  from flywheel.models.legacy_api_key_output import LegacyApiKeyOutput # noqa: F401,E501
24
+ from flywheel.models.multifactor_account import MultifactorAccount # noqa: F401,E501
24
25
  from flywheel.models.user_preferences import UserPreferences # noqa: F401,E501
25
26
 
26
27
  class CurrentUserOutput(object):
@@ -42,6 +43,7 @@ class CurrentUserOutput(object):
42
43
  'preferences': 'UserPreferences',
43
44
  'created': 'datetime',
44
45
  'modified': 'datetime',
46
+ 'multifactor': 'MultifactorAccount',
45
47
  'info': 'object',
46
48
  'firstlogin': 'str',
47
49
  'lastlogin': 'str',
@@ -66,6 +68,7 @@ class CurrentUserOutput(object):
66
68
  'preferences': 'preferences',
67
69
  'created': 'created',
68
70
  'modified': 'modified',
71
+ 'multifactor': 'multifactor',
69
72
  'info': 'info',
70
73
  'firstlogin': 'firstlogin',
71
74
  'lastlogin': 'lastlogin',
@@ -90,6 +93,7 @@ class CurrentUserOutput(object):
90
93
  'preferences': 'preferences',
91
94
  'created': 'created',
92
95
  'modified': 'modified',
96
+ 'multifactor': 'multifactor',
93
97
  'info': 'info',
94
98
  'firstlogin': 'firstlogin',
95
99
  'lastlogin': 'lastlogin',
@@ -97,7 +101,7 @@ class CurrentUserOutput(object):
97
101
  'azureml_account': 'azureml_account'
98
102
  }
99
103
 
100
- def __init__(self, id=None, user_id=None, firstname=None, lastname=None, email=None, auth0sub=None, roles=None, root=False, api_key=None, api_keys=None, avatar=None, avatars=None, disabled=None, preferences=None, created=None, modified=None, info=None, firstlogin=None, lastlogin=None, visited_projects=None, azureml_account=None): # noqa: E501
104
+ def __init__(self, id=None, user_id=None, firstname=None, lastname=None, email=None, auth0sub=None, roles=None, root=False, api_key=None, api_keys=None, avatar=None, avatars=None, disabled=None, preferences=None, created=None, modified=None, multifactor=None, info=None, firstlogin=None, lastlogin=None, visited_projects=None, azureml_account=None): # noqa: E501
101
105
  """CurrentUserOutput - a model defined in Swagger"""
102
106
  super(CurrentUserOutput, self).__init__()
103
107
 
@@ -117,6 +121,7 @@ class CurrentUserOutput(object):
117
121
  self._preferences = None
118
122
  self._created = None
119
123
  self._modified = None
124
+ self._multifactor = None
120
125
  self._info = None
121
126
  self._firstlogin = None
122
127
  self._lastlogin = None
@@ -149,6 +154,8 @@ class CurrentUserOutput(object):
149
154
  self.preferences = preferences
150
155
  self.created = created
151
156
  self.modified = modified
157
+ if multifactor is not None:
158
+ self.multifactor = multifactor
152
159
  if info is not None:
153
160
  self.info = info
154
161
  if firstlogin is not None:
@@ -496,6 +503,27 @@ class CurrentUserOutput(object):
496
503
 
497
504
  self._modified = modified
498
505
 
506
+ @property
507
+ def multifactor(self):
508
+ """Gets the multifactor of this CurrentUserOutput.
509
+
510
+
511
+ :return: The multifactor of this CurrentUserOutput.
512
+ :rtype: MultifactorAccount
513
+ """
514
+ return self._multifactor
515
+
516
+ @multifactor.setter
517
+ def multifactor(self, multifactor):
518
+ """Sets the multifactor of this CurrentUserOutput.
519
+
520
+
521
+ :param multifactor: The multifactor of this CurrentUserOutput. # noqa: E501
522
+ :type: MultifactorAccount
523
+ """
524
+
525
+ self._multifactor = multifactor
526
+
499
527
  @property
500
528
  def info(self):
501
529
  """Gets the info of this CurrentUserOutput.
@@ -21,6 +21,7 @@ import six
21
21
  class Features(object):
22
22
 
23
23
  swagger_types = {
24
+ 'api_enabled_gear_rules': 'bool',
24
25
  'auth0': 'bool',
25
26
  'audit_trail': 'bool',
26
27
  'azureml_integration': 'bool',
@@ -56,9 +57,13 @@ class Features(object):
56
57
  'ohif_slice_order': 'str',
57
58
  'ohif_v3': 'bool',
58
59
  'ohif_v3_beta': 'bool',
60
+ 'ohif_v3_datasource': 'str',
61
+ 'ohif_v3_default_app': 'bool',
62
+ 'ohif_v3_readonly': 'bool',
59
63
  'open_tracing': 'bool',
60
64
  'project_export': 'bool',
61
65
  'project_import': 'bool',
66
+ 'project_list_uses_stats': 'bool',
62
67
  'project_locking': 'bool',
63
68
  'reader_tasks': 'bool',
64
69
  'rts_sync': 'bool',
@@ -75,14 +80,11 @@ class Features(object):
75
80
  'userpilot': 'bool',
76
81
  'validate_classification': 'bool',
77
82
  'virus_scan': 'bool',
78
- 'api_enabled_gear_rules': 'bool',
79
- 'project_list_uses_stats': 'bool',
80
- 'ohif_v3_datasource': 'str',
81
- 'ohif_v3_readonly': 'bool',
82
83
  'web_uploader_v2': 'bool'
83
84
  }
84
85
 
85
86
  attribute_map = {
87
+ 'api_enabled_gear_rules': 'api_enabled_gear_rules',
86
88
  'auth0': 'auth0',
87
89
  'audit_trail': 'audit_trail',
88
90
  'azureml_integration': 'azureml_integration',
@@ -118,9 +120,13 @@ class Features(object):
118
120
  'ohif_slice_order': 'ohif_slice_order',
119
121
  'ohif_v3': 'ohif_v3',
120
122
  'ohif_v3_beta': 'ohif_v3_beta',
123
+ 'ohif_v3_datasource': 'ohif_v3_datasource',
124
+ 'ohif_v3_default_app': 'ohif_v3_default_app',
125
+ 'ohif_v3_readonly': 'ohif_v3_readonly',
121
126
  'open_tracing': 'open_tracing',
122
127
  'project_export': 'project_export',
123
128
  'project_import': 'project_import',
129
+ 'project_list_uses_stats': 'project_list_uses_stats',
124
130
  'project_locking': 'project_locking',
125
131
  'reader_tasks': 'reader_tasks',
126
132
  'rts_sync': 'rts_sync',
@@ -137,14 +143,11 @@ class Features(object):
137
143
  'userpilot': 'userpilot',
138
144
  'validate_classification': 'validate_classification',
139
145
  'virus_scan': 'virus_scan',
140
- 'api_enabled_gear_rules': 'api_enabled_gear_rules',
141
- 'project_list_uses_stats': 'project_list_uses_stats',
142
- 'ohif_v3_datasource': 'ohif_v3_datasource',
143
- 'ohif_v3_readonly': 'ohif_v3_readonly',
144
146
  'web_uploader_v2': 'web_uploader_v2'
145
147
  }
146
148
 
147
149
  rattribute_map = {
150
+ 'api_enabled_gear_rules': 'api_enabled_gear_rules',
148
151
  'auth0': 'auth0',
149
152
  'audit_trail': 'audit_trail',
150
153
  'azureml_integration': 'azureml_integration',
@@ -180,9 +183,13 @@ class Features(object):
180
183
  'ohif_slice_order': 'ohif_slice_order',
181
184
  'ohif_v3': 'ohif_v3',
182
185
  'ohif_v3_beta': 'ohif_v3_beta',
186
+ 'ohif_v3_datasource': 'ohif_v3_datasource',
187
+ 'ohif_v3_default_app': 'ohif_v3_default_app',
188
+ 'ohif_v3_readonly': 'ohif_v3_readonly',
183
189
  'open_tracing': 'open_tracing',
184
190
  'project_export': 'project_export',
185
191
  'project_import': 'project_import',
192
+ 'project_list_uses_stats': 'project_list_uses_stats',
186
193
  'project_locking': 'project_locking',
187
194
  'reader_tasks': 'reader_tasks',
188
195
  'rts_sync': 'rts_sync',
@@ -199,17 +206,14 @@ class Features(object):
199
206
  'userpilot': 'userpilot',
200
207
  'validate_classification': 'validate_classification',
201
208
  'virus_scan': 'virus_scan',
202
- 'api_enabled_gear_rules': 'api_enabled_gear_rules',
203
- 'project_list_uses_stats': 'project_list_uses_stats',
204
- 'ohif_v3_datasource': 'ohif_v3_datasource',
205
- 'ohif_v3_readonly': 'ohif_v3_readonly',
206
209
  'web_uploader_v2': 'web_uploader_v2'
207
210
  }
208
211
 
209
- def __init__(self, auth0=None, audit_trail=False, azureml_integration=False, cold_job_logs=False, collections=False, copy_by_reference=True, core_api=True, crawler=False, data_views_non_21_cfr=True, default_viewer_apps=True, deid_log=False, deid_profile=False, dicom_web_uploader_non_21_cfr=True, dimse=False, elastic_search_primary=False, exchange=False, exchange_admin=False, external_routing=False, gear_access=False, google_analytics=True, healthcare_api=False, job_ask=True, job_prioritization=True, job_tickets=True, jupyter_integration=False, ldap_sync=False, multifactor_auth=False, multipart_signed_url=True, multiproject=False, ohif_multi_subject_view=False, ohif_react=False, ohif_react_beta=False, ohif_slice_order=None, ohif_v3=False, ohif_v3_beta=False, open_tracing=False, project_export=True, project_import=False, project_locking=False, reader_tasks=False, rts_sync=False, sentry_logging=None, session_templates_non_21_cfr=True, shared_projects=False, signed_url=False, study_task_status=False, tagging=False, tags_in_lists=True, task_manager_data_views=True, unsafe_login=False, url_access_apps=False, userpilot=None, validate_classification=False, virus_scan=False, api_enabled_gear_rules=True, project_list_uses_stats=False, ohif_v3_datasource=None, ohif_v3_readonly=False, web_uploader_v2=False): # noqa: E501
212
+ def __init__(self, api_enabled_gear_rules=True, auth0=None, audit_trail=False, azureml_integration=False, cold_job_logs=False, collections=False, copy_by_reference=True, core_api=True, crawler=False, data_views_non_21_cfr=True, default_viewer_apps=True, deid_log=False, deid_profile=False, dicom_web_uploader_non_21_cfr=True, dimse=False, elastic_search_primary=False, exchange=False, exchange_admin=False, external_routing=False, gear_access=False, google_analytics=True, healthcare_api=False, job_ask=True, job_prioritization=True, job_tickets=True, jupyter_integration=False, ldap_sync=False, multifactor_auth=False, multipart_signed_url=True, multiproject=False, ohif_multi_subject_view=False, ohif_react=False, ohif_react_beta=False, ohif_slice_order=None, ohif_v3=False, ohif_v3_beta=False, ohif_v3_datasource=None, ohif_v3_default_app=False, ohif_v3_readonly=True, open_tracing=False, project_export=True, project_import=False, project_list_uses_stats=False, project_locking=False, reader_tasks=False, rts_sync=False, sentry_logging=None, session_templates_non_21_cfr=True, shared_projects=False, signed_url=False, study_task_status=False, tagging=False, tags_in_lists=True, task_manager_data_views=True, unsafe_login=False, url_access_apps=False, userpilot=None, validate_classification=False, virus_scan=False, web_uploader_v2=False): # noqa: E501
210
213
  """Features - a model defined in Swagger"""
211
214
  super(Features, self).__init__()
212
215
 
216
+ self._api_enabled_gear_rules = None
213
217
  self._auth0 = None
214
218
  self._audit_trail = None
215
219
  self._azureml_integration = None
@@ -245,9 +249,13 @@ class Features(object):
245
249
  self._ohif_slice_order = None
246
250
  self._ohif_v3 = None
247
251
  self._ohif_v3_beta = None
252
+ self._ohif_v3_datasource = None
253
+ self._ohif_v3_default_app = None
254
+ self._ohif_v3_readonly = None
248
255
  self._open_tracing = None
249
256
  self._project_export = None
250
257
  self._project_import = None
258
+ self._project_list_uses_stats = None
251
259
  self._project_locking = None
252
260
  self._reader_tasks = None
253
261
  self._rts_sync = None
@@ -264,14 +272,12 @@ class Features(object):
264
272
  self._userpilot = None
265
273
  self._validate_classification = None
266
274
  self._virus_scan = None
267
- self._api_enabled_gear_rules = None
268
- self._project_list_uses_stats = None
269
- self._ohif_v3_datasource = None
270
- self._ohif_v3_readonly = None
271
275
  self._web_uploader_v2 = None
272
276
  self.discriminator = None
273
277
  self.alt_discriminator = None
274
278
 
279
+ if api_enabled_gear_rules is not None:
280
+ self.api_enabled_gear_rules = api_enabled_gear_rules
275
281
  if auth0 is not None:
276
282
  self.auth0 = auth0
277
283
  if audit_trail is not None:
@@ -342,12 +348,20 @@ class Features(object):
342
348
  self.ohif_v3 = ohif_v3
343
349
  if ohif_v3_beta is not None:
344
350
  self.ohif_v3_beta = ohif_v3_beta
351
+ if ohif_v3_datasource is not None:
352
+ self.ohif_v3_datasource = ohif_v3_datasource
353
+ if ohif_v3_default_app is not None:
354
+ self.ohif_v3_default_app = ohif_v3_default_app
355
+ if ohif_v3_readonly is not None:
356
+ self.ohif_v3_readonly = ohif_v3_readonly
345
357
  if open_tracing is not None:
346
358
  self.open_tracing = open_tracing
347
359
  if project_export is not None:
348
360
  self.project_export = project_export
349
361
  if project_import is not None:
350
362
  self.project_import = project_import
363
+ if project_list_uses_stats is not None:
364
+ self.project_list_uses_stats = project_list_uses_stats
351
365
  if project_locking is not None:
352
366
  self.project_locking = project_locking
353
367
  if reader_tasks is not None:
@@ -380,17 +394,30 @@ class Features(object):
380
394
  self.validate_classification = validate_classification
381
395
  if virus_scan is not None:
382
396
  self.virus_scan = virus_scan
383
- if api_enabled_gear_rules is not None:
384
- self.api_enabled_gear_rules = api_enabled_gear_rules
385
- if project_list_uses_stats is not None:
386
- self.project_list_uses_stats = project_list_uses_stats
387
- if ohif_v3_datasource is not None:
388
- self.ohif_v3_datasource = ohif_v3_datasource
389
- if ohif_v3_readonly is not None:
390
- self.ohif_v3_readonly = ohif_v3_readonly
391
397
  if web_uploader_v2 is not None:
392
398
  self.web_uploader_v2 = web_uploader_v2
393
399
 
400
+ @property
401
+ def api_enabled_gear_rules(self):
402
+ """Gets the api_enabled_gear_rules of this Features.
403
+
404
+
405
+ :return: The api_enabled_gear_rules of this Features.
406
+ :rtype: bool
407
+ """
408
+ return self._api_enabled_gear_rules
409
+
410
+ @api_enabled_gear_rules.setter
411
+ def api_enabled_gear_rules(self, api_enabled_gear_rules):
412
+ """Sets the api_enabled_gear_rules of this Features.
413
+
414
+
415
+ :param api_enabled_gear_rules: The api_enabled_gear_rules of this Features. # noqa: E501
416
+ :type: bool
417
+ """
418
+
419
+ self._api_enabled_gear_rules = api_enabled_gear_rules
420
+
394
421
  @property
395
422
  def auth0(self):
396
423
  """Gets the auth0 of this Features.
@@ -1126,6 +1153,69 @@ class Features(object):
1126
1153
 
1127
1154
  self._ohif_v3_beta = ohif_v3_beta
1128
1155
 
1156
+ @property
1157
+ def ohif_v3_datasource(self):
1158
+ """Gets the ohif_v3_datasource of this Features.
1159
+
1160
+
1161
+ :return: The ohif_v3_datasource of this Features.
1162
+ :rtype: str
1163
+ """
1164
+ return self._ohif_v3_datasource
1165
+
1166
+ @ohif_v3_datasource.setter
1167
+ def ohif_v3_datasource(self, ohif_v3_datasource):
1168
+ """Sets the ohif_v3_datasource of this Features.
1169
+
1170
+
1171
+ :param ohif_v3_datasource: The ohif_v3_datasource of this Features. # noqa: E501
1172
+ :type: str
1173
+ """
1174
+
1175
+ self._ohif_v3_datasource = ohif_v3_datasource
1176
+
1177
+ @property
1178
+ def ohif_v3_default_app(self):
1179
+ """Gets the ohif_v3_default_app of this Features.
1180
+
1181
+
1182
+ :return: The ohif_v3_default_app of this Features.
1183
+ :rtype: bool
1184
+ """
1185
+ return self._ohif_v3_default_app
1186
+
1187
+ @ohif_v3_default_app.setter
1188
+ def ohif_v3_default_app(self, ohif_v3_default_app):
1189
+ """Sets the ohif_v3_default_app of this Features.
1190
+
1191
+
1192
+ :param ohif_v3_default_app: The ohif_v3_default_app of this Features. # noqa: E501
1193
+ :type: bool
1194
+ """
1195
+
1196
+ self._ohif_v3_default_app = ohif_v3_default_app
1197
+
1198
+ @property
1199
+ def ohif_v3_readonly(self):
1200
+ """Gets the ohif_v3_readonly of this Features.
1201
+
1202
+
1203
+ :return: The ohif_v3_readonly of this Features.
1204
+ :rtype: bool
1205
+ """
1206
+ return self._ohif_v3_readonly
1207
+
1208
+ @ohif_v3_readonly.setter
1209
+ def ohif_v3_readonly(self, ohif_v3_readonly):
1210
+ """Sets the ohif_v3_readonly of this Features.
1211
+
1212
+
1213
+ :param ohif_v3_readonly: The ohif_v3_readonly of this Features. # noqa: E501
1214
+ :type: bool
1215
+ """
1216
+
1217
+ self._ohif_v3_readonly = ohif_v3_readonly
1218
+
1129
1219
  @property
1130
1220
  def open_tracing(self):
1131
1221
  """Gets the open_tracing of this Features.
@@ -1189,6 +1279,27 @@ class Features(object):
1189
1279
 
1190
1280
  self._project_import = project_import
1191
1281
 
1282
+ @property
1283
+ def project_list_uses_stats(self):
1284
+ """Gets the project_list_uses_stats of this Features.
1285
+
1286
+
1287
+ :return: The project_list_uses_stats of this Features.
1288
+ :rtype: bool
1289
+ """
1290
+ return self._project_list_uses_stats
1291
+
1292
+ @project_list_uses_stats.setter
1293
+ def project_list_uses_stats(self, project_list_uses_stats):
1294
+ """Sets the project_list_uses_stats of this Features.
1295
+
1296
+
1297
+ :param project_list_uses_stats: The project_list_uses_stats of this Features. # noqa: E501
1298
+ :type: bool
1299
+ """
1300
+
1301
+ self._project_list_uses_stats = project_list_uses_stats
1302
+
1192
1303
  @property
1193
1304
  def project_locking(self):
1194
1305
  """Gets the project_locking of this Features.
@@ -1525,90 +1636,6 @@ class Features(object):
1525
1636
 
1526
1637
  self._virus_scan = virus_scan
1527
1638
 
1528
- @property
1529
- def api_enabled_gear_rules(self):
1530
- """Gets the api_enabled_gear_rules of this Features.
1531
-
1532
-
1533
- :return: The api_enabled_gear_rules of this Features.
1534
- :rtype: bool
1535
- """
1536
- return self._api_enabled_gear_rules
1537
-
1538
- @api_enabled_gear_rules.setter
1539
- def api_enabled_gear_rules(self, api_enabled_gear_rules):
1540
- """Sets the api_enabled_gear_rules of this Features.
1541
-
1542
-
1543
- :param api_enabled_gear_rules: The api_enabled_gear_rules of this Features. # noqa: E501
1544
- :type: bool
1545
- """
1546
-
1547
- self._api_enabled_gear_rules = api_enabled_gear_rules
1548
-
1549
- @property
1550
- def project_list_uses_stats(self):
1551
- """Gets the project_list_uses_stats of this Features.
1552
-
1553
-
1554
- :return: The project_list_uses_stats of this Features.
1555
- :rtype: bool
1556
- """
1557
- return self._project_list_uses_stats
1558
-
1559
- @project_list_uses_stats.setter
1560
- def project_list_uses_stats(self, project_list_uses_stats):
1561
- """Sets the project_list_uses_stats of this Features.
1562
-
1563
-
1564
- :param project_list_uses_stats: The project_list_uses_stats of this Features. # noqa: E501
1565
- :type: bool
1566
- """
1567
-
1568
- self._project_list_uses_stats = project_list_uses_stats
1569
-
1570
- @property
1571
- def ohif_v3_datasource(self):
1572
- """Gets the ohif_v3_datasource of this Features.
1573
-
1574
-
1575
- :return: The ohif_v3_datasource of this Features.
1576
- :rtype: str
1577
- """
1578
- return self._ohif_v3_datasource
1579
-
1580
- @ohif_v3_datasource.setter
1581
- def ohif_v3_datasource(self, ohif_v3_datasource):
1582
- """Sets the ohif_v3_datasource of this Features.
1583
-
1584
-
1585
- :param ohif_v3_datasource: The ohif_v3_datasource of this Features. # noqa: E501
1586
- :type: str
1587
- """
1588
-
1589
- self._ohif_v3_datasource = ohif_v3_datasource
1590
-
1591
- @property
1592
- def ohif_v3_readonly(self):
1593
- """Gets the ohif_v3_readonly of this Features.
1594
-
1595
-
1596
- :return: The ohif_v3_readonly of this Features.
1597
- :rtype: bool
1598
- """
1599
- return self._ohif_v3_readonly
1600
-
1601
- @ohif_v3_readonly.setter
1602
- def ohif_v3_readonly(self, ohif_v3_readonly):
1603
- """Sets the ohif_v3_readonly of this Features.
1604
-
1605
-
1606
- :param ohif_v3_readonly: The ohif_v3_readonly of this Features. # noqa: E501
1607
- :type: bool
1608
- """
1609
-
1610
- self._ohif_v3_readonly = ohif_v3_readonly
1611
-
1612
1639
  @property
1613
1640
  def web_uploader_v2(self):
1614
1641
  """Gets the web_uploader_v2 of this Features.
@@ -20,6 +20,7 @@ import six
20
20
 
21
21
  from flywheel.models.avatars import Avatars # noqa: F401,E501
22
22
  from flywheel.models.azure_ml_account import AzureMLAccount # noqa: F401,E501
23
+ from flywheel.models.multifactor_account import MultifactorAccount # noqa: F401,E501
23
24
  from flywheel.models.role_type import RoleType # noqa: F401,E501
24
25
  from flywheel.models.user_preferences import UserPreferences # noqa: F401,E501
25
26
 
@@ -36,6 +37,7 @@ class ModifyUserInput(object):
36
37
  'preferences': 'UserPreferences',
37
38
  'root': 'bool',
38
39
  'password': 'str',
40
+ 'multifactor': 'MultifactorAccount',
39
41
  'central_revision': 'int',
40
42
  'azureml_account': 'AzureMLAccount'
41
43
  }
@@ -51,6 +53,7 @@ class ModifyUserInput(object):
51
53
  'preferences': 'preferences',
52
54
  'root': 'root',
53
55
  'password': 'password',
56
+ 'multifactor': 'multifactor',
54
57
  'central_revision': 'central_revision',
55
58
  'azureml_account': 'azureml_account'
56
59
  }
@@ -66,11 +69,12 @@ class ModifyUserInput(object):
66
69
  'preferences': 'preferences',
67
70
  'root': 'root',
68
71
  'password': 'password',
72
+ 'multifactor': 'multifactor',
69
73
  'central_revision': 'central_revision',
70
74
  'azureml_account': 'azureml_account'
71
75
  }
72
76
 
73
- def __init__(self, firstname=None, lastname=None, email=None, avatars=None, avatar=None, roles=None, disabled=None, preferences=None, root=None, password=None, central_revision=None, azureml_account=None): # noqa: E501
77
+ def __init__(self, firstname=None, lastname=None, email=None, avatars=None, avatar=None, roles=None, disabled=None, preferences=None, root=None, password=None, multifactor=None, central_revision=None, azureml_account=None): # noqa: E501
74
78
  """ModifyUserInput - a model defined in Swagger"""
75
79
  super(ModifyUserInput, self).__init__()
76
80
 
@@ -84,6 +88,7 @@ class ModifyUserInput(object):
84
88
  self._preferences = None
85
89
  self._root = None
86
90
  self._password = None
91
+ self._multifactor = None
87
92
  self._central_revision = None
88
93
  self._azureml_account = None
89
94
  self.discriminator = None
@@ -109,6 +114,8 @@ class ModifyUserInput(object):
109
114
  self.root = root
110
115
  if password is not None:
111
116
  self.password = password
117
+ if multifactor is not None:
118
+ self.multifactor = multifactor
112
119
  if central_revision is not None:
113
120
  self.central_revision = central_revision
114
121
  if azureml_account is not None:
@@ -324,6 +331,27 @@ class ModifyUserInput(object):
324
331
 
325
332
  self._password = password
326
333
 
334
+ @property
335
+ def multifactor(self):
336
+ """Gets the multifactor of this ModifyUserInput.
337
+
338
+
339
+ :return: The multifactor of this ModifyUserInput.
340
+ :rtype: MultifactorAccount
341
+ """
342
+ return self._multifactor
343
+
344
+ @multifactor.setter
345
+ def multifactor(self, multifactor):
346
+ """Sets the multifactor of this ModifyUserInput.
347
+
348
+
349
+ :param multifactor: The multifactor of this ModifyUserInput. # noqa: E501
350
+ :type: MultifactorAccount
351
+ """
352
+
353
+ self._multifactor = multifactor
354
+
327
355
  @property
328
356
  def central_revision(self):
329
357
  """Gets the central_revision of this ModifyUserInput.
@@ -0,0 +1,216 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Flywheel
5
+
6
+ No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
7
+
8
+ OpenAPI spec version: 0.0.1
9
+
10
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
11
+ """
12
+
13
+
14
+ ## NOTE: This file is auto generated by the swagger code generator program.
15
+ ## Do not edit the file manually.
16
+
17
+ import pprint
18
+ import re # noqa: F401
19
+ import six
20
+
21
+ class MultifactorAccount(object):
22
+
23
+ swagger_types = {
24
+ 'authy_id': 'str',
25
+ 'preferred_channel': 'Channel',
26
+ 'verified': 'bool'
27
+ }
28
+
29
+ attribute_map = {
30
+ 'authy_id': 'authy_id',
31
+ 'preferred_channel': 'preferred_channel',
32
+ 'verified': 'verified'
33
+ }
34
+
35
+ rattribute_map = {
36
+ 'authy_id': 'authy_id',
37
+ 'preferred_channel': 'preferred_channel',
38
+ 'verified': 'verified'
39
+ }
40
+
41
+ def __init__(self, authy_id=None, preferred_channel=None, verified=False): # noqa: E501
42
+ """MultifactorAccount - a model defined in Swagger"""
43
+ super(MultifactorAccount, self).__init__()
44
+
45
+ self._authy_id = None
46
+ self._preferred_channel = None
47
+ self._verified = None
48
+ self.discriminator = None
49
+ self.alt_discriminator = None
50
+
51
+ self.authy_id = authy_id
52
+ if preferred_channel is not None:
53
+ self.preferred_channel = preferred_channel
54
+ if verified is not None:
55
+ self.verified = verified
56
+
57
+ @property
58
+ def authy_id(self):
59
+ """Gets the authy_id of this MultifactorAccount.
60
+
61
+
62
+ :return: The authy_id of this MultifactorAccount.
63
+ :rtype: str
64
+ """
65
+ return self._authy_id
66
+
67
+ @authy_id.setter
68
+ def authy_id(self, authy_id):
69
+ """Sets the authy_id of this MultifactorAccount.
70
+
71
+
72
+ :param authy_id: The authy_id of this MultifactorAccount. # noqa: E501
73
+ :type: str
74
+ """
75
+
76
+ self._authy_id = authy_id
77
+
78
+ @property
79
+ def preferred_channel(self):
80
+ """Gets the preferred_channel of this MultifactorAccount.
81
+
82
+
83
+ :return: The preferred_channel of this MultifactorAccount.
84
+ :rtype: Channel
85
+ """
86
+ return self._preferred_channel
87
+
88
+ @preferred_channel.setter
89
+ def preferred_channel(self, preferred_channel):
90
+ """Sets the preferred_channel of this MultifactorAccount.
91
+
92
+
93
+ :param preferred_channel: The preferred_channel of this MultifactorAccount. # noqa: E501
94
+ :type: Channel
95
+ """
96
+
97
+ self._preferred_channel = preferred_channel
98
+
99
+ @property
100
+ def verified(self):
101
+ """Gets the verified of this MultifactorAccount.
102
+
103
+
104
+ :return: The verified of this MultifactorAccount.
105
+ :rtype: bool
106
+ """
107
+ return self._verified
108
+
109
+ @verified.setter
110
+ def verified(self, verified):
111
+ """Sets the verified of this MultifactorAccount.
112
+
113
+
114
+ :param verified: The verified of this MultifactorAccount. # noqa: E501
115
+ :type: bool
116
+ """
117
+
118
+ self._verified = verified
119
+
120
+
121
+ @staticmethod
122
+ def positional_to_model(value):
123
+ """Converts a positional argument to a model value"""
124
+ return value
125
+
126
+ def return_value(self):
127
+ """Unwraps return value from model"""
128
+ return self
129
+
130
+ def to_dict(self):
131
+ """Returns the model properties as a dict"""
132
+ result = {}
133
+
134
+ for attr, _ in six.iteritems(self.swagger_types):
135
+ value = getattr(self, attr)
136
+ if isinstance(value, list):
137
+ result[attr] = list(map(
138
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
139
+ value
140
+ ))
141
+ elif hasattr(value, "to_dict"):
142
+ result[attr] = value.to_dict()
143
+ elif isinstance(value, dict):
144
+ result[attr] = dict(map(
145
+ lambda item: (item[0], item[1].to_dict())
146
+ if hasattr(item[1], "to_dict") else item,
147
+ value.items()
148
+ ))
149
+ else:
150
+ result[attr] = value
151
+
152
+ return result
153
+
154
+ def to_str(self):
155
+ """Returns the string representation of the model"""
156
+ return pprint.pformat(self.to_dict())
157
+
158
+ def __repr__(self):
159
+ """For `print` and `pprint`"""
160
+ return self.to_str()
161
+
162
+ def __eq__(self, other):
163
+ """Returns true if both objects are equal"""
164
+ if not isinstance(other, MultifactorAccount):
165
+ return False
166
+
167
+ return self.__dict__ == other.__dict__
168
+
169
+ def __ne__(self, other):
170
+ """Returns true if both objects are not equal"""
171
+ return not self == other
172
+
173
+ # Container emulation
174
+ def __getitem__(self, key):
175
+ """Returns the value of key"""
176
+ key = self._map_key(key)
177
+ return getattr(self, key)
178
+
179
+ def __setitem__(self, key, value):
180
+ """Sets the value of key"""
181
+ key = self._map_key(key)
182
+ setattr(self, key, value)
183
+
184
+ def __contains__(self, key):
185
+ """Checks if the given value is a key in this object"""
186
+ key = self._map_key(key, raise_on_error=False)
187
+ return key is not None
188
+
189
+ def keys(self):
190
+ """Returns the list of json properties in the object"""
191
+ return self.__class__.rattribute_map.keys()
192
+
193
+ def values(self):
194
+ """Returns the list of values in the object"""
195
+ for key in self.__class__.attribute_map.keys():
196
+ yield getattr(self, key)
197
+
198
+ def items(self):
199
+ """Returns the list of json property to value mapping"""
200
+ for key, prop in self.__class__.rattribute_map.items():
201
+ yield key, getattr(self, prop)
202
+
203
+ def get(self, key, default=None):
204
+ """Get the value of the provided json property, or default"""
205
+ key = self._map_key(key, raise_on_error=False)
206
+ if key:
207
+ return getattr(self, key, default)
208
+ return default
209
+
210
+ def _map_key(self, key, raise_on_error=True):
211
+ result = self.__class__.rattribute_map.get(key)
212
+ if result is None:
213
+ if raise_on_error:
214
+ raise AttributeError('Invalid attribute name: {}'.format(key))
215
+ return None
216
+ return '_' + result
@@ -25,6 +25,7 @@ class SignedUrlUploadOutput(object):
25
25
  'uuid': 'str',
26
26
  'upload_urls': 'list[str]',
27
27
  'upload_headers': 'dict(str, str)',
28
+ 'block_ids': 'list[str]',
28
29
  's3_multipart_upload_id': 'str',
29
30
  'az_multipart_upload_id': 'str',
30
31
  'note': 'str'
@@ -35,6 +36,7 @@ class SignedUrlUploadOutput(object):
35
36
  'uuid': 'uuid',
36
37
  'upload_urls': 'upload_urls',
37
38
  'upload_headers': 'upload_headers',
39
+ 'block_ids': 'block_ids',
38
40
  's3_multipart_upload_id': 's3_multipart_upload_id',
39
41
  'az_multipart_upload_id': 'az_multipart_upload_id',
40
42
  'note': 'note'
@@ -45,12 +47,13 @@ class SignedUrlUploadOutput(object):
45
47
  'uuid': 'uuid',
46
48
  'upload_urls': 'upload_urls',
47
49
  'upload_headers': 'upload_headers',
50
+ 'block_ids': 'block_ids',
48
51
  's3_multipart_upload_id': 's3_multipart_upload_id',
49
52
  'az_multipart_upload_id': 'az_multipart_upload_id',
50
53
  'note': 'note'
51
54
  }
52
55
 
53
- def __init__(self, provider_id=None, uuid=None, upload_urls=None, upload_headers=None, s3_multipart_upload_id=None, az_multipart_upload_id=None, note=None): # noqa: E501
56
+ def __init__(self, provider_id=None, uuid=None, upload_urls=None, upload_headers=None, block_ids=None, s3_multipart_upload_id=None, az_multipart_upload_id=None, note=None): # noqa: E501
54
57
  """SignedUrlUploadOutput - a model defined in Swagger"""
55
58
  super(SignedUrlUploadOutput, self).__init__()
56
59
 
@@ -58,6 +61,7 @@ class SignedUrlUploadOutput(object):
58
61
  self._uuid = None
59
62
  self._upload_urls = None
60
63
  self._upload_headers = None
64
+ self._block_ids = None
61
65
  self._s3_multipart_upload_id = None
62
66
  self._az_multipart_upload_id = None
63
67
  self._note = None
@@ -68,6 +72,8 @@ class SignedUrlUploadOutput(object):
68
72
  self.uuid = uuid
69
73
  self.upload_urls = upload_urls
70
74
  self.upload_headers = upload_headers
75
+ if block_ids is not None:
76
+ self.block_ids = block_ids
71
77
  if s3_multipart_upload_id is not None:
72
78
  self.s3_multipart_upload_id = s3_multipart_upload_id
73
79
  if az_multipart_upload_id is not None:
@@ -159,6 +165,27 @@ class SignedUrlUploadOutput(object):
159
165
 
160
166
  self._upload_headers = upload_headers
161
167
 
168
+ @property
169
+ def block_ids(self):
170
+ """Gets the block_ids of this SignedUrlUploadOutput.
171
+
172
+
173
+ :return: The block_ids of this SignedUrlUploadOutput.
174
+ :rtype: list[str]
175
+ """
176
+ return self._block_ids
177
+
178
+ @block_ids.setter
179
+ def block_ids(self, block_ids):
180
+ """Sets the block_ids of this SignedUrlUploadOutput.
181
+
182
+
183
+ :param block_ids: The block_ids of this SignedUrlUploadOutput. # noqa: E501
184
+ :type: list[str]
185
+ """
186
+
187
+ self._block_ids = block_ids
188
+
162
189
  @property
163
190
  def s3_multipart_upload_id(self):
164
191
  """Gets the s3_multipart_upload_id of this SignedUrlUploadOutput.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: flywheel-sdk
3
- Version: 18.1.0rc0
3
+ Version: 18.1.1
4
4
  Summary: Flywheel SDK
5
5
  Home-page:
6
6
  Author-email: support@flywheel.io
@@ -1,11 +1,11 @@
1
- flywheel/__init__.py,sha256=flb86BMJ8WX2QdjxC7E5PO9YpA-m74i8LQg2qRnWY0c,44625
2
- flywheel/api_client.py,sha256=71RFaMSibqdsF_RNKc6ko2ago9ClwkXtzsvD_eQonrQ,28077
1
+ flywheel/__init__.py,sha256=5LblP56oAJjDYGR5Pii8-8b-433jIC99ArzFC4ZHWaY,44736
2
+ flywheel/api_client.py,sha256=6JL9_hB8EPUYgc4-JOyt4LUHtTPVQkWRWzAYYFXWQ5A,28073
3
3
  flywheel/client.py,sha256=8dmeiik2zjfrM3ZDN6PDsmtC4WUy-STWkkD75NBIRo0,10472
4
- flywheel/configuration.py,sha256=LeHQBFB9BnR12XNHh8Avf4H9vWHG_jFDTJSc5tAn9S0,8642
4
+ flywheel/configuration.py,sha256=wGNlsj7QfkiSyMPQ3mLfYHpZSAJvuksdkyaM3XbTgfE,8638
5
5
  flywheel/drone_login.py,sha256=8nELIBYBJMuPHQ0zdrGjWB20C3OTZbxpFVyxWmQ0kr0,2229
6
6
  flywheel/file_spec.py,sha256=5vWBzK8h_YCbwZhcsWRpD7ByO1iw-Zcw-_7B3E5OTEg,1375
7
7
  flywheel/finder.py,sha256=ueECCweO48TTAJXudzh3xBbqyhV-Vbzt1NnPUSqEU9U,6739
8
- flywheel/flywheel.py,sha256=xyp35Yho6MtZ0k3d6tVrQJi9ChzlYifixlGVkwOs6_E,391556
8
+ flywheel/flywheel.py,sha256=vyPTmlh37CikZICWtx5r8scFx9lIka888KTVfMADAJ8,391552
9
9
  flywheel/gear_context.py,sha256=oVLQ3jk9OVq5Ew7jxIrkt_dNBRiLt7eZbFBAy61m37o,13290
10
10
  flywheel/partial_reader.py,sha256=SkMgwaGZeeVaN7f9dzmVitBFnQv8ARLJgEaQP36l92s,1222
11
11
  flywheel/rest.py,sha256=hRPcmGLghBkiZ06jyFEE39iEdP0-6o4pDWj2Ocl7mSc,13119
@@ -46,7 +46,7 @@ flywheel/api/upload_api.py,sha256=13gavk8fw5UNyItg7VnkafHOxInxREReFVNpb1J3IO8,38
46
46
  flywheel/api/users_api.py,sha256=ThTGkL_oE-ixB9akEZEm2pogkYBa_m9qAM52W5ClRC0,82850
47
47
  flywheel/api/views_api.py,sha256=aIyFg-NELtTo9xU3M7DrrFKbb8a6wBgZJHxilWLh9-s,44327
48
48
  flywheel/api/workspaces_api.py,sha256=aKVKcH8cDkSkk7s3Nmc5Zqap0XrWy1ORwPJicNvHZpc,8700
49
- flywheel/models/__init__.py,sha256=sBUxzW199BvG4NxmTgO54vYD6oKcfcCJ6-w64AmSMJo,42490
49
+ flywheel/models/__init__.py,sha256=lP0B3NR3jFfL50Y4KxOPfkBPfIw4pZ9mLDQ5vR4rHTk,42601
50
50
  flywheel/models/access_level.py,sha256=v_ZzTvJfimSzHQixvMszGqlKrsooajItsG7PiECEubw,525
51
51
  flywheel/models/access_permission.py,sha256=-IYmy-yb8zecmGZx7iE0bhZW7PvuWpm3zAHr2FwCyLI,5336
52
52
  flywheel/models/access_permission_output.py,sha256=faCnvyMYozmSVSlLFYMdJw84hQc3ugxx7LH2JzBfnoE,5202
@@ -121,6 +121,7 @@ flywheel/models/change.py,sha256=AsvwVurWlJvoPW9e8ZbHmqn2eZ4SEIaHfMIT3p0a3oY,988
121
121
  flywheel/models/change_log_container_type.py,sha256=GC81PBTB4vm4UFZIQwnUSyv7Zv-xJip1LjJNyrWcjLI,800
122
122
  flywheel/models/change_log_document.py,sha256=yJ-yTl8pLOROCC1t5NrNkl7MKsmYanRe7A0MDsDx4_o,6974
123
123
  flywheel/models/change_method.py,sha256=LcWrlbQZR5YPFamqQB8wtkHt9eg0j8yGA6xLSjz6dJA,594
124
+ flywheel/models/channel.py,sha256=x-GcvhHIIMv9fAsEWlK9SMx5PrfR5Y0J6hvRNhm8-tE,545
124
125
  flywheel/models/classic_batch_job_output.py,sha256=5UgqjarwHQ5hNl075JI__xc0nmn5TG53xEv06zY8Qj4,9134
125
126
  flywheel/models/classic_batch_job_output_inflated_jobs.py,sha256=tXALFo1ulkCO02M2HVG0gY6W8igCfmPFb6nqc7-B_kA,10261
126
127
  flywheel/models/classic_batch_proposal_input.py,sha256=O4W8VPQtTLxkXNRo9uvgtT8W9vrz7EY6qqycOB_bvw8,11718
@@ -185,7 +186,7 @@ flywheel/models/core_models_source_source.py,sha256=BzxpP5UbNbxDzFnnmCmGcxqif0WL
185
186
  flywheel/models/create_report_input.py,sha256=JpkgTHRQA8TK_K1ViU5utiX_XV0YIO1ZekkPlpxTt70,7323
186
187
  flywheel/models/creds.py,sha256=kFhJ7_1zmHzHneoan4XKlJ7iRDIgZKuZFbnjCBQg28o,3876
187
188
  flywheel/models/curator.py,sha256=S1yhs6s-gCj-Zqz0NWrXE873xsBq7Ha4Ym82qWeABDs,5726
188
- flywheel/models/current_user_output.py,sha256=UBZk8KJiAI_WXGOPeEAsDsHJc-SJsHcAu_n3KBKGae0,18568
189
+ flywheel/models/current_user_output.py,sha256=Bv6RU_OYiL7BL5jKsraeVvsevrCwVTE-8rWk_V3lweQ,19446
189
190
  flywheel/models/daily_report_usage.py,sha256=w88M4kG7X9U7ZxgvpVWgDsE6txCzS0qUD_lxncaRguE,15612
190
191
  flywheel/models/data_strategy.py,sha256=MNyCSLbXvUuYwxfsRjzxygn6VGzBTlDCb7b3VbGKtS0,522
191
192
  flywheel/models/data_view.py,sha256=T-6NU0roubb9wpij4MXS33GZkoyAKT1S2IbJE3tFS8Q,541
@@ -239,7 +240,7 @@ flywheel/models/egress_provider_id.py,sha256=1dKUprJXQii7w_sdUr_hB_PebJDkLgZt9yj
239
240
  flywheel/models/exchange_storage.py,sha256=IrAHglvJ_KZaTM8-sOulSkvRE0azk6IUexMFPoxqHsM,6708
240
241
  flywheel/models/executor_info.py,sha256=nbvDWU_yEi_xwpF52y186xEgKkuKSjmBLGOGqmVA_Wg,9216
241
242
  flywheel/models/export_templates.py,sha256=fAW_tPW2tBT1DhuzF4nS7GwSgvqHkFLED--Swl4ndco,5495
242
- flywheel/models/features.py,sha256=QiPKPBq-JAttycgBYM-r7pfdNC6Dh9gsQYbtg_DWESk,50374
243
+ flywheel/models/features.py,sha256=pql-NZZOw15t_VfQVcNBjdx6v4chXN5j1wN4vWlffmc,51264
243
244
  flywheel/models/field_change.py,sha256=cmCk9MsI7vl5DixjWMyTXV2RkAR--b7YI-lbg3w7uRI,7061
244
245
  flywheel/models/field_change_log_document.py,sha256=FD77lYM_58KWntwbePzlcZ_S3RiyfGNYt1hlocyB060,7100
245
246
  flywheel/models/file.py,sha256=JuxWrlkgdt3fFwvfkJKKsBPU1pmRo18fW-QYVn_XT-Y,27877
@@ -440,7 +441,8 @@ flywheel/models/modality_modify.py,sha256=M8hfkMZr4QlelTkdn5dNclboT0PZgX8xfWtnRA
440
441
  flywheel/models/modality_output.py,sha256=1FR4OqLFCoA4XY4JNA7UxQvDf5bym58QtDq5reLxYBM,7348
441
442
  flywheel/models/modified_result.py,sha256=MYqVs34hSB2_JdgWDaThgkVmbx3MKhAEFKnhleJpeXU,5300
442
443
  flywheel/models/modify_report_input.py,sha256=bYbiFCrJHAfIs9--slG5I6v8VvhW5oPGvuLYI_9nBkA,4714
443
- flywheel/models/modify_user_input.py,sha256=hHX2em0PFYBCbfwOP0RGIej2gz6_E8Z175kJExU-ze8,12532
444
+ flywheel/models/modify_user_input.py,sha256=gnfek3azBEObwraJipW--1ahvQImZYSo6QRktICQdiY,13402
445
+ flywheel/models/multifactor_account.py,sha256=YGEp4yS2gr-65OTKZ7Uc8cRiQcay-0Mlzg9KGTayseM,6159
444
446
  flywheel/models/note.py,sha256=9wVVvRZU_6KmDnN8CNqHD12FFQFmWR0avNXiqflUfk8,9714
445
447
  flywheel/models/note_input.py,sha256=PME-p3R2i9SSmsMT_xn3i5TUT5jwVsriKKWoh6KSiYc,4515
446
448
  flywheel/models/open_tracing.py,sha256=EpiPJ0MCXHu3qiZe22Pka_fpGo9c82e42SblXyz4nVY,6831
@@ -624,7 +626,7 @@ flywheel/models/sharing_filter_options.py,sha256=RgY6qVu0CYw5jzyqMRpPJnA7rf_Hytn
624
626
  flywheel/models/signed_fs_upload_output.py,sha256=o4nTuKsnG9MuxPALXmaB4vdop3pOJ3eYXiTCy-KiESo,5226
625
627
  flywheel/models/signed_url_cleanup_input.py,sha256=dOMMcQB29HYAoeaW0jhXUWLgrEVyjO6VA8f3LsxhOLA,5238
626
628
  flywheel/models/signed_url_upload_input.py,sha256=2DJhrafe-QKA3FtE3rkE33Vdec-o6EPogmgdOu1y-i8,5259
627
- flywheel/models/signed_url_upload_output.py,sha256=bma23INj1KSo0CI7uS0STxyU30bjOT-iBQqsSsMUAYo,9417
629
+ flywheel/models/signed_url_upload_output.py,sha256=8VfJ6XQ3Ii5iqzOoZAry0jp7CIyYtmFRjX0PcpTWC7Y,10154
628
630
  flywheel/models/site.py,sha256=e-y4u7IHbGftt9HCZqow6oPNbGWkiE5ZZU7XNTpA3fo,15183
629
631
  flywheel/models/site_report.py,sha256=LgVUgGehg4RyF-g0CDwWxDTMeii5F_J9Dn1dtrWTPB0,5335
630
632
  flywheel/models/site_settings.py,sha256=2eujVpx_tqGc9su7BZcGAkqhBxp2kzgmuHshirowN8Y,9646
@@ -702,8 +704,8 @@ flywheel/models/workspace_response.py,sha256=5CB8xn1v62CzGVAf1OEJ0197yYY3h1GQFho
702
704
  flywheel/models/workspace_update.py,sha256=wvVkuJMWfbpriF6Pz7K985vl58o5uG88qE4LzcLvkfs,526
703
705
  flywheel/models/zipfile_info.py,sha256=8ivqs0rTQaiC8KirTaK_WqSGkLvCndI_58dylOBKwa4,5243
704
706
  flywheel/models/zipfile_member_info.py,sha256=zAg9wRUeYXbz6bvXdo4xYFHtvv9eRSCjvyaTrQ3zvN4,6346
705
- flywheel_sdk-18.1.0rc0.dist-info/LICENSE.txt,sha256=F_Wp8b8L-2vc2xxcRr402gN1gg-2y0p2oG8aSj3hdMA,1057
706
- flywheel_sdk-18.1.0rc0.dist-info/METADATA,sha256=r6QXRxngxrmwm75Z6Ds4RSk42tAw1hUQg0FK9MD--Qg,931
707
- flywheel_sdk-18.1.0rc0.dist-info/WHEEL,sha256=Z-nyYpwrcSqxfdux5Mbn_DQ525iP7J2DG3JgGvOYyTQ,110
708
- flywheel_sdk-18.1.0rc0.dist-info/top_level.txt,sha256=BQ1fXyhiudo2To7zMNcPOOGa6qtZuhx0V_I7CO-vU6w,9
709
- flywheel_sdk-18.1.0rc0.dist-info/RECORD,,
707
+ flywheel_sdk-18.1.1.dist-info/LICENSE.txt,sha256=F_Wp8b8L-2vc2xxcRr402gN1gg-2y0p2oG8aSj3hdMA,1057
708
+ flywheel_sdk-18.1.1.dist-info/METADATA,sha256=0zGfjPlsiaGrGI47Q50oVfnJ0p5ZijKqiWm43b-HZgY,928
709
+ flywheel_sdk-18.1.1.dist-info/WHEEL,sha256=Z-nyYpwrcSqxfdux5Mbn_DQ525iP7J2DG3JgGvOYyTQ,110
710
+ flywheel_sdk-18.1.1.dist-info/top_level.txt,sha256=BQ1fXyhiudo2To7zMNcPOOGa6qtZuhx0V_I7CO-vU6w,9
711
+ flywheel_sdk-18.1.1.dist-info/RECORD,,