flywheel-sdk 20.0.0__py2.py3-none-any.whl → 20.1.0rc0__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
@@ -224,6 +224,7 @@ from flywheel.models.data_view_save_data_view_input import DataViewSaveDataViewI
224
224
  from flywheel.models.data_view_zip_filter_spec import DataViewZipFilterSpec
225
225
  from flywheel.models.default_flywheel_role import DefaultFlywheelRole
226
226
  from flywheel.models.deid_log_skip_reason import DeidLogSkipReason
227
+ from flywheel.models.delete_by_search_query import DeleteBySearchQuery
227
228
  from flywheel.models.deleted_file import DeletedFile
228
229
  from flywheel.models.deleted_result import DeletedResult
229
230
  from flywheel.models.deprecated_action import DeprecatedAction
@@ -1576,7 +1576,7 @@ class AcquisitionsApi(object):
1576
1576
  collection_formats=collection_formats)
1577
1577
 
1578
1578
  def delete_acquisitions_by_query(self, body, **kwargs): # noqa: E501
1579
- """Delete multiple acquisitions by query
1579
+ """*DEPRECATED* Delete multiple acquisitions by query
1580
1580
 
1581
1581
  Delete multiple acquisitions by query
1582
1582
  This method makes a synchronous HTTP request by default.
@@ -1603,7 +1603,7 @@ class AcquisitionsApi(object):
1603
1603
 
1604
1604
 
1605
1605
  def delete_acquisitions_by_query_with_http_info(self, body, **kwargs): # noqa: E501
1606
- """Delete multiple acquisitions by query
1606
+ """*DEPRECATED* Delete multiple acquisitions by query
1607
1607
 
1608
1608
  Delete multiple acquisitions by query
1609
1609
  This method makes a synchronous HTTP request by default.
@@ -365,7 +365,7 @@ class AnalysesApi(object):
365
365
  collection_formats=collection_formats)
366
366
 
367
367
  def delete_analyses_by_query(self, body, **kwargs): # noqa: E501
368
- """Delete multiple analyses by query
368
+ """*DEPRECATED* Delete multiple analyses by query
369
369
 
370
370
  Delete multiple analyses by query
371
371
  This method makes a synchronous HTTP request by default.
@@ -392,7 +392,7 @@ class AnalysesApi(object):
392
392
 
393
393
 
394
394
  def delete_analyses_by_query_with_http_info(self, body, **kwargs): # noqa: E501
395
- """Delete multiple analyses by query
395
+ """*DEPRECATED* Delete multiple analyses by query
396
396
 
397
397
  Delete multiple analyses by query
398
398
  This method makes a synchronous HTTP request by default.
@@ -1323,7 +1323,7 @@ class CollectionsApi(object):
1323
1323
  collection_formats=collection_formats)
1324
1324
 
1325
1325
  def delete_collections_by_query(self, body, **kwargs): # noqa: E501
1326
- """Delete multiple collections by query
1326
+ """*DEPRECATED* Delete multiple collections by query
1327
1327
 
1328
1328
  Delete multiple collections by query
1329
1329
  This method makes a synchronous HTTP request by default.
@@ -1350,7 +1350,7 @@ class CollectionsApi(object):
1350
1350
 
1351
1351
 
1352
1352
  def delete_collections_by_query_with_http_info(self, body, **kwargs): # noqa: E501
1353
- """Delete multiple collections by query
1353
+ """*DEPRECATED* Delete multiple collections by query
1354
1354
 
1355
1355
  Delete multiple collections by query
1356
1356
  This method makes a synchronous HTTP request by default.
@@ -30,6 +30,115 @@ class DataexplorerApi(object):
30
30
  api_client = ApiClient()
31
31
  self.api_client = api_client
32
32
 
33
+ def delete_by_search(self, body, **kwargs): # noqa: E501
34
+ """Delete containers by a search query
35
+
36
+ This method makes a synchronous HTTP request by default.
37
+
38
+ :param DeleteBySearchQuery body: (required)
39
+ :param ContainerDeleteReason delete_reason:
40
+ :param bool async_: Perform the request asynchronously
41
+ :return: DeletedResult
42
+ """
43
+ ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
44
+ kwargs['_return_http_data_only'] = True
45
+
46
+ if kwargs.get('async_'):
47
+ return self.delete_by_search_with_http_info(body, **kwargs) # noqa: E501
48
+ else:
49
+ (data) = self.delete_by_search_with_http_info(body, **kwargs) # noqa: E501
50
+ if (
51
+ data
52
+ and hasattr(data, 'return_value')
53
+ and not ignore_simplified_return_value
54
+ ):
55
+ return data.return_value()
56
+ return data
57
+
58
+
59
+ def delete_by_search_with_http_info(self, body, **kwargs): # noqa: E501
60
+ """Delete containers by a search query
61
+
62
+ This method makes a synchronous HTTP request by default.
63
+
64
+ :param DeleteBySearchQuery body: (required)
65
+ :param ContainerDeleteReason delete_reason:
66
+ :param bool async_: Perform the request asynchronously
67
+ :return: DeletedResult
68
+ """
69
+
70
+ all_params = ['body','delete_reason',] # noqa: E501
71
+ all_params.append('async_')
72
+ all_params.append('_return_http_data_only')
73
+ all_params.append('_preload_content')
74
+ all_params.append('_request_timeout')
75
+ all_params.append('_request_out')
76
+
77
+ params = locals()
78
+ for key, val in six.iteritems(params['kwargs']):
79
+ if key not in all_params:
80
+ raise TypeError(
81
+ "Got an unexpected keyword argument '%s'"
82
+ " to method delete_by_search" % key
83
+ )
84
+ params[key] = val
85
+ del params['kwargs']
86
+ # verify the required parameter 'body' is set
87
+ if ('body' not in params or
88
+ params['body'] is None):
89
+ raise ValueError("Missing the required parameter `body` when calling `delete_by_search`") # noqa: E501
90
+
91
+ collection_formats = {}
92
+
93
+ path_params = {}
94
+
95
+ query_params = []
96
+ if 'delete_reason' in params:
97
+ query_params.append(('delete_reason', params['delete_reason'])) # noqa: E501
98
+
99
+ header_params = {}
100
+
101
+ form_params = []
102
+ local_var_files = {}
103
+
104
+ body_params = None
105
+ if 'body' in params:
106
+ if 'DeleteBySearchQuery'.startswith('union'):
107
+ body_type = type(params['body'])
108
+ if getattr(body_type, 'positional_to_model', None):
109
+ body_params = body_type.positional_to_model(params['body'])
110
+ else:
111
+ body_params = params['body']
112
+ else:
113
+ body_params = flywheel.models.DeleteBySearchQuery.positional_to_model(params['body'])
114
+ # HTTP header `Accept`
115
+ header_params['Accept'] = self.api_client.select_header_accept(
116
+ ['application/json']) # noqa: E501
117
+
118
+ # HTTP header `Content-Type`
119
+ header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
120
+ ['application/json']) # noqa: E501
121
+
122
+ # Authentication setting
123
+ auth_settings = ['ApiKey'] # noqa: E501
124
+
125
+ return self.api_client.call_api(
126
+ '/dataexplorer/search', 'DELETE',
127
+ path_params,
128
+ query_params,
129
+ header_params,
130
+ body=body_params,
131
+ post_params=form_params,
132
+ files=local_var_files,
133
+ response_type='DeletedResult', # noqa: E501
134
+ auth_settings=auth_settings,
135
+ async_=params.get('async_'),
136
+ _return_http_data_only=params.get('_return_http_data_only'),
137
+ _preload_content=params.get('_preload_content', True),
138
+ _request_timeout=params.get('_request_timeout'),
139
+ _request_out=params.get('_request_out'),
140
+ collection_formats=collection_formats)
141
+
33
142
  def delete_save_search(self, search_id, **kwargs): # noqa: E501
