flywheel-sdk 18.3.0rc0__py2.py3-none-any.whl → 18.4.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 +7 -6
- flywheel/api/__init__.py +1 -1
- flywheel/api/acquisitions_api.py +10 -6
- flywheel/api/analyses_api.py +5 -1
- flywheel/api/bulk_api.py +3 -3
- flywheel/api/collections_api.py +5 -1
- flywheel/api/containers_api.py +10 -6
- flywheel/api/gears_api.py +3 -3
- flywheel/api/{workspaces_api.py → jupyterlab_servers_api.py} +47 -47
- flywheel/api/projects_api.py +10 -6
- flywheel/api/reports_api.py +30 -5
- flywheel/api/sessions_api.py +10 -6
- flywheel/api/site_api.py +6 -6
- flywheel/api/subjects_api.py +10 -6
- flywheel/api/upload_api.py +15 -15
- flywheel/api/views_api.py +4 -4
- flywheel/api_client.py +1 -1
- flywheel/configuration.py +2 -2
- flywheel/flywheel.py +55 -42
- flywheel/models/__init__.py +9 -8
- flywheel/models/as_storage.py +1 -1
- flywheel/models/aws_storage.py +1 -1
- flywheel/models/base_compute.py +1 -1
- flywheel/models/central_out.py +31 -4
- flywheel/models/change_method.py +1 -0
- flywheel/models/container_type.py +1 -1
- flywheel/models/context_input.py +1 -1
- flywheel/models/core_models_jobs_api_key_input.py +1 -1
- flywheel/models/exchange_storage.py +1 -1
- flywheel/models/gcp_storage.py +1 -1
- flywheel/models/gear_context_input.py +1 -1
- flywheel/models/gear_context_value_output_unfound.py +1 -1
- flywheel/models/gear_file_input.py +1 -1
- flywheel/models/gear_key_input.py +1 -1
- flywheel/models/job_file_input.py +1 -1
- flywheel/models/job_file_input_list_output.py +1 -1
- flywheel/models/{workspace_modify.py → jupyterlab_server_modify.py} +24 -24
- flywheel/models/{workspace_origin.py → jupyterlab_server_origin.py} +1 -1
- flywheel/models/{workspace_output.py → jupyterlab_server_output.py} +2 -2
- flywheel/models/{workspace_response.py → jupyterlab_server_response.py} +44 -44
- flywheel/models/{workspace_update.py → jupyterlab_server_update.py} +2 -2
- flywheel/models/local_storage.py +1 -1
- flywheel/models/mixins.py +10 -4
- flywheel/models/move_conflict.py +298 -0
- flywheel/models/s3_compat_storage.py +1 -1
- flywheel/models/site_settings.py +1 -1
- flywheel/models/static_compute.py +1 -1
- {flywheel_sdk-18.3.0rc0.dist-info → flywheel_sdk-18.4.0rc0.dist-info}/METADATA +2 -2
- {flywheel_sdk-18.3.0rc0.dist-info → flywheel_sdk-18.4.0rc0.dist-info}/RECORD +52 -51
- {flywheel_sdk-18.3.0rc0.dist-info → flywheel_sdk-18.4.0rc0.dist-info}/LICENSE.txt +0 -0
- {flywheel_sdk-18.3.0rc0.dist-info → flywheel_sdk-18.4.0rc0.dist-info}/WHEEL +0 -0
- {flywheel_sdk-18.3.0rc0.dist-info → flywheel_sdk-18.4.0rc0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,298 @@
|
|
|
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
|
+
from flywheel.models.container_reference import ContainerReference # noqa: F401,E501
|
|
22
|
+
from flywheel.models.container_type import ContainerType # noqa: F401,E501
|
|
23
|
+
|
|
24
|
+
class MoveConflict(object):
|
|
25
|
+
|
|
26
|
+
swagger_types = {
|
|
27
|
+
'move_type': 'list[ContainerType]',
|
|
28
|
+
'id': 'str',
|
|
29
|
+
'conflict_with': 'ContainerReference',
|
|
30
|
+
'conflict_label': 'str',
|
|
31
|
+
'label': 'str',
|
|
32
|
+
'subject_code': 'str'
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
attribute_map = {
|
|
36
|
+
'move_type': 'move_type',
|
|
37
|
+
'id': 'id',
|
|
38
|
+
'conflict_with': 'conflict_with',
|
|
39
|
+
'conflict_label': 'conflict_label',
|
|
40
|
+
'label': 'label',
|
|
41
|
+
'subject_code': 'subject_code'
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
rattribute_map = {
|
|
45
|
+
'move_type': 'move_type',
|
|
46
|
+
'id': 'id',
|
|
47
|
+
'conflict_with': 'conflict_with',
|
|
48
|
+
'conflict_label': 'conflict_label',
|
|
49
|
+
'label': 'label',
|
|
50
|
+
'subject_code': 'subject_code'
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
def __init__(self, move_type=None, id=None, conflict_with=None, conflict_label=None, label=None, subject_code=None): # noqa: E501
|
|
54
|
+
"""MoveConflict - a model defined in Swagger"""
|
|
55
|
+
super(MoveConflict, self).__init__()
|
|
56
|
+
|
|
57
|
+
self._move_type = None
|
|
58
|
+
self._id = None
|
|
59
|
+
self._conflict_with = None
|
|
60
|
+
self._conflict_label = None
|
|
61
|
+
self._label = None
|
|
62
|
+
self._subject_code = None
|
|
63
|
+
self.discriminator = None
|
|
64
|
+
self.alt_discriminator = None
|
|
65
|
+
|
|
66
|
+
self.move_type = move_type
|
|
67
|
+
self.id = id
|
|
68
|
+
self.conflict_with = conflict_with
|
|
69
|
+
if conflict_label is not None:
|
|
70
|
+
self.conflict_label = conflict_label
|
|
71
|
+
if label is not None:
|
|
72
|
+
self.label = label
|
|
73
|
+
if subject_code is not None:
|
|
74
|
+
self.subject_code = subject_code
|
|
75
|
+
|
|
76
|
+
@property
|
|
77
|
+
def move_type(self):
|
|
78
|
+
"""Gets the move_type of this MoveConflict.
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
:return: The move_type of this MoveConflict.
|
|
82
|
+
:rtype: list[ContainerType]
|
|
83
|
+
"""
|
|
84
|
+
return self._move_type
|
|
85
|
+
|
|
86
|
+
@move_type.setter
|
|
87
|
+
def move_type(self, move_type):
|
|
88
|
+
"""Sets the move_type of this MoveConflict.
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
:param move_type: The move_type of this MoveConflict. # noqa: E501
|
|
92
|
+
:type: list[ContainerType]
|
|
93
|
+
"""
|
|
94
|
+
|
|
95
|
+
self._move_type = move_type
|
|
96
|
+
|
|
97
|
+
@property
|
|
98
|
+
def id(self):
|
|
99
|
+
"""Gets the id of this MoveConflict.
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
:return: The id of this MoveConflict.
|
|
103
|
+
:rtype: str
|
|
104
|
+
"""
|
|
105
|
+
return self._id
|
|
106
|
+
|
|
107
|
+
@id.setter
|
|
108
|
+
def id(self, id):
|
|
109
|
+
"""Sets the id of this MoveConflict.
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
:param id: The id of this MoveConflict. # noqa: E501
|
|
113
|
+
:type: str
|
|
114
|
+
"""
|
|
115
|
+
|
|
116
|
+
self._id = id
|
|
117
|
+
|
|
118
|
+
@property
|
|
119
|
+
def conflict_with(self):
|
|
120
|
+
"""Gets the conflict_with of this MoveConflict.
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
:return: The conflict_with of this MoveConflict.
|
|
124
|
+
:rtype: ContainerReference
|
|
125
|
+
"""
|
|
126
|
+
return self._conflict_with
|
|
127
|
+
|
|
128
|
+
@conflict_with.setter
|
|
129
|
+
def conflict_with(self, conflict_with):
|
|
130
|
+
"""Sets the conflict_with of this MoveConflict.
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
:param conflict_with: The conflict_with of this MoveConflict. # noqa: E501
|
|
134
|
+
:type: ContainerReference
|
|
135
|
+
"""
|
|
136
|
+
|
|
137
|
+
self._conflict_with = conflict_with
|
|
138
|
+
|
|
139
|
+
@property
|
|
140
|
+
def conflict_label(self):
|
|
141
|
+
"""Gets the conflict_label of this MoveConflict.
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
:return: The conflict_label of this MoveConflict.
|
|
145
|
+
:rtype: str
|
|
146
|
+
"""
|
|
147
|
+
return self._conflict_label
|
|
148
|
+
|
|
149
|
+
@conflict_label.setter
|
|
150
|
+
def conflict_label(self, conflict_label):
|
|
151
|
+
"""Sets the conflict_label of this MoveConflict.
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
:param conflict_label: The conflict_label of this MoveConflict. # noqa: E501
|
|
155
|
+
:type: str
|
|
156
|
+
"""
|
|
157
|
+
|
|
158
|
+
self._conflict_label = conflict_label
|
|
159
|
+
|
|
160
|
+
@property
|
|
161
|
+
def label(self):
|
|
162
|
+
"""Gets the label of this MoveConflict.
|
|
163
|
+
|
|
164
|
+
|
|
165
|
+
:return: The label of this MoveConflict.
|
|
166
|
+
:rtype: str
|
|
167
|
+
"""
|
|
168
|
+
return self._label
|
|
169
|
+
|
|
170
|
+
@label.setter
|
|
171
|
+
def label(self, label):
|
|
172
|
+
"""Sets the label of this MoveConflict.
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
:param label: The label of this MoveConflict. # noqa: E501
|
|
176
|
+
:type: str
|
|
177
|
+
"""
|
|
178
|
+
|
|
179
|
+
self._label = label
|
|
180
|
+
|
|
181
|
+
@property
|
|
182
|
+
def subject_code(self):
|
|
183
|
+
"""Gets the subject_code of this MoveConflict.
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
:return: The subject_code of this MoveConflict.
|
|
187
|
+
:rtype: str
|
|
188
|
+
"""
|
|
189
|
+
return self._subject_code
|
|
190
|
+
|
|
191
|
+
@subject_code.setter
|
|
192
|
+
def subject_code(self, subject_code):
|
|
193
|
+
"""Sets the subject_code of this MoveConflict.
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
:param subject_code: The subject_code of this MoveConflict. # noqa: E501
|
|
197
|
+
:type: str
|
|
198
|
+
"""
|
|
199
|
+
|
|
200
|
+
self._subject_code = subject_code
|
|
201
|
+
|
|
202
|
+
|
|
203
|
+
@staticmethod
|
|
204
|
+
def positional_to_model(value):
|
|
205
|
+
"""Converts a positional argument to a model value"""
|
|
206
|
+
return value
|
|
207
|
+
|
|
208
|
+
def return_value(self):
|
|
209
|
+
"""Unwraps return value from model"""
|
|
210
|
+
return self
|
|
211
|
+
|
|
212
|
+
def to_dict(self):
|
|
213
|
+
"""Returns the model properties as a dict"""
|
|
214
|
+
result = {}
|
|
215
|
+
|
|
216
|
+
for attr, _ in six.iteritems(self.swagger_types):
|
|
217
|
+
value = getattr(self, attr)
|
|
218
|
+
if isinstance(value, list):
|
|
219
|
+
result[attr] = list(map(
|
|
220
|
+
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
|
|
221
|
+
value
|
|
222
|
+
))
|
|
223
|
+
elif hasattr(value, "to_dict"):
|
|
224
|
+
result[attr] = value.to_dict()
|
|
225
|
+
elif isinstance(value, dict):
|
|
226
|
+
result[attr] = dict(map(
|
|
227
|
+
lambda item: (item[0], item[1].to_dict())
|
|
228
|
+
if hasattr(item[1], "to_dict") else item,
|
|
229
|
+
value.items()
|
|
230
|
+
))
|
|
231
|
+
else:
|
|
232
|
+
result[attr] = value
|
|
233
|
+
|
|
234
|
+
return result
|
|
235
|
+
|
|
236
|
+
def to_str(self):
|
|
237
|
+
"""Returns the string representation of the model"""
|
|
238
|
+
return pprint.pformat(self.to_dict())
|
|
239
|
+
|
|
240
|
+
def __repr__(self):
|
|
241
|
+
"""For `print` and `pprint`"""
|
|
242
|
+
return self.to_str()
|
|
243
|
+
|
|
244
|
+
def __eq__(self, other):
|
|
245
|
+
"""Returns true if both objects are equal"""
|
|
246
|
+
if not isinstance(other, MoveConflict):
|
|
247
|
+
return False
|
|
248
|
+
|
|
249
|
+
return self.__dict__ == other.__dict__
|
|
250
|
+
|
|
251
|
+
def __ne__(self, other):
|
|
252
|
+
"""Returns true if both objects are not equal"""
|
|
253
|
+
return not self == other
|
|
254
|
+
|
|
255
|
+
# Container emulation
|
|
256
|
+
def __getitem__(self, key):
|
|
257
|
+
"""Returns the value of key"""
|
|
258
|
+
key = self._map_key(key)
|
|
259
|
+
return getattr(self, key)
|
|
260
|
+
|
|
261
|
+
def __setitem__(self, key, value):
|
|
262
|
+
"""Sets the value of key"""
|
|
263
|
+
key = self._map_key(key)
|
|
264
|
+
setattr(self, key, value)
|
|
265
|
+
|
|
266
|
+
def __contains__(self, key):
|
|
267
|
+
"""Checks if the given value is a key in this object"""
|
|
268
|
+
key = self._map_key(key, raise_on_error=False)
|
|
269
|
+
return key is not None
|
|
270
|
+
|
|
271
|
+
def keys(self):
|
|
272
|
+
"""Returns the list of json properties in the object"""
|
|
273
|
+
return self.__class__.rattribute_map.keys()
|
|
274
|
+
|
|
275
|
+
def values(self):
|
|
276
|
+
"""Returns the list of values in the object"""
|
|
277
|
+
for key in self.__class__.attribute_map.keys():
|
|
278
|
+
yield getattr(self, key)
|
|
279
|
+
|
|
280
|
+
def items(self):
|
|
281
|
+
"""Returns the list of json property to value mapping"""
|
|
282
|
+
for key, prop in self.__class__.rattribute_map.items():
|
|
283
|
+
yield key, getattr(self, prop)
|
|
284
|
+
|
|
285
|
+
def get(self, key, default=None):
|
|
286
|
+
"""Get the value of the provided json property, or default"""
|
|
287
|
+
key = self._map_key(key, raise_on_error=False)
|
|
288
|
+
if key:
|
|
289
|
+
return getattr(self, key, default)
|
|
290
|
+
return default
|
|
291
|
+
|
|
292
|
+
def _map_key(self, key, raise_on_error=True):
|
|
293
|
+
result = self.__class__.rattribute_map.get(key)
|
|
294
|
+
if result is None:
|
|
295
|
+
if raise_on_error:
|
|
296
|
+
raise AttributeError('Invalid attribute name: {}'.format(key))
|
|
297
|
+
return None
|
|
298
|
+
return '_' + result
|
|
@@ -56,7 +56,7 @@ class S3CompatStorage(object):
|
|
|
56
56
|
'addressing_style': 'addressing_style'
|
|
57
57
|
}
|
|
58
58
|
|
|
59
|
-
def __init__(self, region=None, bucket=None, path='', endpoint_url=None, verify_certs=False, signed_urls=False, config_type=
|
|
59
|
+
def __init__(self, region=None, bucket=None, path='', endpoint_url=None, verify_certs=False, signed_urls=False, config_type='s3_compat', config_class='storage', addressing_style=None): # noqa: E501
|
|
60
60
|
"""S3CompatStorage - a model defined in Swagger"""
|
|
61
61
|
super(S3CompatStorage, self).__init__()
|
|
62
62
|
|
flywheel/models/site_settings.py
CHANGED
|
@@ -57,7 +57,7 @@ class SiteSettings(object):
|
|
|
57
57
|
'deid_profile': 'deid_profile'
|
|
58
58
|
}
|
|
59
59
|
|
|
60
|
-
def __init__(self, id=
|
|
60
|
+
def __init__(self, id='site', created=None, modified=None, center_gears=None, providers=None, ldap_sync=None, viewer_apps=None, deid_profile=None): # noqa: E501
|
|
61
61
|
"""SiteSettings - a model defined in Swagger"""
|
|
62
62
|
super(SiteSettings, self).__init__()
|
|
63
63
|
|
|
@@ -38,7 +38,7 @@ class StaticCompute(object):
|
|
|
38
38
|
'tags': 'tags'
|
|
39
39
|
}
|
|
40
40
|
|
|
41
|
-
def __init__(self, config_type=
|
|
41
|
+
def __init__(self, config_type='static', config_class='compute', tags=None): # noqa: E501
|
|
42
42
|
"""StaticCompute - a model defined in Swagger"""
|
|
43
43
|
super(StaticCompute, self).__init__()
|
|
44
44
|
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: flywheel-sdk
|
|
3
|
-
Version: 18.
|
|
3
|
+
Version: 18.4.0rc0
|
|
4
4
|
Summary: Flywheel SDK
|
|
5
5
|
Home-page:
|
|
6
6
|
Author-email: support@flywheel.io
|
|
7
7
|
License: MIT
|
|
8
8
|
Project-URL: Documentation, https://flywheel-io.gitlab.io/product/backend/sdk/branches/master/python
|
|
9
9
|
Project-URL: Source, https://gitlab.com/flywheel-io/product/backend/core
|
|
10
|
-
Keywords: Swagger,Flywheel,flywheel
|
|
10
|
+
Keywords: Swagger,Flywheel API,flywheel
|
|
11
11
|
License-File: LICENSE.txt
|
|
12
12
|
Requires-Dist: urllib3 (>=2.2.1)
|
|
13
13
|
Requires-Dist: six (>=1.16)
|
|
@@ -1,52 +1,52 @@
|
|
|
1
|
-
flywheel/__init__.py,sha256=
|
|
2
|
-
flywheel/api_client.py,sha256=
|
|
1
|
+
flywheel/__init__.py,sha256=4NIHmER5UBuFhieuLbsDRkPG-D3wjhDAPgLHqtw8v2M,44912
|
|
2
|
+
flywheel/api_client.py,sha256=C1uAptGW77NMQWQ3hI3ciGSUwmckc2K_Yk2vTEdMlPw,28940
|
|
3
3
|
flywheel/client.py,sha256=LMvn2aSdtn-waCpXzux8FKJxEB0469SJg5ZNnB5BqTc,10476
|
|
4
|
-
flywheel/configuration.py,sha256=
|
|
4
|
+
flywheel/configuration.py,sha256=9qiqwuf_KH_Z6plPKMim5w5k3Q6wYha3eg-98SjKGb0,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=
|
|
8
|
+
flywheel/flywheel.py,sha256=y0PBgy_QFyFkgwgxX-gu-on0eYFLknX-rOt2Q8tLz0Q,392778
|
|
9
9
|
flywheel/gear_context.py,sha256=xOjNzpReJPAKhdpfpQ-gDwsDoIdxAcS5CG-b1pJ69-o,13338
|
|
10
10
|
flywheel/partial_reader.py,sha256=SkMgwaGZeeVaN7f9dzmVitBFnQv8ARLJgEaQP36l92s,1222
|
|
11
11
|
flywheel/rest.py,sha256=hRPcmGLghBkiZ06jyFEE39iEdP0-6o4pDWj2Ocl7mSc,13119
|
|
12
12
|
flywheel/util.py,sha256=_97fv5qRvxvSFi1eHsli4VszoOBhYMhtC26hz_ukrEA,2198
|
|
13
13
|
flywheel/view_builder.py,sha256=0hGDvjiljUuyuHezawx-TSO5Nv885No6rGf3lb3qvxo,17758
|
|
14
|
-
flywheel/api/__init__.py,sha256=
|
|
15
|
-
flywheel/api/acquisitions_api.py,sha256=
|
|
16
|
-
flywheel/api/analyses_api.py,sha256=
|
|
14
|
+
flywheel/api/__init__.py,sha256=S0erMpSONSRh8RUbADUNnAczZwUhe-Lt9s8E4TMGH5M,1760
|
|
15
|
+
flywheel/api/acquisitions_api.py,sha256=7LxO623_kOjyx-OqYzXMvCfGUsN2o7LsScX-_nN0myQ,208109
|
|
16
|
+
flywheel/api/analyses_api.py,sha256=FCatFzJ9VyTJ8mMZL8zsiymsigyhgr4cvaUc0aC2J0w,110187
|
|
17
17
|
flywheel/api/audit_trail_api.py,sha256=4zHOmkZZWZKCqehL9hpbWGtmOTbyLA-RiQr98nlRZSE,21498
|
|
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
|
-
flywheel/api/bulk_api.py,sha256=
|
|
20
|
+
flywheel/api/bulk_api.py,sha256=M5lYMmry-Hm1LsfS5qKKxPai6cECskUmHapLnNZyUPw,4732
|
|
21
21
|
flywheel/api/change_log_api.py,sha256=Nln-mDIsCRLcsDCBDo8e9sYv1jTCf6ql_JX9SfP5-ds,10003
|
|
22
|
-
flywheel/api/collections_api.py,sha256=
|
|
22
|
+
flywheel/api/collections_api.py,sha256=V1QKXlcaLGq-E8lAwJeyxT9o7lmgPByxUmgx2Yy-Qf8,158741
|
|
23
23
|
flywheel/api/config_api.py,sha256=rBURhYVyT22BpOjDIQ_2iJ3UOnfspgjowQnz2cKND_s,9584
|
|
24
|
-
flywheel/api/containers_api.py,sha256=
|
|
24
|
+
flywheel/api/containers_api.py,sha256=nGtO8u8tWUql2U6H1uwVxsMU5_o4ylGB9y9RtEIi4mQ,205998
|
|
25
25
|
flywheel/api/data_view_executions_api.py,sha256=vdQ3vRbebC2InZp0s7WUMGxJjRiq_aaXLrYIHi2lk4s,21544
|
|
26
26
|
flywheel/api/dataexplorer_api.py,sha256=nxNB0E_1VcOceyms6GdiS5o-UT0OlShSwuxOCL7hnAM,37588
|
|
27
27
|
flywheel/api/devices_api.py,sha256=jAQ9IRm0fqJWHuJwhTKmOIDAVNNjfdVCSIX2XvRl2hk,39374
|
|
28
28
|
flywheel/api/dimse_api.py,sha256=rTPcy5CTFFnpx1YWSuhsWMNjW4c9nTV85Q8EY1QcGN8,29974
|
|
29
29
|
flywheel/api/download_api.py,sha256=fFOA8DgRq1yknYQ6YZC26fcaZDhGIDnGuWMjvYD_Ans,10590
|
|
30
30
|
flywheel/api/files_api.py,sha256=zslVbeg6q68ho4xd9NHwKddTjG-edwpBO_awzayHVm8,45517
|
|
31
|
-
flywheel/api/gears_api.py,sha256=
|
|
31
|
+
flywheel/api/gears_api.py,sha256=zO5BP3UlsUCQxh3lSQpicBtQE23p5d7wHtjYuJ-3uQk,73134
|
|
32
32
|
flywheel/api/groups_api.py,sha256=Q7QXtx0iOelmtqmt776s6Vf-4kqw2VFfyL6biV06nws,105340
|
|
33
33
|
flywheel/api/jobs_api.py,sha256=7FULp8eICFjCQLhYGHHOaAdaF86D6Pc98eGocaLeByU,73651
|
|
34
|
+
flywheel/api/jupyterlab_servers_api.py,sha256=FiwtzKL6SClFXiBnzbf5dtjHCjonMQ3jB7FHlrFNGQM,9180
|
|
34
35
|
flywheel/api/modalities_api.py,sha256=upQC0IB11zP08V2j0zXrd0b9A0xwr-u9pQNrOCO9N-U,20862
|
|
35
36
|
flywheel/api/packfiles_api.py,sha256=3IQHwnmjCYBw7L4gJIxnZwpGdIT6LqEZPb-eIHG3t8o,3847
|
|
36
|
-
flywheel/api/projects_api.py,sha256=
|
|
37
|
-
flywheel/api/reports_api.py,sha256=
|
|
37
|
+
flywheel/api/projects_api.py,sha256=4N1g2e4R3cYtorrt9VNn9FYqfFua6aUkpcn3cyO9KK4,324122
|
|
38
|
+
flywheel/api/reports_api.py,sha256=6WW5CroopwNrw6GBE0_R34stBWbyqUXgRoyiHkAAZE4,36251
|
|
38
39
|
flywheel/api/resolve_api.py,sha256=6yuXytZnhpFBPz0x5TN1B57jtRn9kuSqth6WtXWSYaw,11603
|
|
39
40
|
flywheel/api/roles_api.py,sha256=BUMfCyle1gbRtCWce9SQtkCRY1tILi22NRSz9QBpaF0,20698
|
|
40
|
-
flywheel/api/sessions_api.py,sha256=
|
|
41
|
-
flywheel/api/site_api.py,sha256=
|
|
42
|
-
flywheel/api/subjects_api.py,sha256=
|
|
41
|
+
flywheel/api/sessions_api.py,sha256=g1IV__2C-o-VoctXaJ0LjYV9j5HwOLfA-na3_vvE0xA,217882
|
|
42
|
+
flywheel/api/site_api.py,sha256=IrcUYtt57L446ggUu_tx-sYqm92JWFGGjNY1uWiFIS0,57373
|
|
43
|
+
flywheel/api/subjects_api.py,sha256=bDR1Lm4PnfTseohXuybCExpZamBDLc08kjqfeauREx8,221801
|
|
43
44
|
flywheel/api/tree_api.py,sha256=f7o8PO-BdTZ7MOl2cMMP5KC49z1Rl0QBx0_pqROOKQE,12031
|
|
44
45
|
flywheel/api/uids_api.py,sha256=mFStWRKbdgymR_FYDHq8EsOiTfDKjz2XEcWT1XQUYtQ,4946
|
|
45
|
-
flywheel/api/upload_api.py,sha256=
|
|
46
|
+
flywheel/api/upload_api.py,sha256=emrzAmurhGb-uBI7Ewckbn5DyP9LBkfn6OI1zxhKnb8,38540
|
|
46
47
|
flywheel/api/users_api.py,sha256=ThTGkL_oE-ixB9akEZEm2pogkYBa_m9qAM52W5ClRC0,82850
|
|
47
|
-
flywheel/api/views_api.py,sha256=
|
|
48
|
-
flywheel/
|
|
49
|
-
flywheel/models/__init__.py,sha256=vY3o7GNy2OSfaM4aITyyUag5BCXKRSdKoD6OUK4MVT8,42632
|
|
48
|
+
flywheel/api/views_api.py,sha256=Xshmzxd9XEwWavyMCzKwDXp_4Hep4-6MFOEBM_lBato,44403
|
|
49
|
+
flywheel/models/__init__.py,sha256=-3CcgmH5JvwWNMjQENXfk3SC3457mMQZkBi5GDW4AY8,42792
|
|
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
|
|
@@ -81,7 +81,7 @@ flywheel/models/analysis_parents.py,sha256=hQgTsQnqtO4H_cTJciH36PPez9y-fOiqSkshv
|
|
|
81
81
|
flywheel/models/analysis_update.py,sha256=gcx1GL8H0cI8HUNZVze3WnzTFryK2S7IizAAGFdcP2Q,538
|
|
82
82
|
flywheel/models/api_key_input_with_optional_label.py,sha256=L3326OB84_ValnvHECPxEZATNP-Yad6xdRupQk_rhKk,5410
|
|
83
83
|
flywheel/models/api_key_output.py,sha256=ivbLiuMamPcz5LpS36Ky5VY6cbU3Q7m2pFppCVyzWf0,7927
|
|
84
|
-
flywheel/models/as_storage.py,sha256=
|
|
84
|
+
flywheel/models/as_storage.py,sha256=fYZeqESwtQWW3duiyWKBpgtmh7hKgwddPFiRuXYfVT0,7803
|
|
85
85
|
flywheel/models/audit_trail_report.py,sha256=O35ckeNPeNk_JAegsxBARmpaAd0r0TvNudYhM3rG5dY,12554
|
|
86
86
|
flywheel/models/audit_trail_report_status.py,sha256=zO0TOa-q_GnV68KeTHo2IJmzGM9F93PBKVYXAWkxUIo,668
|
|
87
87
|
flywheel/models/auth0_auth_out.py,sha256=1BSMYPvFI2x2qbBNrjYT9LH0UOJzH__a65gWkrUizFM,8617
|
|
@@ -90,7 +90,7 @@ flywheel/models/auth_out.py,sha256=wXZEs4pigccSsbAw3daAVffFHFwlCNQUJLUeLawi6ic,8
|
|
|
90
90
|
flywheel/models/auth_session_output.py,sha256=wu3opWmaF9O9NAPf-qLSkTx47OOhMJ5ERCXnSQCQct0,7355
|
|
91
91
|
flywheel/models/avatars.py,sha256=rvnQEtfdlEwt5GPSZ-NwnINO0c58MJxEZdZMj-hPrX8,5762
|
|
92
92
|
flywheel/models/aws_creds.py,sha256=c7Gk7rQ2Qu6scHPLwFUu_8RHu5GMqXuWdWVPoe09Ti0,5661
|
|
93
|
-
flywheel/models/aws_storage.py,sha256=
|
|
93
|
+
flywheel/models/aws_storage.py,sha256=Z_h1SJzBgJH8AKrol9vQmrfGfG2IYNN3Yl5WD_lwR4E,9249
|
|
94
94
|
flywheel/models/azure_creds.py,sha256=M6giQ_WKhR7MqKFEPBXow_nN2cAWes4SNrOl5LTYaSE,5526
|
|
95
95
|
flywheel/models/azure_ml_account.py,sha256=EuiipOG5FH0WMWvupxmpd4XkN618Q9oIQeitMe72dp8,5136
|
|
96
96
|
flywheel/models/azure_ml_initialization.py,sha256=tLi5iDETyY4V2qTI_UILNswUYNMpHFH3AeJcUAfP8zg,7585
|
|
@@ -99,7 +99,7 @@ flywheel/models/azure_ml_resource_init_status.py,sha256=bq0BczJrtxq-uOGy1xJ3lWFI
|
|
|
99
99
|
flywheel/models/azure_ml_workspace.py,sha256=rq8sxsCU3D6OBTr24VI-TDdOzoK-ddzoQ3epQ1Y9pcc,9250
|
|
100
100
|
flywheel/models/azure_ml_workspace_input.py,sha256=yvo28iju0V7gvYYdoXBSjV3SH47LHUSRJ9qMyppcP5E,5300
|
|
101
101
|
flywheel/models/base_aet.py,sha256=2CHubbZHUifaLbB9V_RVJFmTO-HrC4NLxsf66gMwdZw,6181
|
|
102
|
-
flywheel/models/base_compute.py,sha256=
|
|
102
|
+
flywheel/models/base_compute.py,sha256=xgVuApFltjgYlF9JVvJXzq5sIiVOslZ-iaian6DHHPM,11185
|
|
103
103
|
flywheel/models/batch.py,sha256=rNoUcYjqktWkcY1Z_FKuJbmBtEW_Ek6I1x3PbAtV2Po,8879
|
|
104
104
|
flywheel/models/batch_cancel_output.py,sha256=87qrtInCmecIIeqduBNe67aNSTWq-TxBucTBJes-zPM,931
|
|
105
105
|
flywheel/models/batch_job_analysis_input.py,sha256=tmCxFED7qcE4XJc1hSsvZsHRT-XYBnfSI9xAqzQXWF0,7797
|
|
@@ -116,11 +116,11 @@ flywheel/models/bulk_move_sessions.py,sha256=u1VJB-gVYulc8AexCQsFi4dcDLTS6LbddtP
|
|
|
116
116
|
flywheel/models/callbacks_virus_scan_input.py,sha256=OJ4tOBPfu4UVmssZuFhWDIAtlnxVenPwEBDV4MKe0YE,903
|
|
117
117
|
flywheel/models/cancelled_batch_output.py,sha256=BmFXN_GWowBw--VOhHoyzYJDuL3NNpbAA1BtvFIfWWw,4776
|
|
118
118
|
flywheel/models/catalog_list_output.py,sha256=JRS1iqnnTdwB9X8nj9wXseOXyg4rAsyTk4gpMf6wt0c,11627
|
|
119
|
-
flywheel/models/central_out.py,sha256=
|
|
119
|
+
flywheel/models/central_out.py,sha256=8r2RkmWqBe5QEZWaRMVTshqXOSVnYc9q17PYGN5C-Fg,5876
|
|
120
120
|
flywheel/models/change.py,sha256=AsvwVurWlJvoPW9e8ZbHmqn2eZ4SEIaHfMIT3p0a3oY,9888
|
|
121
121
|
flywheel/models/change_log_container_type.py,sha256=XTUZTujr50uoFNQO0iT0K9XGHvZmBfzHLzBuLQGWQuU,850
|
|
122
122
|
flywheel/models/change_log_document.py,sha256=yJ-yTl8pLOROCC1t5NrNkl7MKsmYanRe7A0MDsDx4_o,6974
|
|
123
|
-
flywheel/models/change_method.py,sha256=
|
|
123
|
+
flywheel/models/change_method.py,sha256=vyVNNA_-MOeZRkw98-YdjI-4J14rJ7uIvJrh8XFmikE,680
|
|
124
124
|
flywheel/models/classic_batch_job_output.py,sha256=5UgqjarwHQ5hNl075JI__xc0nmn5TG53xEv06zY8Qj4,9134
|
|
125
125
|
flywheel/models/classic_batch_job_output_inflated_jobs.py,sha256=tXALFo1ulkCO02M2HVG0gY6W8igCfmPFb6nqc7-B_kA,10261
|
|
126
126
|
flywheel/models/classic_batch_proposal_input.py,sha256=O4W8VPQtTLxkXNRo9uvgtT8W9vrz7EY6qqycOB_bvw8,11718
|
|
@@ -175,12 +175,12 @@ flywheel/models/container_reference.py,sha256=wcTb2v4lRrLU7oxeIooS0kZyxD-q9rDOBZ
|
|
|
175
175
|
flywheel/models/container_reference_with_label.py,sha256=wb6U1ckU-y0PoO6U0aKh6doVgFbgSsrrFk3IVwYV2KA,5990
|
|
176
176
|
flywheel/models/container_session_parents.py,sha256=gMIcIwUfFRipoIx2u_6eeSzCxnrPR97c1os-4Jke10U,531
|
|
177
177
|
flywheel/models/container_subject_parents.py,sha256=uwrfrwLpL8Gdxc_s2o_iV5kFjrmSlmA9dT7JmvjpXgg,531
|
|
178
|
-
flywheel/models/container_type.py,sha256=
|
|
178
|
+
flywheel/models/container_type.py,sha256=7MKk2R4ezoyRwGhLEEtRchktp2c1pkWNFpyXM2yqr2Y,863
|
|
179
179
|
flywheel/models/container_uidcheck.py,sha256=Ld7gohp29Pm28SYlUoV07iAj-kM8quUoXBCo8jJ5KVA,7105
|
|
180
180
|
flywheel/models/container_update.py,sha256=JN5C01CeKegQImm7kE9TD3AytKfafL5_rMahbJGYoT0,3916
|
|
181
|
-
flywheel/models/context_input.py,sha256=
|
|
181
|
+
flywheel/models/context_input.py,sha256=PyafRR26gT42JPHW-VvlawJrxwHK6eZ-i4hZm_e2wl4,5649
|
|
182
182
|
flywheel/models/core_models_api_key_api_key_input.py,sha256=lNpfQH45Vo35E_7nrpWH62FaExHwHZwur2m0s6iz_JU,5364
|
|
183
|
-
flywheel/models/core_models_jobs_api_key_input.py,sha256=
|
|
183
|
+
flywheel/models/core_models_jobs_api_key_input.py,sha256=yzs7jLOGCFeNuUENM4mxesuht-keVMKQ6pNWoSDP9Ig,5188
|
|
184
184
|
flywheel/models/core_models_source_source.py,sha256=BzxpP5UbNbxDzFnnmCmGcxqif0WL-gqn7ZLjo5S4cCI,5061
|
|
185
185
|
flywheel/models/create_report_input.py,sha256=JpkgTHRQA8TK_K1ViU5utiX_XV0YIO1ZekkPlpxTt70,7323
|
|
186
186
|
flywheel/models/creds.py,sha256=kFhJ7_1zmHzHneoan4XKlJ7iRDIgZKuZFbnjCBQg28o,3876
|
|
@@ -236,7 +236,7 @@ flywheel/models/egress_device.py,sha256=6VwbKRa9KjMvOnTyp0AVBuv_M-lqasUL2w-aGZs4
|
|
|
236
236
|
flywheel/models/egress_device_page.py,sha256=fsa_A_k8zYTVOUrHTjKND5i1I-FDeVcTJY9pnvx66gU,5846
|
|
237
237
|
flywheel/models/egress_provider.py,sha256=YLqXHLVhamZgYxo-S0A-ScddWe5DrwVa_D14CSKSl28,11132
|
|
238
238
|
flywheel/models/egress_provider_id.py,sha256=1dKUprJXQii7w_sdUr_hB_PebJDkLgZt9yjYS0zBK-8,4469
|
|
239
|
-
flywheel/models/exchange_storage.py,sha256=
|
|
239
|
+
flywheel/models/exchange_storage.py,sha256=J5ki23OZ78IU-snirVzcbXd6Jjuek4FjwHGG1FTlIzM,6719
|
|
240
240
|
flywheel/models/executor_info.py,sha256=nbvDWU_yEi_xwpF52y186xEgKkuKSjmBLGOGqmVA_Wg,9216
|
|
241
241
|
flywheel/models/export_templates.py,sha256=fAW_tPW2tBT1DhuzF4nS7GwSgvqHkFLED--Swl4ndco,5495
|
|
242
242
|
flywheel/models/features.py,sha256=bI20kgrWU5Vo1BI7H072ehqtrJGpsR0iMqghSvIrNN4,52507
|
|
@@ -274,15 +274,15 @@ flywheel/models/fixed_file_version_input.py,sha256=p33tDJS5DyQ4eoBDZhWjl0gfjx05x
|
|
|
274
274
|
flywheel/models/fixed_input.py,sha256=Sv9yDpUt_tktxV-4cAk0XnTC-3dcEwLtmYdZ6eljJgM,6740
|
|
275
275
|
flywheel/models/form_definition.py,sha256=ojwrh7ueipNBUYsYHQaMGq3nJOTZJrTxBc0U4YIrNvs,4612
|
|
276
276
|
flywheel/models/gcp_creds.py,sha256=PrVy6vYdwB6lLEwhoOhfaIaV9xpGCExWGwKEaiXfm5Q,10891
|
|
277
|
-
flywheel/models/gcp_storage.py,sha256=
|
|
277
|
+
flywheel/models/gcp_storage.py,sha256=55g28nhphL_yewwPQFjNhgbQthVvHZZYKxR_3A0FtoY,7680
|
|
278
278
|
flywheel/models/gear.py,sha256=cM-nbMZpgBQmWypMK-VFk86rJFTmJ29XNKe4zXIJgYA,15897
|
|
279
279
|
flywheel/models/gear_category.py,sha256=p7EvpqinPGfnEDc56CAYvVeGR8Pka6bwdsDVbnrQ2wk,650
|
|
280
280
|
flywheel/models/gear_config.py,sha256=-K6uOsPhwDb0fhOVUcH8v1Ob-JXd8SblF2s2xuog2Eo,3973
|
|
281
|
-
flywheel/models/gear_context_input.py,sha256=
|
|
281
|
+
flywheel/models/gear_context_input.py,sha256=jwom2SEXpvG4yqpoC9algx6us-niwJgL4kKpCLv2qRI,4513
|
|
282
282
|
flywheel/models/gear_context_lookup.py,sha256=P6X-2NtltNc6ZMMXXaNtJge2NnnSiSR4N2s8Xi-_q20,551
|
|
283
283
|
flywheel/models/gear_context_lookup_item.py,sha256=hgUQviMe4z1bejiUr-i9WmghhNahVPFZeLncA2YHPGE,942
|
|
284
284
|
flywheel/models/gear_context_value_output.py,sha256=Bo3hlAzNDl1Q8QpXjLsTbSMy-cf0luAn8kGlFzqlM9Q,7296
|
|
285
|
-
flywheel/models/gear_context_value_output_unfound.py,sha256=
|
|
285
|
+
flywheel/models/gear_context_value_output_unfound.py,sha256=wdpMOW9duiBmY24z8RYFuGbeIo6XSb7gqrZiBPs6dTA,4638
|
|
286
286
|
flywheel/models/gear_custom.py,sha256=BAGjCwhuojJ7qm83zoo8DiQa_vMvu0GrDrVNvzZtzE4,3896
|
|
287
287
|
flywheel/models/gear_directive.py,sha256=IDTgb6BxvueM1dVl_tkiZS1wABRrgJUSbkrO9688LEo,3908
|
|
288
288
|
flywheel/models/gear_doc.py,sha256=VjrGyeWLYjR8IcoGZAAgpM_5AdpEjqIdb0V-1p-Hjzk,509
|
|
@@ -291,13 +291,13 @@ flywheel/models/gear_document_input.py,sha256=_knZHyO9VHB_kMOwNny1K_qiWJiqmZTiRr
|
|
|
291
291
|
flywheel/models/gear_document_legacy_input.py,sha256=Sx0oPW_gTDBL6L3Ug47dCaRo4lauGAYH4jc43TJAoc4,8272
|
|
292
292
|
flywheel/models/gear_environment.py,sha256=VnrSOs8u57k70RPolUalxHeCyvGz-ppr16-cqd1CaTU,3916
|
|
293
293
|
flywheel/models/gear_exchange.py,sha256=PDhDf-ekcrVzvvHGCuOjGZ0maSngQ0gA8OdiUqssn8A,6330
|
|
294
|
-
flywheel/models/gear_file_input.py,sha256=
|
|
294
|
+
flywheel/models/gear_file_input.py,sha256=h_rQF84vL3vpxJFfZlJFHfkP115_gQQ2pjOb2wAcaZw,5188
|
|
295
295
|
flywheel/models/gear_id_output.py,sha256=Ry2PlsCaKhAjSx_zAey3uDq-quOjcYR5w60yooXzaSc,4618
|
|
296
296
|
flywheel/models/gear_info.py,sha256=QnMdUffIFWy7sjL8ANwhivdHqnTVdfnYNZwEvsSiVi0,6543
|
|
297
297
|
flywheel/models/gear_input_item.py,sha256=HrAEXFs2uRzw0HJGETWjhpCM0BNmEqBwjAzCcpLkOgg,6426
|
|
298
298
|
flywheel/models/gear_inputs.py,sha256=96OQus_hL1w-8wqIG_Ul7NbMIfwCNpr--y-Mqr7-wCU,4063
|
|
299
299
|
flywheel/models/gear_invocation.py,sha256=j_9uY5it-zI4cY2OsL2wfryWXLIo0KrpLmoKI4nqX9M,4543
|
|
300
|
-
flywheel/models/gear_key_input.py,sha256=
|
|
300
|
+
flywheel/models/gear_key_input.py,sha256=JA4DYi2NddAOMz_PiWFJotCAS0GGhdA3Z5WsU2OZIqE,5168
|
|
301
301
|
flywheel/models/gear_manifest.py,sha256=qVtWwRFwTyjOsMJt6MinJL4T-Wk8XYTOXcJmfl6ynZA,15996
|
|
302
302
|
flywheel/models/gear_mixin.py,sha256=Jx1h8tmIizi2vB7DPvQoa-R0ARpZHTtIlvORswUM2_4,7819
|
|
303
303
|
flywheel/models/gear_node.py,sha256=6yN-03t_xjv6elRiE4A1omy3T3shYbmwocsDH03nPqI,8444
|
|
@@ -375,8 +375,8 @@ flywheel/models/job_detail_container.py,sha256=tVg9h4WSSFHwED_VL1nTYfScbo7P8p4Iq
|
|
|
375
375
|
flywheel/models/job_detail_file_entry.py,sha256=uUGP66yWlRYTeVdr0594cSiDbSIkemXu4bUfC6y5ot0,5309
|
|
376
376
|
flywheel/models/job_detail_parent_info.py,sha256=TOvMchwBUW5PhXXjjeSia_KG341yiPIiV4wFie4llpw,8357
|
|
377
377
|
flywheel/models/job_executor_info.py,sha256=t-d7j0-RCsNnRKCJYI1o9_RI2r2eybGaTnv2qTybmUE,10140
|
|
378
|
-
flywheel/models/job_file_input.py,sha256=
|
|
379
|
-
flywheel/models/job_file_input_list_output.py,sha256=
|
|
378
|
+
flywheel/models/job_file_input.py,sha256=BPC4Hr7CoWT7B-Zaf9_QeznjGX6e1zw39tstbWzpP-s,6648
|
|
379
|
+
flywheel/models/job_file_input_list_output.py,sha256=sOH8wF2yYfqrNLjbrpohzGZkTIsf7IBNkIwbsfO6bGc,6900
|
|
380
380
|
flywheel/models/job_file_object.py,sha256=PHjVDhKRklfvjgI5zg095B2YJ-TQzv_afzecufn7sAw,11124
|
|
381
381
|
flywheel/models/job_file_object_list_output.py,sha256=aiwL8ZThpy2krjC1jjw8mPCuRl-ar3pAUWGtwn2L-ZY,10942
|
|
382
382
|
flywheel/models/job_gear_match.py,sha256=I55I_PE5aadm9rq54zA1iOsogwhsQ0b88Wq6VxkMMBE,521
|
|
@@ -416,6 +416,11 @@ flywheel/models/join_origin_user.py,sha256=ViOX05FzXga-CoC6r03h5JxHAwr3xAEVB9Qdn
|
|
|
416
416
|
flywheel/models/join_origins.py,sha256=ieJ5crDQM3AkbcrdQOmp9RSVACFUux9Eaejw5wzuAY0,6069
|
|
417
417
|
flywheel/models/join_type.py,sha256=O3edA2QKGEKBiDciyj7kWIpmK2Y62ETTtgiXTUhDal8,546
|
|
418
418
|
flywheel/models/jupyterhub_workspace.py,sha256=S9ducCNcpR21XWvDEDF20TMjwStSwR_zVb0JLnrDodI,4565
|
|
419
|
+
flywheel/models/jupyterlab_server_modify.py,sha256=xwnbccTcdoccQSJIuy1uoC2fvWhXkvNWF8MVyNddG6c,7996
|
|
420
|
+
flywheel/models/jupyterlab_server_origin.py,sha256=fPImZWSCbPglJQ_qI4TZ1bb1SyfaoW2QiK30Y8qool4,505
|
|
421
|
+
flywheel/models/jupyterlab_server_output.py,sha256=8lyEsShgNRfv2-1_R87FZDzCOiRHVd2G1WtBz1oIn20,561
|
|
422
|
+
flywheel/models/jupyterlab_server_response.py,sha256=DabV6Lwpw44WpEeIusU-DPTXPA9SRInrJs-J3yo6CDE,11900
|
|
423
|
+
flywheel/models/jupyterlab_server_update.py,sha256=A6_bhtwXWlz6j-6hkKaFWNIHwZobCGlAD_UPzwI65Zk,555
|
|
419
424
|
flywheel/models/ldap_sync.py,sha256=p8deypEvi3ZscxhD-Eozmfd9vx0wj_26ynWUGJBlTIg,904
|
|
420
425
|
flywheel/models/ldap_sync_config.py,sha256=rUmNQ1lkMRifF_3uEZLg1S0UhjU2gvNtWvxr3froXgw,4543
|
|
421
426
|
flywheel/models/ldap_sync_input.py,sha256=KQsjg4PBUEcdb0Ta_EW9JyO3SYGwlzC5J_4BOMdaTRI,909
|
|
@@ -424,14 +429,14 @@ flywheel/models/legacy_api_key_output.py,sha256=84HvN2XaIBd53UXW0yNyca5OLEu-0TOB
|
|
|
424
429
|
flywheel/models/legacy_input.py,sha256=LxmR7_RPQRaauK8xvZIeqMsYZj7RUWBN5_OWkV7MWs4,6129
|
|
425
430
|
flywheel/models/legacy_usage_report.py,sha256=9vhmmkvHZnbBnEdkdKXxtofllnPBXSTQ2MXIwetjrlk,8648
|
|
426
431
|
flywheel/models/legacys_usage_project_entry.py,sha256=-dsvjOpoGlXwx59XB-mGjNxnrNTLZKM2h-KdrIzecr4,5266
|
|
427
|
-
flywheel/models/local_storage.py,sha256=
|
|
432
|
+
flywheel/models/local_storage.py,sha256=NNqncfQCSqvuWd6KWzwN64yZEk4hI5XzIEE9Llpd220,5927
|
|
428
433
|
flywheel/models/location.py,sha256=6P9RQL-NaW3OxouHxo8Vf5TN_XaUB8iMledth7EcKTk,4935
|
|
429
434
|
flywheel/models/locked.py,sha256=GWu_HCf5x9m-6EPVdbDTtItB0_m0xW5uEIGvBxJgxQQ,5844
|
|
430
435
|
flywheel/models/master_subject_code_dob_input.py,sha256=IWAPS_rR-i7MP2c-yUafiz3MEY2kAAEWONu1kqf6iqo,8098
|
|
431
436
|
flywheel/models/master_subject_code_input.py,sha256=z1iYzK7jJsXxMBaJnwHLd7O7q1LiRx2cUGFrpiuH6bM,8106
|
|
432
437
|
flywheel/models/master_subject_code_output.py,sha256=ejSXHL6KRfh2L94bsiFrIjxNHfuct9QLXmFi-dT9tV0,4620
|
|
433
438
|
flywheel/models/matched_acquisition_output.py,sha256=whZ27xZHKL2ngnQKWI4cxQHcvwtTXFH9zg2NL-hi5Sk,14157
|
|
434
|
-
flywheel/models/mixins.py,sha256=
|
|
439
|
+
flywheel/models/mixins.py,sha256=DzdZCJDOdxwCWGJNLJAT7WV4I9AgMIikudB_fi9buMI,27252
|
|
435
440
|
flywheel/models/ml_set_filter.py,sha256=s7BWp9gbVv8waLmSmJQT5treYHp1y4YT_LL-BqB3_nM,5176
|
|
436
441
|
flywheel/models/ml_type.py,sha256=lNe0BiH5vu_USajw5HMMa8sKdfjk9ZYWjZlL5yFlX10,602
|
|
437
442
|
flywheel/models/modality.py,sha256=gsPmZbGNbXLONNqBdS--JKTla9rhljoToxVP17vUX0s,6690
|
|
@@ -441,6 +446,7 @@ flywheel/models/modality_output.py,sha256=1FR4OqLFCoA4XY4JNA7UxQvDf5bym58QtDq5re
|
|
|
441
446
|
flywheel/models/modified_result.py,sha256=MYqVs34hSB2_JdgWDaThgkVmbx3MKhAEFKnhleJpeXU,5300
|
|
442
447
|
flywheel/models/modify_report_input.py,sha256=bYbiFCrJHAfIs9--slG5I6v8VvhW5oPGvuLYI_9nBkA,4714
|
|
443
448
|
flywheel/models/modify_user_input.py,sha256=hHX2em0PFYBCbfwOP0RGIej2gz6_E8Z175kJExU-ze8,12532
|
|
449
|
+
flywheel/models/move_conflict.py,sha256=UvjPbnV7zqcMLALpyiS61H6uT2DVns-LT9S2WJxFmrE,8168
|
|
444
450
|
flywheel/models/note.py,sha256=9wVVvRZU_6KmDnN8CNqHD12FFQFmWR0avNXiqflUfk8,9714
|
|
445
451
|
flywheel/models/note_input.py,sha256=PME-p3R2i9SSmsMT_xn3i5TUT5jwVsriKKWoh6KSiYc,4515
|
|
446
452
|
flywheel/models/open_tracing.py,sha256=EpiPJ0MCXHu3qiZe22Pka_fpGo9c82e42SblXyz4nVY,6831
|
|
@@ -570,7 +576,7 @@ flywheel/models/roles_role_input.py,sha256=PcpMrHCGg0VU-iqFrqVOyC0vx4HELW2O-5iW5
|
|
|
570
576
|
flywheel/models/rule.py,sha256=IyfQH5Kt2GmYh11sjLAFrYzJnBeEkHsz0-IK07pCxvk,11640
|
|
571
577
|
flywheel/models/rule_any.py,sha256=hdDLz0Hb3PY4goc9dzz8ltSakAxl6ZJPWiLwDObuj-E,5531
|
|
572
578
|
flywheel/models/s3_addressing_style.py,sha256=441fGHifxOOAslm_cRAzK1S-zfM2RGZa2X3TlOzBry8,575
|
|
573
|
-
flywheel/models/s3_compat_storage.py,sha256=
|
|
579
|
+
flywheel/models/s3_compat_storage.py,sha256=DWlTf_RUvA-87mWcrA19L7S0USlKU3VYZr_ZbPtD5ew,10352
|
|
574
580
|
flywheel/models/save_search.py,sha256=8nehyXcsa6mIRlaDYOjwMQW3ILTd6gF3h69xz7wwES8,7582
|
|
575
581
|
flywheel/models/save_search_input.py,sha256=xCMTo9GoVAfwAIemPRIRe32tSxWzJgRilWmO8ZF0cYw,5895
|
|
576
582
|
flywheel/models/save_search_output.py,sha256=GhiMbKecU9NurTicF7JugvgkYAxp3z3qTRJT5gF9vWY,7858
|
|
@@ -629,11 +635,11 @@ flywheel/models/signed_url_upload_input.py,sha256=2DJhrafe-QKA3FtE3rkE33Vdec-o6E
|
|
|
629
635
|
flywheel/models/signed_url_upload_output.py,sha256=8VfJ6XQ3Ii5iqzOoZAry0jp7CIyYtmFRjX0PcpTWC7Y,10154
|
|
630
636
|
flywheel/models/site.py,sha256=e-y4u7IHbGftt9HCZqow6oPNbGWkiE5ZZU7XNTpA3fo,15183
|
|
631
637
|
flywheel/models/site_report.py,sha256=LgVUgGehg4RyF-g0CDwWxDTMeii5F_J9Dn1dtrWTPB0,5335
|
|
632
|
-
flywheel/models/site_settings.py,sha256=
|
|
638
|
+
flywheel/models/site_settings.py,sha256=rRHtlA15dRKrS_AFbM9BZpA2VZuhF9MTrX0nXxZSD8M,9648
|
|
633
639
|
flywheel/models/sort.py,sha256=qlq7yyX8bB5KuAOk6r4w_3S47W16Sq0y2jo75LZZ5bY,4995
|
|
634
640
|
flywheel/models/stable_api_key_input.py,sha256=SW2KX2XUlX-Sw4inbFFNynks6bJojRFICy3aLXz0zUo,569
|
|
635
641
|
flywheel/models/state.py,sha256=ULy21bt4zxRTfb_Zb3yGct5MaFE-seHPaUMe_GOs4kA,641
|
|
636
|
-
flywheel/models/static_compute.py,sha256=
|
|
642
|
+
flywheel/models/static_compute.py,sha256=8BEU-v6HA-93G1LKQszOT67c9SOT27ab1JSbf1gFuGc,5986
|
|
637
643
|
flywheel/models/status_type.py,sha256=LOR9waqsNbLaUJER6135t8d73rQLAWs2-9PNtWrQPLg,640
|
|
638
644
|
flywheel/models/status_value.py,sha256=xbVV3VZe3B_q_ejpWLvMGw_2LBGPpyMj5tOCa6bBgdE,609
|
|
639
645
|
flywheel/models/storage_strategy.py,sha256=kEotrStRqN4DfylrVQQzpYBA7k9MzkUPnl-V68H-Tjc,595
|
|
@@ -697,15 +703,10 @@ flywheel/models/viewer_app_type.py,sha256=J7J_3DXnQz19w1D7AmCEWs8VFK0jTLBa2nCPG5
|
|
|
697
703
|
flywheel/models/virus_scan.py,sha256=ZZJEwnQ7nkubX4qmQq-qkUPgJp-AvdYqAukxnDRrTp4,4553
|
|
698
704
|
flywheel/models/virus_scan_state.py,sha256=zBmk7x3ZoDhEozIeD-Gw7CEkU7yWYKFMFXklLdTeu3s,602
|
|
699
705
|
flywheel/models/work_in_progress_features.py,sha256=dZ_cJTztcU3wPIUKptwZzb7hdv9mo27wXfWgolkJa1k,3944
|
|
700
|
-
flywheel/models/workspace_modify.py,sha256=6oEHFXnySiT5NNlJsPVhi-gNZY4r-cJblWFaTBAhnvw,7828
|
|
701
|
-
flywheel/models/workspace_origin.py,sha256=izW2vQZ01BIwEuOjx23o6zK_jJt7_O5C7QkyjYaq-Bk,498
|
|
702
|
-
flywheel/models/workspace_output.py,sha256=hpzQDf11W4JfHpi_CDJ5c5rjVnImfQsCsg5jUi84FQc,532
|
|
703
|
-
flywheel/models/workspace_response.py,sha256=5CB8xn1v62CzGVAf1OEJ0197yYY3h1GQFhoEgwidkb4,11592
|
|
704
|
-
flywheel/models/workspace_update.py,sha256=wvVkuJMWfbpriF6Pz7K985vl58o5uG88qE4LzcLvkfs,526
|
|
705
706
|
flywheel/models/zipfile_info.py,sha256=8ivqs0rTQaiC8KirTaK_WqSGkLvCndI_58dylOBKwa4,5243
|
|
706
707
|
flywheel/models/zipfile_member_info.py,sha256=zAg9wRUeYXbz6bvXdo4xYFHtvv9eRSCjvyaTrQ3zvN4,6346
|
|
707
|
-
flywheel_sdk-18.
|
|
708
|
-
flywheel_sdk-18.
|
|
709
|
-
flywheel_sdk-18.
|
|
710
|
-
flywheel_sdk-18.
|
|
711
|
-
flywheel_sdk-18.
|
|
708
|
+
flywheel_sdk-18.4.0rc0.dist-info/LICENSE.txt,sha256=F_Wp8b8L-2vc2xxcRr402gN1gg-2y0p2oG8aSj3hdMA,1057
|
|
709
|
+
flywheel_sdk-18.4.0rc0.dist-info/METADATA,sha256=WLvNsStLgDQzoaVyRV3cvimSJT0Xg0uYuVWLzKem_3A,959
|
|
710
|
+
flywheel_sdk-18.4.0rc0.dist-info/WHEEL,sha256=Z-nyYpwrcSqxfdux5Mbn_DQ525iP7J2DG3JgGvOYyTQ,110
|
|
711
|
+
flywheel_sdk-18.4.0rc0.dist-info/top_level.txt,sha256=BQ1fXyhiudo2To7zMNcPOOGa6qtZuhx0V_I7CO-vU6w,9
|
|
712
|
+
flywheel_sdk-18.4.0rc0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|