34
143
  """Delete a saved search
35
144
 
flywheel/api/files_api.py CHANGED
@@ -455,7 +455,7 @@ class FilesApi(object):
455
455
  collection_formats=collection_formats)
456
456
 
457
457
  def delete_files_by_query(self, body, **kwargs): # noqa: E501
458
- """Delete multiple files by query
458
+ """*DEPRECATED* Delete multiple files by query
459
459
 
460
460
  Delete multiple files by query
461
461
  This method makes a synchronous HTTP request by default.
@@ -482,7 +482,7 @@ class FilesApi(object):
482
482
 
483
483
 
484
484
  def delete_files_by_query_with_http_info(self, body, **kwargs): # noqa: E501
485
- """Delete multiple files by query
485
+ """*DEPRECATED* Delete multiple files by query
486
486
 
487
487
  Delete multiple files by query
488
488
  This method makes a synchronous HTTP request by default.
@@ -1344,7 +1344,7 @@ class GroupsApi(object):
1344
1344
  collection_formats=collection_formats)
1345
1345
 
1346
1346
  def delete_groups_by_query(self, body, **kwargs): # noqa: E501
1347
- """Delete multiple groups by query
1347
+ """*DEPRECATED* Delete multiple groups by query
1348
1348
 
1349
1349
  Delete multiple groups by query
1350
1350
  This method makes a synchronous HTTP request by default.
@@ -1371,7 +1371,7 @@ class GroupsApi(object):
1371
1371
 
1372
1372
 
1373
1373
  def delete_groups_by_query_with_http_info(self, body, **kwargs): # noqa: E501
1374
- """Delete multiple groups by query
1374
+ """*DEPRECATED* Delete multiple groups by query
1375
1375
 
1376
1376
  Delete multiple groups by query
1377
1377
  This method makes a synchronous HTTP request by default.
@@ -2037,7 +2037,7 @@ class ProjectsApi(object):
2037
2037
  collection_formats=collection_formats)
2038
2038
 
2039
2039
  def delete_projects_by_query(self, body, **kwargs): # noqa: E501
2040
- """Delete multiple projects by query
2040
+ """*DEPRECATED* Delete multiple projects by query
2041
2041
 
2042
2042
  Delete multiple projects by query
2043
2043
  This method makes a synchronous HTTP request by default.
@@ -2064,7 +2064,7 @@ class ProjectsApi(object):
2064
2064
 
2065
2065
 
2066
2066
  def delete_projects_by_query_with_http_info(self, body, **kwargs): # noqa: E501
2067
- """Delete multiple projects by query
2067
+ """*DEPRECATED* Delete multiple projects by query
2068
2068
 
2069
2069
  Delete multiple projects by query
2070
2070
  This method makes a synchronous HTTP request by default.
@@ -39,6 +39,7 @@ class ResolveApi(object):
39
39
  :param ResolveInput body: (required)
40
40
  :param bool full_tree:
41
41
  :param bool exhaustive:
42
+ :param bool include_all_info: Include all info in returned objects
42
43
  :param bool async_: Perform the request asynchronously
43
44
  :return: ResolverNode
44
45
  """
@@ -67,11 +68,12 @@ class ResolveApi(object):
67
68
  :param ResolveInput body: (required)
68
69
  :param bool full_tree:
69
70
  :param bool exhaustive:
71
+ :param bool include_all_info: Include all info in returned objects
70
72
  :param bool async_: Perform the request asynchronously
71
73
  :return: ResolverNode
72
74
  """
73
75
 
74
- all_params = ['body','full_tree','exhaustive',] # noqa: E501
76
+ all_params = ['body','full_tree','exhaustive','include_all_info',] # noqa: E501
75
77
  all_params.append('async_')
76
78
  all_params.append('_return_http_data_only')
77
79
  all_params.append('_preload_content')
@@ -101,6 +103,8 @@ class ResolveApi(object):
101
103
  query_params.append(('full_tree', params['full_tree'])) # noqa: E501
102
104
  if 'exhaustive' in params:
103
105
  query_params.append(('exhaustive', params['exhaustive'])) # noqa: E501
106
+ if 'include_all_info' in params:
107
+ query_params.append(('include_all_info', params['include_all_info'])) # noqa: E501
104
108
 
105
109
  header_params = {}
106
110
 
@@ -155,6 +159,7 @@ class ResolveApi(object):
155
159
  :param bool full_tree: Parse full download style paths (e.g. group/PROJECTS/project_label/SUBJECTS/...)
156
160
  :param bool minattr: Return only minimal attributes
157
161
  :param bool exhaustive: Set to return a complete list regardless of permissions
162
+ :param bool include_all_info: Include all info in returned objects
158
163
  :param bool async_: Perform the request asynchronously
159
164
  :return: ResolveOutput
160
165
  """
@@ -184,11 +189,12 @@ class ResolveApi(object):
184
189
  :param bool full_tree: Parse full download style paths (e.g. group/PROJECTS/project_label/SUBJECTS/...)
185
190
  :param bool minattr: Return only minimal attributes
186
191
  :param bool exhaustive: Set to return a complete list regardless of permissions
192
+ :param bool include_all_info: Include all info in returned objects
187
193
  :param bool async_: Perform the request asynchronously
188
194
  :return: ResolveOutput
189
195
  """
190
196
 
191
- all_params = ['body','full_tree','minattr','exhaustive',] # noqa: E501
197
+ all_params = ['body','full_tree','minattr','exhaustive','include_all_info',] # noqa: E501
192
198
  all_params.append('async_')
193
199
  all_params.append('_return_http_data_only')
194
200
  all_params.append('_preload_content')
@@ -220,6 +226,8 @@ class ResolveApi(object):
220
226
  query_params.append(('minattr', params['minattr'])) # noqa: E501
221
227
  if 'exhaustive' in params:
222
228
  query_params.append(('exhaustive', params['exhaustive'])) # noqa: E501
229
+ if 'include_all_info' in params:
230
+ query_params.append(('include_all_info', params['include_all_info'])) # noqa: E501
223
231
 
224
232
  header_params = {}
225
233
 
@@ -1576,7 +1576,7 @@ class SessionsApi(object):
1576
1576
  collection_formats=collection_formats)
1577
1577
 
1578
1578
  def delete_sessions_by_query(self, body, **kwargs): # noqa: E501
1579
- """Delete multiple sessions by query
1579
+ """*DEPRECATED* Delete multiple sessions by query
1580
1580
 
1581
1581
  Delete multiple sessions by query
1582
1582
  This method makes a synchronous HTTP request by default.
@@ -1603,7 +1603,7 @@ class SessionsApi(object):
1603
1603
 
1604
1604
 
1605
1605
  def delete_sessions_by_query_with_http_info(self, body, **kwargs): # noqa: E501
1606
- """Delete multiple sessions by query
1606
+ """*DEPRECATED* Delete multiple sessions by query
1607
1607
 
1608
1608
  Delete multiple sessions by query
1609
1609
  This method makes a synchronous HTTP request by default.
@@ -1683,7 +1683,7 @@ class SubjectsApi(object):
1683
1683
  collection_formats=collection_formats)
1684
1684
 
1685
1685
  def delete_subjects_by_query(self, body, **kwargs): # noqa: E501
1686
- """Delete multiple subjects by query
1686
+ """*DEPRECATED* Delete multiple subjects by query
1687
1687
 
1688
1688
  Delete multiple subjects by query
1689
1689
  This method makes a synchronous HTTP request by default.
@@ -1710,7 +1710,7 @@ class SubjectsApi(object):
1710
1710
 
1711
1711
 
1712
1712
  def delete_subjects_by_query_with_http_info(self, body, **kwargs): # noqa: E501
1713
- """Delete multiple subjects by query
1713
+ """*DEPRECATED* Delete multiple subjects by query
1714
1714
 
1715
1715
  Delete multiple subjects by query
1716
1716
  This method makes a synchronous HTTP request by default.
flywheel/api_client.py CHANGED
@@ -84,7 +84,7 @@ class ApiClient(object):
84
84
  self.default_query_params = []
85
85
  self.cookie = cookie
86
86
  # Set default User-Agent.
87
- self.user_agent = 'Swagger-Codegen/20.0.0/python'
87
+ self.user_agent = 'Swagger-Codegen/20.1.0-rc0/python'
88
88
  self.last_response = None
89
89
  self._version_check_fn = None
90
90
  self._context = context
flywheel/configuration.py CHANGED
@@ -252,6 +252,6 @@ class Configuration(six.with_metaclass(TypeWithDefault, object)):
252
252
  return "Python SDK Debug Report:\n"\
253
253
  "OS: {env}\n"\
254
254
  "Python Version: {pyversion}\n"\
255
- "Version of the API: 20.0.0\n"\
256
- "SDK Package Version: 20.0.0".\
255
+ "Version of the API: 20.1.0-rc0\n"\
256
+ "SDK Package Version: 20.1.0-rc0".\
257
257
  format(env=sys.platform, pyversion=sys.version)
flywheel/flywheel.py CHANGED
@@ -40,7 +40,7 @@ from flywheel.view_builder import ViewBuilder
40
40
  from flywheel.finder import Finder
41
41
  import flywheel.api
42
42
 
43
- SDK_VERSION = "20.0.0"
43
+ SDK_VERSION = "20.1.0-rc0"
44
44
 
45
45
  def config_from_api_key(api_key):
46
46
  parts = api_key.split(':')
@@ -382,7 +382,7 @@ class Flywheel:
382
382
 
383
383
 
384
384
  def delete_acquisitions_by_query(self, body, **kwargs): # noqa: E501
385
- """Delete multiple acquisitions by query
385
+ """*DEPRECATED* Delete multiple acquisitions by query
386
386
 
387
387
  Delete multiple acquisitions by query
388
388
 
@@ -902,7 +902,7 @@ class Flywheel:
902
902
 
903
903
 
904
904
  def delete_analyses_by_query(self, body, **kwargs): # noqa: E501
905
- """Delete multiple analyses by query
905
+ """*DEPRECATED* Delete multiple analyses by query
906
906
 
907
907
  Delete multiple analyses by query
908
908
 
@@ -1582,7 +1582,7 @@ class Flywheel:
1582
1582
 
1583
1583
 
1584
1584
  def delete_collections_by_query(self, body, **kwargs): # noqa: E501
1585
- """Delete multiple collections by query
1585
+ """*DEPRECATED* Delete multiple collections by query
1586
1586
 
1587
1587
  Delete multiple collections by query
1588
1588
 
@@ -2677,6 +2677,17 @@ class Flywheel:
2677
2677
  return self.data_view_executions_api.save_data_view_execution(data_view_execution_id, **kwargs)
2678
2678
 
2679
2679
 
2680
+ def delete_by_search(self, body, **kwargs): # noqa: E501
2681
+ """Delete containers by a search query
2682
+
2683
+ :param DeleteBySearchQuery body: (required)
2684
+ :param ContainerDeleteReason delete_reason:
2685
+ :param bool async_: Perform the request asynchronously
2686
+ :return: DeletedResult
2687
+ """
2688
+ return self.dataexplorer_api.delete_by_search(body, **kwargs)
2689
+
2690
+
2680
2691
  def delete_save_search(self, search_id, **kwargs): # noqa: E501
2681
2692
  """Delete a saved search
2682
2693
 
@@ -3097,7 +3108,7 @@ class Flywheel:
3097
3108
 
3098
3109
 
3099
3110
  def delete_files_by_query(self, body, **kwargs): # noqa: E501
3100
- """Delete multiple files by query
3111
+ """*DEPRECATED* Delete multiple files by query
3101
3112
 
3102
3113
  Delete multiple files by query
3103
3114
 
@@ -3603,7 +3614,7 @@ class Flywheel:
3603
3614
 
3604
3615
 
3605
3616
  def delete_groups_by_query(self, body, **kwargs): # noqa: E501
3606
- """Delete multiple groups by query
3617
+ """*DEPRECATED* Delete multiple groups by query
3607
3618
 
3608
3619
  Delete multiple groups by query
3609
3620
 
@@ -4381,7 +4392,7 @@ class Flywheel:
4381
4392
 
4382
4393
 
4383
4394
  def delete_projects_by_query(self, body, **kwargs): # noqa: E501
4384
- """Delete multiple projects by query
4395
+ """*DEPRECATED* Delete multiple projects by query
4385
4396
 
4386
4397
  Delete multiple projects by query
4387
4398
 
@@ -5285,6 +5296,7 @@ class Flywheel:
5285
5296
  :param ResolveInput body: (required)
5286
5297
  :param bool full_tree:
5287
5298
  :param bool exhaustive:
5299
+ :param bool include_all_info: Include all info in returned objects
5288
5300
  :param bool async_: Perform the request asynchronously
5289
5301
  :return: ResolverNode
5290
5302
  """
@@ -5300,6 +5312,7 @@ class Flywheel:
5300
5312
  :param bool full_tree: Parse full download style paths (e.g. group/PROJECTS/project_label/SUBJECTS/...)
5301
5313
  :param bool minattr: Return only minimal attributes
5302
5314
  :param bool exhaustive: Set to return a complete list regardless of permissions
5315
+ :param bool include_all_info: Include all info in returned objects
5303
5316
  :param bool async_: Perform the request asynchronously
5304
5317
  :return: ResolveOutput
5305
5318
  """
@@ -5553,7 +5566,7 @@ class Flywheel:
5553
5566
 
5554
5567
 
5555
5568
  def delete_sessions_by_query(self, body, **kwargs): # noqa: E501
5556
- """Delete multiple sessions by query
5569
+ """*DEPRECATED* Delete multiple sessions by query
5557
5570
 
5558
5571
  Delete multiple sessions by query
5559
5572
 
@@ -6449,7 +6462,7 @@ class Flywheel:
6449
6462
 
6450
6463
 
6451
6464
  def delete_subjects_by_query(self, body, **kwargs): # noqa: E501
6452
- """Delete multiple subjects by query
6465
+ """*DEPRECATED* Delete multiple subjects by query
6453
6466
 
6454
6467
  Delete multiple subjects by query
6455
6468
 
@@ -6,7 +6,7 @@
6
6
 
7
7
  Flywheel: API for data import, automated curation, image processing, machine learning workflows, and secure collaboration. # noqa: E501
8
8
 
9
- OpenAPI spec version: 20.0.0
9
+ OpenAPI spec version: 20.1.0-rc0
10
10
 
11
11
  Generated by: https://github.com/swagger-api/swagger-codegen.git
12
12
  """
@@ -172,6 +172,7 @@ from flywheel.models.data_view_save_data_view_input import DataViewSaveDataViewI
172
172
  from flywheel.models.data_view_zip_filter_spec import DataViewZipFilterSpec
173
173
  from flywheel.models.default_flywheel_role import DefaultFlywheelRole
174
174
  from flywheel.models.deid_log_skip_reason import DeidLogSkipReason
175
+ from flywheel.models.delete_by_search_query import DeleteBySearchQuery
175
176
  from flywheel.models.deleted_file import DeletedFile
176
177
  from flywheel.models.deleted_result import DeletedResult
177
178
  from flywheel.models.deprecated_action import DeprecatedAction
flywheel/models/action.py CHANGED
@@ -81,6 +81,10 @@ class Action(str, enum.Enum):
81
81
  AZUREML_ACCESS = "azureml_access"
82
82
  AUDIT_TRAIL_REPORTS_MANAGE = "audit_trail_reports_manage"
83
83
  AUDIT_TRAIL_REPORTS_VIEW = "audit_trail_reports_view"
84
+ TASKS_VIEW = "tasks_view"
85
+ TASKS_CREATE = "tasks_create"
86
+ TASKS_MODIFY = "tasks_modify"
87
+ TASKS_ASSIGN = "tasks_assign"
84
88
 
85
89
  def __str__(self):
86
90
  return self.value
@@ -0,0 +1,251 @@
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 DeleteBySearchQuery(object):
22
+
23
+ swagger_types = {
24
+ 'return_type': 'SearchReturnType',
25
+ 'structured_query': 'str',
26
+ 'search_string': 'str',
27
+ 'filters': 'list[object]'
28
+ }
29
+
30
+ attribute_map = {
31
+ 'return_type': 'return_type',
32
+ 'structured_query': 'structured_query',
33
+ 'search_string': 'search_string',
34
+ 'filters': 'filters'
35
+ }
36
+
37
+ rattribute_map = {
38
+ 'return_type': 'return_type',
39
+ 'structured_query': 'structured_query',
40
+ 'search_string': 'search_string',
41
+ 'filters': 'filters'
42
+ }
43
+
44
+ def __init__(self, return_type=None, structured_query=None, search_string=None, filters=None): # noqa: E501
45
+ """DeleteBySearchQuery - a model defined in Swagger"""
46
+ super(DeleteBySearchQuery, self).__init__()
47
+
48
+ self._return_type = None
49
+ self._structured_query = None
50
+ self._search_string = None
51
+ self._filters = None
52
+ self.discriminator = None
53
+ self.alt_discriminator = None
54
+
55
+ self.return_type = return_type
56
+ if structured_query is not None:
57
+ self.structured_query = structured_query
58
+ if search_string is not None:
59
+ self.search_string = search_string
60
+ if filters is not None:
61
+ self.filters = filters
62
+
63
+ @property
64
+ def return_type(self):
65
+ """Gets the return_type of this DeleteBySearchQuery.
66
+
67
+ Sets the type of search results to delete
68
+
69
+ :return: The return_type of this DeleteBySearchQuery.
70
+ :rtype: SearchReturnType
71
+ """
72
+ return self._return_type
73
+
74
+ @return_type.setter
75
+ def return_type(self, return_type):
76
+ """Sets the return_type of this DeleteBySearchQuery.
77
+
78
+ Sets the type of search results to delete
79
+
80
+ :param return_type: The return_type of this DeleteBySearchQuery. # noqa: E501
81
+ :type: SearchReturnType
82
+ """
83
+
84
+ self._return_type = return_type
85
+
86
+ @property
87
+ def structured_query(self):
88
+ """Gets the structured_query of this DeleteBySearchQuery.
89
+
90
+ Represents structured query language search
91
+
92
+ :return: The structured_query of this DeleteBySearchQuery.
93
+ :rtype: str
94
+ """
95
+ return self._structured_query
96
+
97
+ @structured_query.setter
98
+ def structured_query(self, structured_query):
99
+ """Sets the structured_query of this DeleteBySearchQuery.
100
+
101
+ Represents structured query language search
102
+
103
+ :param structured_query: The structured_query of this DeleteBySearchQuery. # noqa: E501
104
+ :type: str
105
+ """
106
+
107
+ self._structured_query = structured_query
108
+
109
+ @property
110
+ def search_string(self):
111
+ """Gets the search_string of this DeleteBySearchQuery.
112
+
113
+ Represents the plain text search query
114
+
115
+ :return: The search_string of this DeleteBySearchQuery.
116
+ :rtype: str
117
+ """
118
+ return self._search_string
119
+
120
+ @search_string.setter
121
+ def search_string(self, search_string):
122
+ """Sets the search_string of this DeleteBySearchQuery.
123
+
124
+ Represents the plain text search query
125
+
126
+ :param search_string: The search_string of this DeleteBySearchQuery. # noqa: E501
127
+ :type: str
128
+ """
129
+
130
+ self._search_string = search_string
131
+
132
+ @property
133
+ def filters(self):
134
+ """Gets the filters of this DeleteBySearchQuery.
135
+
136
+ See https://www.elastic.co/guide/en/elasticsearch/reference/current/term-level-queries.html
137
+
138
+ :return: The filters of this DeleteBySearchQuery.
139
+ :rtype: list[object]
140
+ """
141
+ return self._filters
142
+
143
+ @filters.setter
144
+ def filters(self, filters):
145
+ """Sets the filters of this DeleteBySearchQuery.
146
+
147
+ See https://www.elastic.co/guide/en/elasticsearch/reference/current/term-level-queries.html
148
+
149
+ :param filters: The filters of this DeleteBySearchQuery. # noqa: E501
150
+ :type: list[object]
151
+ """
152
+
153
+ self._filters = filters
154
+
155
+
156
+ @staticmethod
157
+ def positional_to_model(value):
158
+ """Converts a positional argument to a model value"""
159
+ return value
160
+
161
+ def return_value(self):
162
+ """Unwraps return value from model"""
163
+ return self
164
+
165
+ def to_dict(self):
166
+ """Returns the model properties as a dict"""
167
+ result = {}
168
+
169
+ for attr, _ in six.iteritems(self.swagger_types):
170
+ value = getattr(self, attr)
171
+ if isinstance(value, list):
172
+ result[attr] = list(map(
173
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
174
+ value
175
+ ))
176
+ elif hasattr(value, "to_dict"):
177
+ result[attr] = value.to_dict()
178
+ elif isinstance(value, dict):
179
+ result[attr] = dict(map(
180
+ lambda item: (item[0], item[1].to_dict())
181
+ if hasattr(item[1], "to_dict") else item,
182
+ value.items()
183
+ ))
184
+ else:
185
+ result[attr] = value
186
+
187
+ return result
188
+
189
+ def to_str(self):
190
+ """Returns the string representation of the model"""
191
+ return pprint.pformat(self.to_dict())
192
+
193
+ def __repr__(self):
194
+ """For `print` and `pprint`"""
195
+ return self.to_str()
196
+
197
+ def __eq__(self, other):
198
+ """Returns true if both objects are equal"""
199
+ if not isinstance(other, DeleteBySearchQuery):
200
+ return False
201
+
202
+ return self.__dict__ == other.__dict__
203
+
204
+ def __ne__(self, other):
205
+ """Returns true if both objects are not equal"""
206
+ return not self == other
207
+
208
+ # Container emulation
209
+ def __getitem__(self, key):
210
+ """Returns the value of key"""
211
+ key = self._map_key(key)
212
+ return getattr(self, key)
213
+
214
+ def __setitem__(self, key, value):
215
+ """Sets the value of key"""
216
+ key = self._map_key(key)
217
+ setattr(self, key, value)
218
+
219
+ def __contains__(self, key):
220
+ """Checks if the given value is a key in this object"""
221
+ key = self._map_key(key, raise_on_error=False)
222
+ return key is not None
223
+
224
+ def keys(self):
225
+ """Returns the list of json properties in the object"""
226
+ return self.__class__.rattribute_map.keys()
227
+
228
+ def values(self):
229
+ """Returns the list of values in the object"""
230
+ for key in self.__class__.attribute_map.keys():
231
+ yield getattr(self, key)
232
+
233
+ def items(self):
234
+ """Returns the list of json property to value mapping"""
235
+ for key, prop in self.__class__.rattribute_map.items():
236
+ yield key, getattr(self, prop)
237
+
238
+ def get(self, key, default=None):
239
+ """Get the value of the provided json property, or default"""
240
+ key = self._map_key(key, raise_on_error=False)
241
+ if key:
242
+ return getattr(self, key, default)
243
+ return default
244
+
245
+ def _map_key(self, key, raise_on_error=True):
246
+ result = self.__class__.rattribute_map.get(key)
247
+ if result is None:
248
+ if raise_on_error:
249
+ raise AttributeError('Invalid attribute name: {}'.format(key))
250
+ return None
251
+ return '_' + result
@@ -82,7 +82,8 @@ class Features(object):
82
82
  'userpilot': 'bool',
83
83
  'validate_classification': 'bool',
84
84
  'virus_scan': 'bool',
85
- 'legacy_dicom_uploader': 'bool'
85
+ 'legacy_dicom_uploader': 'bool',
86
+ 'tasks_refactor': 'bool'
86
87
  }
87
88
 
88
89
  attribute_map = {
@@ -147,7 +148,8 @@ class Features(object):
147
148
  'userpilot': 'userpilot',
148
149
  'validate_classification': 'validate_classification',
149
150
  'virus_scan': 'virus_scan',
150
- 'legacy_dicom_uploader': 'legacy_dicom_uploader'
151
+ 'legacy_dicom_uploader': 'legacy_dicom_uploader',
152
+ 'tasks_refactor': 'tasks_refactor'
151
153
  }
152
154
 
153
155
  rattribute_map = {
@@ -212,10 +214,11 @@ class Features(object):
212
214
  'userpilot': 'userpilot',
213
215
  'validate_classification': 'validate_classification',
214
216
  'virus_scan': 'virus_scan',
215
- 'legacy_dicom_uploader': 'legacy_dicom_uploader'
217
+ 'legacy_dicom_uploader': 'legacy_dicom_uploader',
218
+ 'tasks_refactor': 'tasks_refactor'
216
219
  }
217
220
 
218
- 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=True, google_analytics=True, healthcare_api=False, job_ask=True, job_prioritization=True, job_tickets=True, jupyter_integration=False, jupyterhub_external_storage=True, ldap_sync=False, multifactor_auth=False, multipart_signed_url=True, multiproject=False, ohif_multi_subject_view=False, ohif_meteor=False, ohif_react=False, ohif_react_beta=False, ohif_slice_order=None, ohif_v2_adhoc_indexing=True, ohif_v3=True, ohif_v3_beta=False, ohif_v3_default_app=False, ohif_v3_readonly=False, project_export=True, project_import=True, 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, transform_search_fields=True, unsafe_login=False, url_access_apps=False, userpilot=None, validate_classification=False, virus_scan=False, legacy_dicom_uploader=False): # noqa: E501
221
+ 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=True, google_analytics=True, healthcare_api=False, job_ask=True, job_prioritization=True, job_tickets=True, jupyter_integration=False, jupyterhub_external_storage=True, ldap_sync=False, multifactor_auth=False, multipart_signed_url=True, multiproject=False, ohif_multi_subject_view=False, ohif_meteor=False, ohif_react=False, ohif_react_beta=False, ohif_slice_order=None, ohif_v2_adhoc_indexing=True, ohif_v3=True, ohif_v3_beta=False, ohif_v3_default_app=False, ohif_v3_readonly=False, project_export=True, project_import=True, 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, transform_search_fields=True, unsafe_login=False, url_access_apps=False, userpilot=None, validate_classification=False, virus_scan=False, legacy_dicom_uploader=False, tasks_refactor=False): # noqa: E501
219
222
  """Features - a model defined in Swagger"""
220
223
  super(Features, self).__init__()
221
224
 
@@ -281,6 +284,7 @@ class Features(object):
281
284
  self._validate_classification = None
282
285
  self._virus_scan = None
283
286
  self._legacy_dicom_uploader = None
287
+ self._tasks_refactor = None
284
288
  self.discriminator = None
285
289
  self.alt_discriminator = None
286
290
 
@@ -408,6 +412,8 @@ class Features(object):
408
412
  self.virus_scan = virus_scan
409
413
  if legacy_dicom_uploader is not None:
410
414
  self.legacy_dicom_uploader = legacy_dicom_uploader
415
+ if tasks_refactor is not None:
416
+ self.tasks_refactor = tasks_refactor
411
417
 
412
418
  @property
413
419
  def api_enabled_gear_rules(self):
@@ -1711,6 +1717,27 @@ class Features(object):
1711
1717
 
1712
1718
  self._legacy_dicom_uploader = legacy_dicom_uploader
1713
1719
 
1720
+ @property
1721
+ def tasks_refactor(self):
1722
+ """Gets the tasks_refactor of this Features.
1723
+
1724
+
1725
+ :return: The tasks_refactor of this Features.
1726
+ :rtype: bool
1727
+ """
1728
+ return self._tasks_refactor
1729
+
1730
+ @tasks_refactor.setter
1731
+ def tasks_refactor(self, tasks_refactor):
1732
+ """Sets the tasks_refactor of this Features.
1733
+
1734
+
1735
+ :param tasks_refactor: The tasks_refactor of this Features. # noqa: E501
1736
+ :type: bool
1737
+ """
1738
+
1739
+ self._tasks_refactor = tasks_refactor
1740
+
1714
1741
 
1715
1742
  @staticmethod
1716
1743
  def positional_to_model(value):
@@ -26,8 +26,8 @@ class SearchQuery(object):
26
26
  'return_type': 'SearchReturnType',
27
27
  'structured_query': 'str',
28
28
  'search_string': 'str',
29
- 'all_data': 'bool',
30
29
  'filters': 'list[object]',
30
+ 'all_data': 'bool',
31
31
  'sort': 'Sort',
32
32
  'size': 'int'
33
33
  }
@@ -36,8 +36,8 @@ class SearchQuery(object):
36
36
  'return_type': 'return_type',
37
37
  'structured_query': 'structured_query',
38
38
  'search_string': 'search_string',
39
- 'all_data': 'all_data',
40
39
  'filters': 'filters',
40
+ 'all_data': 'all_data',
41
41
  'sort': 'sort',
42
42
  'size': 'size'
43
43
  }
@@ -46,21 +46,21 @@ class SearchQuery(object):
46
46
  'return_type': 'return_type',
47
47
  'structured_query': 'structured_query',
48
48
  'search_string': 'search_string',
49
- 'all_data': 'all_data',
50
49
  'filters': 'filters',
50
+ 'all_data': 'all_data',
51
51
  'sort': 'sort',
52
52
  'size': 'size'
53
53
  }
54
54
 
55
- def __init__(self, return_type=None, structured_query=None, search_string=None, all_data=False, filters=None, sort=None, size=None): # noqa: E501
55
+ def __init__(self, return_type=None, structured_query=None, search_string=None, filters=None, all_data=False, sort=None, size=None): # noqa: E501
56
56
  """SearchQuery - a model defined in Swagger"""
57
57
  super(SearchQuery, self).__init__()
58
58
 
59
59
  self._return_type = None
60
60
  self._structured_query = None
61
61
  self._search_string = None
62
- self._all_data = None
63
62
  self._filters = None
63
+ self._all_data = None
64
64
  self._sort = None
65
65
  self._size = None
66
66
  self.discriminator = None
@@ -71,10 +71,10 @@ class SearchQuery(object):
71
71
  self.structured_query = structured_query
72
72
  if search_string is not None:
73
73
  self.search_string = search_string
74
- if all_data is not None:
75
- self.all_data = all_data
76
74
  if filters is not None:
77
75
  self.filters = filters
76
+ if all_data is not None:
77
+ self.all_data = all_data
78
78
  if sort is not None:
79
79
  self.sort = sort
80
80
  if size is not None:
@@ -149,29 +149,6 @@ class SearchQuery(object):
149
149
 
150
150
  self._search_string = search_string
151
151
 
152
- @property
153
- def all_data(self):
154
- """Gets the all_data of this SearchQuery.
155
-
156
- When set will include all data that the user does not have access to read
157
-
158
- :return: The all_data of this SearchQuery.
159
- :rtype: bool
160
- """
161
- return self._all_data
162
-
163
- @all_data.setter
164
- def all_data(self, all_data):
165
- """Sets the all_data of this SearchQuery.
166
-
167
- When set will include all data that the user does not have access to read
168
-
169
- :param all_data: The all_data of this SearchQuery. # noqa: E501
170
- :type: bool
171
- """
172
-
173
- self._all_data = all_data
174
-
175
152
  @property
176
153
  def filters(self):
177
154
  """Gets the filters of this SearchQuery.
@@ -195,6 +172,29 @@ class SearchQuery(object):
195
172
 
196
173
  self._filters = filters
197
174
 
175
+ @property
176
+ def all_data(self):
177
+ """Gets the all_data of this SearchQuery.
178
+
179
+ When set will include all data that the user does not have access to read
180
+
181
+ :return: The all_data of this SearchQuery.
182
+ :rtype: bool
183
+ """
184
+ return self._all_data
185
+
186
+ @all_data.setter
187
+ def all_data(self, all_data):
188
+ """Sets the all_data of this SearchQuery.
189
+
190
+ When set will include all data that the user does not have access to read
191
+
192
+ :param all_data: The all_data of this SearchQuery. # noqa: E501
193
+ :type: bool
194
+ """
195
+
196
+ self._all_data = all_data
197
+
198
198
  @property
199
199
  def sort(self):
200
200
  """Gets the sort of this SearchQuery.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: flywheel-sdk
3
- Version: 20.0.0
3
+ Version: 20.1.0rc0
4
4
  Summary: Flywheel SDK
5
5
  Home-page:
6
6
  Author-email: support@flywheel.io
@@ -1,52 +1,52 @@
1
- flywheel/__init__.py,sha256=LE9B1Aey0HGrusRPQc8yTl105-kI9h5yEqxUL6CrQzE,44975
2
- flywheel/api_client.py,sha256=FIDo0XT31Qk2kgqNqktxSu8Os1Ske1B6UGyvUcgd_IY,29570
1
+ flywheel/__init__.py,sha256=1vwZyZx1BMTbCoMf4Q3tEDzuq6-j389zBgyijMV0siY,45046
2
+ flywheel/api_client.py,sha256=TkntvGoSnqf3YmCTnrteYVYxkDN_YUypRDk5B1uWgCQ,29574
3
3
  flywheel/client.py,sha256=LMvn2aSdtn-waCpXzux8FKJxEB0469SJg5ZNnB5BqTc,10476
4
- flywheel/configuration.py,sha256=-14hALEh_BnIRuQGww4lY59EHB53mwc-xwF0TC7z_IM,8639
4
+ flywheel/configuration.py,sha256=jkvfpTwalbm7g-oC9sI51mzWddu3FUkTvwOv8-8ONh8,8647
5
5
  flywheel/drone_login.py,sha256=8nELIBYBJMuPHQ0zdrGjWB20C3OTZbxpFVyxWmQ0kr0,2229
6
6
  flywheel/file_spec.py,sha256=0BnFgyH0qsDxuupJG5_g9LX2cLq7JxRiSODN3HdI-ak,2220
7
7
  flywheel/finder.py,sha256=ueECCweO48TTAJXudzh3xBbqyhV-Vbzt1NnPUSqEU9U,6739
8
- flywheel/flywheel.py,sha256=MAkbTDhq4Cm7mssTXEbPSPLwijUQWhS7gWNnYD7nXQw,396272
8
+ flywheel/flywheel.py,sha256=6ZfvAhCviwAsZ0_PQjhuUXU4cC6P47I7p4WtN7sfoDk,396922
9
9
  flywheel/gear_context.py,sha256=cFJs8cC_on6v184HVUTXSSVS9y5ee73QN0lCkPTQ5jk,13701
10
10
  flywheel/partial_reader.py,sha256=SkMgwaGZeeVaN7f9dzmVitBFnQv8ARLJgEaQP36l92s,1222
11
11
  flywheel/rest.py,sha256=Luybe_pjqufXgw3LHSwPrSWFKrrAH6UU3IvTtSeCoAQ,13604
12
12
  flywheel/util.py,sha256=_97fv5qRvxvSFi1eHsli4VszoOBhYMhtC26hz_ukrEA,2198
13
13
  flywheel/view_builder.py,sha256=0hGDvjiljUuyuHezawx-TSO5Nv885No6rGf3lb3qvxo,17758
14
14
  flywheel/api/__init__.py,sha256=S0erMpSONSRh8RUbADUNnAczZwUhe-Lt9s8E4TMGH5M,1760
15
- flywheel/api/acquisitions_api.py,sha256=4VG8y2Iqq9V-G8d--WN3FIg6EHKo642_3oyBCIV6lmA,213204
16
- flywheel/api/analyses_api.py,sha256=fgnZx3PzJcKcqoGJcDqPC52q-bpiGWNPvFQcXhw-xtI,117700
15
+ flywheel/api/acquisitions_api.py,sha256=VEyG-U0a8Qy40OS_6EsxrDXh0rSWEHbWtwjXrNS4jGg,213230
16
+ flywheel/api/analyses_api.py,sha256=RiN1F0zQlzmPWRkhKdfx_sipeY6AYdsog87IsJJAvNA,117726
17
17
  flywheel/api/audit_trail_api.py,sha256=dFinVdTCqO1TsCoRndTT1qqV61J2FWMyYS2FqQwqP54,21492
18
18
  flywheel/api/auth_api.py,sha256=w6wscqpCv-Rc9n9Q1KogyeaByM9YhiDNl4upvErV674,3703
19
19
  flywheel/api/batch_api.py,sha256=zpeo0U6ubk-AxlCQ_j-rTmVuKpjJue9icFq-zBP5ZVo,23287
20
20
  flywheel/api/bulk_api.py,sha256=kSIQUYBHS37yDKdM1TMNYNLhXTrIkfTYznRhtVuEUS0,4776
21
21
  flywheel/api/change_log_api.py,sha256=Nln-mDIsCRLcsDCBDo8e9sYv1jTCf6ql_JX9SfP5-ds,10003
22
- flywheel/api/collections_api.py,sha256=rXBTYe9L949ZyOgCu1xQTM91Titv-fxV8tthK4xzLEM,165388
22
+ flywheel/api/collections_api.py,sha256=E7JfT5ABoCxX-nZvIAkbsySW9Yi7OJKdpqD4FC8gOPI,165414
23
23
  flywheel/api/config_api.py,sha256=rBURhYVyT22BpOjDIQ_2iJ3UOnfspgjowQnz2cKND_s,9584
24
24
  flywheel/api/containers_api.py,sha256=fReONdto78giDqvhU5EjIVf1M4nM5KaOw3X_UvGeR9c,202811
25
25
  flywheel/api/data_view_executions_api.py,sha256=vdQ3vRbebC2InZp0s7WUMGxJjRiq_aaXLrYIHi2lk4s,21544
26
- flywheel/api/dataexplorer_api.py,sha256=Qqu916GYB1oMYLshp6zagQtaszkAFGrbT6RnmNyRhLU,37594
26
+ flywheel/api/dataexplorer_api.py,sha256=bWATXxokPKiGP4zUPhlxuFQR2X_15DI3nY4_QdXfarw,41784
27
27
  flywheel/api/devices_api.py,sha256=VsclxSE_yMSAvST5uxEKMBXNqq_eKJjI6XI4S3RKsas,43568
28
28
  flywheel/api/dimse_api.py,sha256=rTPcy5CTFFnpx1YWSuhsWMNjW4c9nTV85Q8EY1QcGN8,29974
29
29
  flywheel/api/download_api.py,sha256=fFOA8DgRq1yknYQ6YZC26fcaZDhGIDnGuWMjvYD_Ans,10590
30
- flywheel/api/files_api.py,sha256=fE8KWWhCsp79I5c8FqVoei6dh5YMnvbtjhZxo8aaK-I,57924
30
+ flywheel/api/files_api.py,sha256=r1_FiGBEheLMAmH93p3_L2xtkEL76z3JS9cyF_vbKNc,57950
31
31
  flywheel/api/gears_api.py,sha256=Pu1bWBrlDgXHDsgsyIOJxPl2_6oxQvtm2JVaVOJ667c,73128
32
- flywheel/api/groups_api.py,sha256=XplP1S_fo9zVDrLTZpv0dXzzbnMnNumxfJpk-Tfoy9I,113596
32
+ flywheel/api/groups_api.py,sha256=Jo-5nsuVG5Sb21NDizC-sNRs9QUvTyIHTigWQXVu4Rw,113622
33
33
  flywheel/api/jobs_api.py,sha256=Af6fEmkCUylsJaMxx5LUvTTYlQnWpLWH2Nk0wLSk_g8,82096
34
34
  flywheel/api/jupyterlab_servers_api.py,sha256=FiwtzKL6SClFXiBnzbf5dtjHCjonMQ3jB7FHlrFNGQM,9180
35
35
  flywheel/api/modalities_api.py,sha256=GyqCWO1_iQ7RUgvKD6KeAOrPx6O7Q3XxxGsqksBBJEM,20862
36
36
  flywheel/api/packfiles_api.py,sha256=3IQHwnmjCYBw7L4gJIxnZwpGdIT6LqEZPb-eIHG3t8o,3847
37
- flywheel/api/projects_api.py,sha256=ZAL2uJzx1ObIyiQFxNh8c6TldfeJJdfIZ1Ez0HhPl5o,330417
37
+ flywheel/api/projects_api.py,sha256=qnfrolirpUlevQf1a85hgZjd51kNHHOkTROnOnmN61k,330443
38
38
  flywheel/api/reports_api.py,sha256=6WW5CroopwNrw6GBE0_R34stBWbyqUXgRoyiHkAAZE4,36251
39
- flywheel/api/resolve_api.py,sha256=6yuXytZnhpFBPz0x5TN1B57jtRn9kuSqth6WtXWSYaw,11603
39
+ flywheel/api/resolve_api.py,sha256=GO2ZSI6ofo4XRMSyc239-HjJ1vRd3ollMMtwfquYcuE,12215
40
40
  flywheel/api/roles_api.py,sha256=2FQCdRZgg-bZDVP8Nv4JOb4UYMbGcX0Cstc3x6Cff1Y,20698
41
- flywheel/api/sessions_api.py,sha256=pr7qtOFyoE1bSRcMuGB_ApaWASkVn3v_ko5ZzYz-VnM,223477
41
+ flywheel/api/sessions_api.py,sha256=UUDXq3CbLw9bekfI_wud05F-HCdBc9S7PrmDWLht5NA,223503
42
42
  flywheel/api/site_api.py,sha256=6skw2iKO5JAO9AVaTJZCuusBaECbuFDMiiPKE8tIHHY,57379
43
- flywheel/api/subjects_api.py,sha256=5dckrcHqcGmUmEj2BENfoSZmKqTx5NDOIuhxaQYa544,227084
43
+ flywheel/api/subjects_api.py,sha256=9Zp1QpI6xgynaLJryAa-iWeWBd50CE0Chc9zTUY_Dns,227110
44
44
  flywheel/api/tree_api.py,sha256=NZ_1QbOIhPodTqx82nmgPvLfxCB7NwmTf7oPgzxgEbI,12337
45
45
  flywheel/api/uids_api.py,sha256=mFStWRKbdgymR_FYDHq8EsOiTfDKjz2XEcWT1XQUYtQ,4946
46
46
  flywheel/api/upload_api.py,sha256=emrzAmurhGb-uBI7Ewckbn5DyP9LBkfn6OI1zxhKnb8,38540
47
47
  flywheel/api/users_api.py,sha256=t6CgyTGKdr-ojDi_wW3Zpgw3XhiUE7shDXxKLK3__ZY,85397
48
48
  flywheel/api/views_api.py,sha256=ZbPYA_sOQ9qnOjkOUeioV0v08VPbsuuOnMP3EBySEVY,44375
49
- flywheel/models/__init__.py,sha256=BvuP0mmn158B30aLcxCMGZVzWdOvylb5VfxuA4zeAkI,42851
49
+ flywheel/models/__init__.py,sha256=yMcHXoRRmnNzEkDzdibFDas0IX_k4tamvm8dC83LHsc,42926
50
50
  flywheel/models/access_level.py,sha256=zSgO2gWTTSo-p1v49ilz3Q5ZizZ7DESA5P6Ur67fgX0,575
51
51
  flywheel/models/access_permission.py,sha256=-IYmy-yb8zecmGZx7iE0bhZW7PvuWpm3zAHr2FwCyLI,5336
52
52
  flywheel/models/access_permission_output.py,sha256=faCnvyMYozmSVSlLFYMdJw84hQc3ugxx7LH2JzBfnoE,5202
@@ -64,7 +64,7 @@ flywheel/models/acquisition_parents.py,sha256=G-mcOdBtSJZQPbD6mSgfez3AZ-FYQf_oXg
64
64
  flywheel/models/acquisition_template_options.py,sha256=bbvtpv0DD24UjtJLA6tuC2NgifwoLAap7Lno6j8Eeuk,7436
65
65
  flywheel/models/acquisition_upsert_input.py,sha256=OKyzNC8CvrhKwl4ikcmDR2OTgEt3Kncp_NLhM_B6ct4,9423
66
66
  flywheel/models/acquisition_upsert_output.py,sha256=KvOcTqnJq_oct1XzblgdetZJKRviSTTAKa8TmYBL4dY,6498
67
- flywheel/models/action.py,sha256=IYd86GMGW41kQYvr3f8SL9TMfsia6kxJzHHTwR4Ig40,3414
67
+ flywheel/models/action.py,sha256=aKDVcwoIcI0IxQTTf03NwpwOaztaJWXcwsuBf0PHTUo,3546
68
68
  flywheel/models/adhoc_analysis_input.py,sha256=aysSK-CiV76WN5tUYvNObBivFDYjIcu-NEXTky3TWzw,6633
69
69
  flywheel/models/analysis.py,sha256=o2cG94BT-qsA1ITF89XNHw2usGoRiDjzvNVU4_Zyy7A,516
70
70
  flywheel/models/analysis_container_output.py,sha256=Vptxnt3l9_UPQfaJ6EntrPxZL20OxAEem8FoJ_8Lysk,963
@@ -205,6 +205,7 @@ flywheel/models/data_view_save_data_view_input.py,sha256=5haBMXxk-xAHEZNy4V-_TAg
205
205
  flywheel/models/data_view_zip_filter_spec.py,sha256=60_tTjdrqUw0d-QLl4pHjKMFu1YaeH-mcF6L6PRdF3Y,6233
206
206
  flywheel/models/default_flywheel_role.py,sha256=-AjXC5pWQXf7OmTDAWcGvaadd49ofv4HFuLdpj9iJKU,583
207
207
  flywheel/models/deid_log_skip_reason.py,sha256=KtHQjBrER4gEk8vXd1cjvuJDQ7LajqwgHuDgWDAMs74,615
208
+ flywheel/models/delete_by_search_query.py,sha256=5pcSY1SSQsqOwUAo2GYswngRsg8aMSxMU7BmlSt5Ktk,7541
208
209
  flywheel/models/deleted_file.py,sha256=VrwLIAu1316bVu6gk41czolPCmZnvmUm_4AdKSh9iM0,11647
209
210
  flywheel/models/deleted_result.py,sha256=3FAnMsLOoT20mch6-wNRSvFOkEJbetm45_oR7CHEorE,5584
210
211
  flywheel/models/deprecated_action.py,sha256=iuUrtOSr6r2iW-s6dK7YVFf3e-QfGySLE9CmO2sdbD8,602
@@ -240,7 +241,7 @@ flywheel/models/egress_provider_id.py,sha256=1dKUprJXQii7w_sdUr_hB_PebJDkLgZt9yj
240
241
  flywheel/models/exchange_storage.py,sha256=J5ki23OZ78IU-snirVzcbXd6Jjuek4FjwHGG1FTlIzM,6719
241
242
  flywheel/models/executor_info.py,sha256=nbvDWU_yEi_xwpF52y186xEgKkuKSjmBLGOGqmVA_Wg,9216
242
243
  flywheel/models/export_templates.py,sha256=fAW_tPW2tBT1DhuzF4nS7GwSgvqHkFLED--Swl4ndco,5495
243
- flywheel/models/features.py,sha256=FvH5534pWpfdpcqNO_RFW4TOYdbFP0duFYkd--J1vl8,53507
244
+ flywheel/models/features.py,sha256=epQtpQu4j8A2rxPO-lSjpaTgKhO6XBhLJqyT9MVN7Ig,54288
244
245
  flywheel/models/field_change.py,sha256=H0QoBOIJuzgBsryMejJnhu5Vzwa2FpZ2ChQV7NnAgLU,7027
245
246
  flywheel/models/field_change_log_document.py,sha256=-G5oxplkcregMMHywMAXuexl5x21PRe5X2SQxaIaAj0,7091
246
247
  flywheel/models/file.py,sha256=SkL9vxFcvaTwveNQ8TO-33CnJ_EJttLSLf9iFInhSgw,27877
@@ -599,7 +600,7 @@ flywheel/models/search_parent_subject.py,sha256=RtBJbXJxvgndKCw_nsr9479-p3QHM7Zc
599
600
  flywheel/models/search_parse_error.py,sha256=MSA8gi6-e8zf5XOJIHGljFxZStB760pXjf_LCa_tJF0,6719
600
601
  flywheel/models/search_parse_search_query_result.py,sha256=Q1-U1aI3QdKcpUi99XCOqJ_G4QCMfK1shIWJhvGwSt0,939
601
602
  flywheel/models/search_project_response.py,sha256=wyDeDUCSK966q5jRuNHGFtFGieUeEA_pbR70a37OC0E,5300
602
- flywheel/models/search_query.py,sha256=YZR99Ajtex8GciHRdWxuvaYocx_-1twVXIsm7ekYw7w,9405
603
+ flywheel/models/search_query.py,sha256=qkVpZGRTQPoaIu_vyQ21HQ6772kUwGE6ZtaAQBOH4xs,9405
603
604
  flywheel/models/search_query_suggestions.py,sha256=ceEvC8QE3PZ8ImVXqvy_7vpai0mgwWdJCpyeJNV1TCA,954
604
605
  flywheel/models/search_response.py,sha256=AyMrcSWoEw88YGdrYOIWDtf3xxImHvLJWEztlWrw348,12912
605
606
  flywheel/models/search_return_type.py,sha256=DBR_7NY_OJavFYl9vUpH3YjybEaiCcn4kWFzXrut6eo,680
@@ -706,8 +707,8 @@ flywheel/models/virus_scan_state.py,sha256=zBmk7x3ZoDhEozIeD-Gw7CEkU7yWYKFMFXklL
706
707
  flywheel/models/work_in_progress_features.py,sha256=dZ_cJTztcU3wPIUKptwZzb7hdv9mo27wXfWgolkJa1k,3944
707
708
  flywheel/models/zipfile_info.py,sha256=8ivqs0rTQaiC8KirTaK_WqSGkLvCndI_58dylOBKwa4,5243
708
709
  flywheel/models/zipfile_member_info.py,sha256=zAg9wRUeYXbz6bvXdo4xYFHtvv9eRSCjvyaTrQ3zvN4,6346
709
- flywheel_sdk-20.0.0.dist-info/LICENSE.txt,sha256=F_Wp8b8L-2vc2xxcRr402gN1gg-2y0p2oG8aSj3hdMA,1057
710
- flywheel_sdk-20.0.0.dist-info/METADATA,sha256=nLmNC46e3x5g7IIlRz3Zu0fBdpwStG7af-FdfVzab38,1094
711
- flywheel_sdk-20.0.0.dist-info/WHEEL,sha256=9Hm2OB-j1QcCUq9Jguht7ayGIIZBRTdOXD1qg9cCgPM,109
712
- flywheel_sdk-20.0.0.dist-info/top_level.txt,sha256=BQ1fXyhiudo2To7zMNcPOOGa6qtZuhx0V_I7CO-vU6w,9
713
- flywheel_sdk-20.0.0.dist-info/RECORD,,
710
+ flywheel_sdk-20.1.0rc0.dist-info/LICENSE.txt,sha256=F_Wp8b8L-2vc2xxcRr402gN1gg-2y0p2oG8aSj3hdMA,1057
711
+ flywheel_sdk-20.1.0rc0.dist-info/METADATA,sha256=wR1SWL4kcDKBZp_LTy0uV2qLkSrTWRJ3o0_GBtZiBzU,1097
712
+ flywheel_sdk-20.1.0rc0.dist-info/WHEEL,sha256=9Hm2OB-j1QcCUq9Jguht7ayGIIZBRTdOXD1qg9cCgPM,109
713
+ flywheel_sdk-20.1.0rc0.dist-info/top_level.txt,sha256=BQ1fXyhiudo2To7zMNcPOOGa6qtZuhx0V_I7CO-vU6w,9
714
+ flywheel_sdk-20.1.0rc0.dist-info/RECORD,,