flywheel-sdk 20.0.0rc0__py2.py3-none-any.whl → 20.1.0__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 +1 -6
- flywheel/api/acquisitions_api.py +2 -2
- flywheel/api/analyses_api.py +2 -2
- flywheel/api/collections_api.py +2 -2
- flywheel/api/dataexplorer_api.py +109 -0
- flywheel/api/files_api.py +2 -2
- flywheel/api/groups_api.py +2 -2
- flywheel/api/jobs_api.py +211 -0
- flywheel/api/projects_api.py +2 -2
- flywheel/api/resolve_api.py +10 -2
- flywheel/api/sessions_api.py +2 -2
- flywheel/api/subjects_api.py +2 -2
- flywheel/api_client.py +1 -1
- flywheel/configuration.py +2 -2
- flywheel/flywheel.py +44 -9
- flywheel/models/__init__.py +2 -7
- flywheel/models/action.py +4 -3
- flywheel/models/container_type.py +0 -1
- flywheel/models/current_user_output.py +4 -32
- flywheel/models/{azure_ml_workspace_input.py → delete_by_search_query.py} +96 -34
- flywheel/models/features.py +58 -4
- flywheel/models/modify_user_input.py +4 -32
- flywheel/models/project_settings_workspaces.py +4 -31
- flywheel/models/project_settings_workspaces_input.py +4 -32
- flywheel/models/search_query.py +30 -30
- {flywheel_sdk-20.0.0rc0.dist-info → flywheel_sdk-20.1.0.dist-info}/METADATA +1 -1
- {flywheel_sdk-20.0.0rc0.dist-info → flywheel_sdk-20.1.0.dist-info}/RECORD +30 -35
- {flywheel_sdk-20.0.0rc0.dist-info → flywheel_sdk-20.1.0.dist-info}/WHEEL +1 -1
- flywheel/models/azure_ml_account.py +0 -188
- flywheel/models/azure_ml_initialization.py +0 -244
- flywheel/models/azure_ml_integration.py +0 -218
- flywheel/models/azure_ml_resource_init_status.py +0 -31
- flywheel/models/azure_ml_workspace.py +0 -347
- {flywheel_sdk-20.0.0rc0.dist-info → flywheel_sdk-20.1.0.dist-info}/LICENSE.txt +0 -0
- {flywheel_sdk-20.0.0rc0.dist-info → flywheel_sdk-20.1.0.dist-info}/top_level.txt +0 -0
|
@@ -19,7 +19,6 @@ import re # noqa: F401
|
|
|
19
19
|
import six
|
|
20
20
|
|
|
21
21
|
from flywheel.models.avatars import Avatars # noqa: F401,E501
|
|
22
|
-
from flywheel.models.azure_ml_account import AzureMLAccount # noqa: F401,E501
|
|
23
22
|
from flywheel.models.role_type import RoleType # noqa: F401,E501
|
|
24
23
|
from flywheel.models.user_preferences import UserPreferences # noqa: F401,E501
|
|
25
24
|
|
|
@@ -36,8 +35,7 @@ class ModifyUserInput(object):
|
|
|
36
35
|
'preferences': 'UserPreferences',
|
|
37
36
|
'root': 'bool',
|
|
38
37
|
'password': 'str',
|
|
39
|
-
'central_revision': 'int'
|
|
40
|
-
'azureml_account': 'AzureMLAccount'
|
|
38
|
+
'central_revision': 'int'
|
|
41
39
|
}
|
|
42
40
|
|
|
43
41
|
attribute_map = {
|
|
@@ -51,8 +49,7 @@ class ModifyUserInput(object):
|
|
|
51
49
|
'preferences': 'preferences',
|
|
52
50
|
'root': 'root',
|
|
53
51
|
'password': 'password',
|
|
54
|
-
'central_revision': 'central_revision'
|
|
55
|
-
'azureml_account': 'azureml_account'
|
|
52
|
+
'central_revision': 'central_revision'
|
|
56
53
|
}
|
|
57
54
|
|
|
58
55
|
rattribute_map = {
|
|
@@ -66,11 +63,10 @@ class ModifyUserInput(object):
|
|
|
66
63
|
'preferences': 'preferences',
|
|
67
64
|
'root': 'root',
|
|
68
65
|
'password': 'password',
|
|
69
|
-
'central_revision': 'central_revision'
|
|
70
|
-
'azureml_account': 'azureml_account'
|
|
66
|
+
'central_revision': 'central_revision'
|
|
71
67
|
}
|
|
72
68
|
|
|
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
|
|
69
|
+
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): # noqa: E501
|
|
74
70
|
"""ModifyUserInput - a model defined in Swagger"""
|
|
75
71
|
super(ModifyUserInput, self).__init__()
|
|
76
72
|
|
|
@@ -85,7 +81,6 @@ class ModifyUserInput(object):
|
|
|
85
81
|
self._root = None
|
|
86
82
|
self._password = None
|
|
87
83
|
self._central_revision = None
|
|
88
|
-
self._azureml_account = None
|
|
89
84
|
self.discriminator = None
|
|
90
85
|
self.alt_discriminator = None
|
|
91
86
|
|
|
@@ -111,8 +106,6 @@ class ModifyUserInput(object):
|
|
|
111
106
|
self.password = password
|
|
112
107
|
if central_revision is not None:
|
|
113
108
|
self.central_revision = central_revision
|
|
114
|
-
if azureml_account is not None:
|
|
115
|
-
self.azureml_account = azureml_account
|
|
116
109
|
|
|
117
110
|
@property
|
|
118
111
|
def firstname(self):
|
|
@@ -345,27 +338,6 @@ class ModifyUserInput(object):
|
|
|
345
338
|
|
|
346
339
|
self._central_revision = central_revision
|
|
347
340
|
|
|
348
|
-
@property
|
|
349
|
-
def azureml_account(self):
|
|
350
|
-
"""Gets the azureml_account of this ModifyUserInput.
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
:return: The azureml_account of this ModifyUserInput.
|
|
354
|
-
:rtype: AzureMLAccount
|
|
355
|
-
"""
|
|
356
|
-
return self._azureml_account
|
|
357
|
-
|
|
358
|
-
@azureml_account.setter
|
|
359
|
-
def azureml_account(self, azureml_account):
|
|
360
|
-
"""Sets the azureml_account of this ModifyUserInput.
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
:param azureml_account: The azureml_account of this ModifyUserInput. # noqa: E501
|
|
364
|
-
:type: AzureMLAccount
|
|
365
|
-
"""
|
|
366
|
-
|
|
367
|
-
self._azureml_account = azureml_account
|
|
368
|
-
|
|
369
341
|
|
|
370
342
|
@staticmethod
|
|
371
343
|
def positional_to_model(value):
|
|
@@ -21,33 +21,27 @@ import six
|
|
|
21
21
|
class ProjectSettingsWorkspaces(object):
|
|
22
22
|
|
|
23
23
|
swagger_types = {
|
|
24
|
-
'jupyterhub': 'JupyterhubWorkspace'
|
|
25
|
-
'azureml': 'AzureMLIntegration'
|
|
24
|
+
'jupyterhub': 'JupyterhubWorkspace'
|
|
26
25
|
}
|
|
27
26
|
|
|
28
27
|
attribute_map = {
|
|
29
|
-
'jupyterhub': 'jupyterhub'
|
|
30
|
-
'azureml': 'azureml'
|
|
28
|
+
'jupyterhub': 'jupyterhub'
|
|
31
29
|
}
|
|
32
30
|
|
|
33
31
|
rattribute_map = {
|
|
34
|
-
'jupyterhub': 'jupyterhub'
|
|
35
|
-
'azureml': 'azureml'
|
|
32
|
+
'jupyterhub': 'jupyterhub'
|
|
36
33
|
}
|
|
37
34
|
|
|
38
|
-
def __init__(self, jupyterhub=None
|
|
35
|
+
def __init__(self, jupyterhub=None): # noqa: E501
|
|
39
36
|
"""ProjectSettingsWorkspaces - a model defined in Swagger"""
|
|
40
37
|
super(ProjectSettingsWorkspaces, self).__init__()
|
|
41
38
|
|
|
42
39
|
self._jupyterhub = None
|
|
43
|
-
self._azureml = None
|
|
44
40
|
self.discriminator = None
|
|
45
41
|
self.alt_discriminator = None
|
|
46
42
|
|
|
47
43
|
if jupyterhub is not None:
|
|
48
44
|
self.jupyterhub = jupyterhub
|
|
49
|
-
if azureml is not None:
|
|
50
|
-
self.azureml = azureml
|
|
51
45
|
|
|
52
46
|
@property
|
|
53
47
|
def jupyterhub(self):
|
|
@@ -70,27 +64,6 @@ class ProjectSettingsWorkspaces(object):
|
|
|
70
64
|
|
|
71
65
|
self._jupyterhub = jupyterhub
|
|
72
66
|
|
|
73
|
-
@property
|
|
74
|
-
def azureml(self):
|
|
75
|
-
"""Gets the azureml of this ProjectSettingsWorkspaces.
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
:return: The azureml of this ProjectSettingsWorkspaces.
|
|
79
|
-
:rtype: AzureMLIntegration
|
|
80
|
-
"""
|
|
81
|
-
return self._azureml
|
|
82
|
-
|
|
83
|
-
@azureml.setter
|
|
84
|
-
def azureml(self, azureml):
|
|
85
|
-
"""Sets the azureml of this ProjectSettingsWorkspaces.
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
:param azureml: The azureml of this ProjectSettingsWorkspaces. # noqa: E501
|
|
89
|
-
:type: AzureMLIntegration
|
|
90
|
-
"""
|
|
91
|
-
|
|
92
|
-
self._azureml = azureml
|
|
93
|
-
|
|
94
67
|
|
|
95
68
|
@staticmethod
|
|
96
69
|
def positional_to_model(value):
|
|
@@ -18,39 +18,32 @@ import pprint
|
|
|
18
18
|
import re # noqa: F401
|
|
19
19
|
import six
|
|
20
20
|
|
|
21
|
-
from flywheel.models.azure_ml_integration import AzureMLIntegration # noqa: F401,E501
|
|
22
21
|
from flywheel.models.jupyterhub_workspace import JupyterhubWorkspace # noqa: F401,E501
|
|
23
22
|
|
|
24
23
|
class ProjectSettingsWorkspacesInput(object):
|
|
25
24
|
|
|
26
25
|
swagger_types = {
|
|
27
|
-
'jupyterhub': 'JupyterhubWorkspace'
|
|
28
|
-
'azureml': 'AzureMLIntegration'
|
|
26
|
+
'jupyterhub': 'JupyterhubWorkspace'
|
|
29
27
|
}
|
|
30
28
|
|
|
31
29
|
attribute_map = {
|
|
32
|
-
'jupyterhub': 'jupyterhub'
|
|
33
|
-
'azureml': 'azureml'
|
|
30
|
+
'jupyterhub': 'jupyterhub'
|
|
34
31
|
}
|
|
35
32
|
|
|
36
33
|
rattribute_map = {
|
|
37
|
-
'jupyterhub': 'jupyterhub'
|
|
38
|
-
'azureml': 'azureml'
|
|
34
|
+
'jupyterhub': 'jupyterhub'
|
|
39
35
|
}
|
|
40
36
|
|
|
41
|
-
def __init__(self, jupyterhub=None
|
|
37
|
+
def __init__(self, jupyterhub=None): # noqa: E501
|
|
42
38
|
"""ProjectSettingsWorkspacesInput - a model defined in Swagger"""
|
|
43
39
|
super(ProjectSettingsWorkspacesInput, self).__init__()
|
|
44
40
|
|
|
45
41
|
self._jupyterhub = None
|
|
46
|
-
self._azureml = None
|
|
47
42
|
self.discriminator = None
|
|
48
43
|
self.alt_discriminator = None
|
|
49
44
|
|
|
50
45
|
if jupyterhub is not None:
|
|
51
46
|
self.jupyterhub = jupyterhub
|
|
52
|
-
if azureml is not None:
|
|
53
|
-
self.azureml = azureml
|
|
54
47
|
|
|
55
48
|
@property
|
|
56
49
|
def jupyterhub(self):
|
|
@@ -73,27 +66,6 @@ class ProjectSettingsWorkspacesInput(object):
|
|
|
73
66
|
|
|
74
67
|
self._jupyterhub = jupyterhub
|
|
75
68
|
|
|
76
|
-
@property
|
|
77
|
-
def azureml(self):
|
|
78
|
-
"""Gets the azureml of this ProjectSettingsWorkspacesInput.
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
:return: The azureml of this ProjectSettingsWorkspacesInput.
|
|
82
|
-
:rtype: AzureMLIntegration
|
|
83
|
-
"""
|
|
84
|
-
return self._azureml
|
|
85
|
-
|
|
86
|
-
@azureml.setter
|
|
87
|
-
def azureml(self, azureml):
|
|
88
|
-
"""Sets the azureml of this ProjectSettingsWorkspacesInput.
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
:param azureml: The azureml of this ProjectSettingsWorkspacesInput. # noqa: E501
|
|
92
|
-
:type: AzureMLIntegration
|
|
93
|
-
"""
|
|
94
|
-
|
|
95
|
-
self._azureml = azureml
|
|
96
|
-
|
|
97
69
|
|
|
98
70
|
@staticmethod
|
|
99
71
|
def positional_to_model(value):
|
flywheel/models/search_query.py
CHANGED
|
@@ -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,
|
|
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,52 +1,52 @@
|
|
|
1
|
-
flywheel/__init__.py,sha256=
|
|
2
|
-
flywheel/api_client.py,sha256=
|
|
1
|
+
flywheel/__init__.py,sha256=DKg8-tTGPbrjFuF_6xfSoADp-id1_CRTzVCUZujJPPQ,44621
|
|
2
|
+
flywheel/api_client.py,sha256=SYU-53ZoofG91WsAxmZjOQiTbfnZE_Yl7aTVUA1ZcuQ,29570
|
|
3
3
|
flywheel/client.py,sha256=LMvn2aSdtn-waCpXzux8FKJxEB0469SJg5ZNnB5BqTc,10476
|
|
4
|
-
flywheel/configuration.py,sha256=
|
|
4
|
+
flywheel/configuration.py,sha256=uk-YYCI_QJLEWS3WlkKMS9dAr_YbDEB9oDEaLYvBYwk,8639
|
|
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=SwmA-eLKdhUvrbXZQejmFXxV3UuYeinoMIWCW5NNv1U,396918
|
|
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=
|
|
16
|
-
flywheel/api/analyses_api.py,sha256=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
33
|
-
flywheel/api/jobs_api.py,sha256=
|
|
32
|
+
flywheel/api/groups_api.py,sha256=Jo-5nsuVG5Sb21NDizC-sNRs9QUvTyIHTigWQXVu4Rw,113622
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
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=
|
|
49
|
+
flywheel/models/__init__.py,sha256=m0OYBRbvRyS6hrtuu08fa9MnCbz00akFmDMWtBEtN4A,42497
|
|
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=
|
|
67
|
+
flywheel/models/action.py,sha256=fS76JIhFWzKS9vzc7stuY4lAojzNTvupDEfJbMIemrc,3436
|
|
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
|
|
@@ -92,12 +92,6 @@ flywheel/models/avatars.py,sha256=rvnQEtfdlEwt5GPSZ-NwnINO0c58MJxEZdZMj-hPrX8,57
|
|
|
92
92
|
flywheel/models/aws_creds.py,sha256=c7Gk7rQ2Qu6scHPLwFUu_8RHu5GMqXuWdWVPoe09Ti0,5661
|
|
93
93
|
flywheel/models/aws_storage.py,sha256=Z_h1SJzBgJH8AKrol9vQmrfGfG2IYNN3Yl5WD_lwR4E,9249
|
|
94
94
|
flywheel/models/azure_creds.py,sha256=YSe6kfxVZQWgXxA1SitQbbtoibOj6SnFmUguXFhkM0U,5572
|
|
95
|
-
flywheel/models/azure_ml_account.py,sha256=EuiipOG5FH0WMWvupxmpd4XkN618Q9oIQeitMe72dp8,5136
|
|
96
|
-
flywheel/models/azure_ml_initialization.py,sha256=tLi5iDETyY4V2qTI_UILNswUYNMpHFH3AeJcUAfP8zg,7585
|
|
97
|
-
flywheel/models/azure_ml_integration.py,sha256=BqSOhHO0p5VlivYRmtEpx-3jlNAH2UsLblolgPtUgGQ,6531
|
|
98
|
-
flywheel/models/azure_ml_resource_init_status.py,sha256=bq0BczJrtxq-uOGy1xJ3lWFI4K1n1OayRNOGxs5KARs,669
|
|
99
|
-
flywheel/models/azure_ml_workspace.py,sha256=rq8sxsCU3D6OBTr24VI-TDdOzoK-ddzoQ3epQ1Y9pcc,9250
|
|
100
|
-
flywheel/models/azure_ml_workspace_input.py,sha256=yvo28iju0V7gvYYdoXBSjV3SH47LHUSRJ9qMyppcP5E,5300
|
|
101
95
|
flywheel/models/base_aet.py,sha256=2CHubbZHUifaLbB9V_RVJFmTO-HrC4NLxsf66gMwdZw,6181
|
|
102
96
|
flywheel/models/base_compute.py,sha256=xgVuApFltjgYlF9JVvJXzq5sIiVOslZ-iaian6DHHPM,11185
|
|
103
97
|
flywheel/models/batch.py,sha256=rNoUcYjqktWkcY1Z_FKuJbmBtEW_Ek6I1x3PbAtV2Po,8879
|
|
@@ -176,7 +170,7 @@ flywheel/models/container_reference.py,sha256=wcTb2v4lRrLU7oxeIooS0kZyxD-q9rDOBZ
|
|
|
176
170
|
flywheel/models/container_reference_with_label.py,sha256=wb6U1ckU-y0PoO6U0aKh6doVgFbgSsrrFk3IVwYV2KA,5990
|
|
177
171
|
flywheel/models/container_session_parents.py,sha256=gMIcIwUfFRipoIx2u_6eeSzCxnrPR97c1os-4Jke10U,531
|
|
178
172
|
flywheel/models/container_subject_parents.py,sha256=uwrfrwLpL8Gdxc_s2o_iV5kFjrmSlmA9dT7JmvjpXgg,531
|
|
179
|
-
flywheel/models/container_type.py,sha256=
|
|
173
|
+
flywheel/models/container_type.py,sha256=cJHOelgRr7IuaQbCqUPslFJs3j-apqgpsrJBXVAIaKo,821
|
|
180
174
|
flywheel/models/container_uidcheck.py,sha256=Ld7gohp29Pm28SYlUoV07iAj-kM8quUoXBCo8jJ5KVA,7105
|
|
181
175
|
flywheel/models/container_update.py,sha256=JN5C01CeKegQImm7kE9TD3AytKfafL5_rMahbJGYoT0,3916
|
|
182
176
|
flywheel/models/context_input.py,sha256=PyafRR26gT42JPHW-VvlawJrxwHK6eZ-i4hZm_e2wl4,5649
|
|
@@ -186,7 +180,7 @@ flywheel/models/core_models_jobs_api_key_input.py,sha256=yzs7jLOGCFeNuUENM4mxesu
|
|
|
186
180
|
flywheel/models/create_report_input.py,sha256=JpkgTHRQA8TK_K1ViU5utiX_XV0YIO1ZekkPlpxTt70,7323
|
|
187
181
|
flywheel/models/creds.py,sha256=kFhJ7_1zmHzHneoan4XKlJ7iRDIgZKuZFbnjCBQg28o,3876
|
|
188
182
|
flywheel/models/curator.py,sha256=S1yhs6s-gCj-Zqz0NWrXE873xsBq7Ha4Ym82qWeABDs,5726
|
|
189
|
-
flywheel/models/current_user_output.py,sha256=
|
|
183
|
+
flywheel/models/current_user_output.py,sha256=p7Zlfajmtqf3PRbDLBtvGhPKaU6zv2QVRvc5oiYp4GY,17621
|
|
190
184
|
flywheel/models/daily_report_usage.py,sha256=Fyst4zrcXpBPnTdVWm_vmRf8aNJhhZSVyHy4F-MdB9E,18632
|
|
191
185
|
flywheel/models/data_strategy.py,sha256=CSkjkzS6o8TglM0zaTxykMoAIztFdIoNUauzwMyAhTs,572
|
|
192
186
|
flywheel/models/data_view.py,sha256=T-6NU0roubb9wpij4MXS33GZkoyAKT1S2IbJE3tFS8Q,541
|
|
@@ -205,6 +199,7 @@ flywheel/models/data_view_save_data_view_input.py,sha256=5haBMXxk-xAHEZNy4V-_TAg
|
|
|
205
199
|
flywheel/models/data_view_zip_filter_spec.py,sha256=60_tTjdrqUw0d-QLl4pHjKMFu1YaeH-mcF6L6PRdF3Y,6233
|
|
206
200
|
flywheel/models/default_flywheel_role.py,sha256=-AjXC5pWQXf7OmTDAWcGvaadd49ofv4HFuLdpj9iJKU,583
|
|
207
201
|
flywheel/models/deid_log_skip_reason.py,sha256=KtHQjBrER4gEk8vXd1cjvuJDQ7LajqwgHuDgWDAMs74,615
|
|
202
|
+
flywheel/models/delete_by_search_query.py,sha256=5pcSY1SSQsqOwUAo2GYswngRsg8aMSxMU7BmlSt5Ktk,7541
|
|
208
203
|
flywheel/models/deleted_file.py,sha256=VrwLIAu1316bVu6gk41czolPCmZnvmUm_4AdKSh9iM0,11647
|
|
209
204
|
flywheel/models/deleted_result.py,sha256=3FAnMsLOoT20mch6-wNRSvFOkEJbetm45_oR7CHEorE,5584
|
|
210
205
|
flywheel/models/deprecated_action.py,sha256=iuUrtOSr6r2iW-s6dK7YVFf3e-QfGySLE9CmO2sdbD8,602
|
|
@@ -240,7 +235,7 @@ flywheel/models/egress_provider_id.py,sha256=1dKUprJXQii7w_sdUr_hB_PebJDkLgZt9yj
|
|
|
240
235
|
flywheel/models/exchange_storage.py,sha256=J5ki23OZ78IU-snirVzcbXd6Jjuek4FjwHGG1FTlIzM,6719
|
|
241
236
|
flywheel/models/executor_info.py,sha256=nbvDWU_yEi_xwpF52y186xEgKkuKSjmBLGOGqmVA_Wg,9216
|
|
242
237
|
flywheel/models/export_templates.py,sha256=fAW_tPW2tBT1DhuzF4nS7GwSgvqHkFLED--Swl4ndco,5495
|
|
243
|
-
flywheel/models/features.py,sha256=
|
|
238
|
+
flywheel/models/features.py,sha256=epQtpQu4j8A2rxPO-lSjpaTgKhO6XBhLJqyT9MVN7Ig,54288
|
|
244
239
|
flywheel/models/field_change.py,sha256=H0QoBOIJuzgBsryMejJnhu5Vzwa2FpZ2ChQV7NnAgLU,7027
|
|
245
240
|
flywheel/models/field_change_log_document.py,sha256=-G5oxplkcregMMHywMAXuexl5x21PRe5X2SQxaIaAj0,7091
|
|
246
241
|
flywheel/models/file.py,sha256=SkL9vxFcvaTwveNQ8TO-33CnJ_EJttLSLf9iFInhSgw,27877
|
|
@@ -447,7 +442,7 @@ flywheel/models/modality_modify.py,sha256=M8hfkMZr4QlelTkdn5dNclboT0PZgX8xfWtnRA
|
|
|
447
442
|
flywheel/models/modality_output.py,sha256=1FR4OqLFCoA4XY4JNA7UxQvDf5bym58QtDq5reLxYBM,7348
|
|
448
443
|
flywheel/models/modified_result.py,sha256=MYqVs34hSB2_JdgWDaThgkVmbx3MKhAEFKnhleJpeXU,5300
|
|
449
444
|
flywheel/models/modify_report_input.py,sha256=bYbiFCrJHAfIs9--slG5I6v8VvhW5oPGvuLYI_9nBkA,4714
|
|
450
|
-
flywheel/models/modify_user_input.py,sha256=
|
|
445
|
+
flywheel/models/modify_user_input.py,sha256=32SwhuJ3xZBzYZuk5yriCuaQYGdkYbG4qBWGxQqqOiQ,11593
|
|
451
446
|
flywheel/models/move_conflict.py,sha256=UvjPbnV7zqcMLALpyiS61H6uT2DVns-LT9S2WJxFmrE,8168
|
|
452
447
|
flywheel/models/note.py,sha256=9wVVvRZU_6KmDnN8CNqHD12FFQFmWR0avNXiqflUfk8,9714
|
|
453
448
|
flywheel/models/note_input.py,sha256=PME-p3R2i9SSmsMT_xn3i5TUT5jwVsriKKWoh6KSiYc,4515
|
|
@@ -503,8 +498,8 @@ flywheel/models/project_settings_input.py,sha256=a1CpJ4vHxOK2Pzyrmpn1L0RD7QDfTwq
|
|
|
503
498
|
flywheel/models/project_settings_output.py,sha256=Q3G764ESOiUFZAX_IBJim62XrPhFKIiJWyo5_3fd-08,8967
|
|
504
499
|
flywheel/models/project_settings_sharing.py,sha256=xjCScYFS5Xx0AYnqTbgCnp9lMYIAGidUVXHRl-CE3kU,10194
|
|
505
500
|
flywheel/models/project_settings_sharing_input.py,sha256=0pWyRu1XOkjvxFiLrfdgAhoHTWup5BzobsPPwlvCO8Y,10653
|
|
506
|
-
flywheel/models/project_settings_workspaces.py,sha256=
|
|
507
|
-
flywheel/models/project_settings_workspaces_input.py,sha256=
|
|
501
|
+
flywheel/models/project_settings_workspaces.py,sha256=8CkUpTe3aVRvbB8j5US8NyazbVeaGh7VngB8byzG7kc,4760
|
|
502
|
+
flywheel/models/project_settings_workspaces_input.py,sha256=j0f9EKfUxXaAXM9zaYrUObf05wWed7IFDHQCnfYyeUw,4889
|
|
508
503
|
flywheel/models/project_share_level.py,sha256=bLJqate_wODfnwjb2sW5yEeZQqnKR1DgsZ8FEs9DJqY,601
|
|
509
504
|
flywheel/models/project_sharing_settings_project_contact.py,sha256=Qzxdl1BWV6TWO90AdQDSZV8RqhUqkBROZ_izIvfybFA,544
|
|
510
505
|
flywheel/models/project_sharing_settings_project_counters.py,sha256=NjT4K9LGxXHapIy2F370HSmNfiHSjoNDzf7v1HYogTM,935
|
|
@@ -599,7 +594,7 @@ flywheel/models/search_parent_subject.py,sha256=RtBJbXJxvgndKCw_nsr9479-p3QHM7Zc
|
|
|
599
594
|
flywheel/models/search_parse_error.py,sha256=MSA8gi6-e8zf5XOJIHGljFxZStB760pXjf_LCa_tJF0,6719
|
|
600
595
|
flywheel/models/search_parse_search_query_result.py,sha256=Q1-U1aI3QdKcpUi99XCOqJ_G4QCMfK1shIWJhvGwSt0,939
|
|
601
596
|
flywheel/models/search_project_response.py,sha256=wyDeDUCSK966q5jRuNHGFtFGieUeEA_pbR70a37OC0E,5300
|
|
602
|
-
flywheel/models/search_query.py,sha256=
|
|
597
|
+
flywheel/models/search_query.py,sha256=qkVpZGRTQPoaIu_vyQ21HQ6772kUwGE6ZtaAQBOH4xs,9405
|
|
603
598
|
flywheel/models/search_query_suggestions.py,sha256=ceEvC8QE3PZ8ImVXqvy_7vpai0mgwWdJCpyeJNV1TCA,954
|
|
604
599
|
flywheel/models/search_response.py,sha256=AyMrcSWoEw88YGdrYOIWDtf3xxImHvLJWEztlWrw348,12912
|
|
605
600
|
flywheel/models/search_return_type.py,sha256=DBR_7NY_OJavFYl9vUpH3YjybEaiCcn4kWFzXrut6eo,680
|
|
@@ -706,8 +701,8 @@ flywheel/models/virus_scan_state.py,sha256=zBmk7x3ZoDhEozIeD-Gw7CEkU7yWYKFMFXklL
|
|
|
706
701
|
flywheel/models/work_in_progress_features.py,sha256=dZ_cJTztcU3wPIUKptwZzb7hdv9mo27wXfWgolkJa1k,3944
|
|
707
702
|
flywheel/models/zipfile_info.py,sha256=8ivqs0rTQaiC8KirTaK_WqSGkLvCndI_58dylOBKwa4,5243
|
|
708
703
|
flywheel/models/zipfile_member_info.py,sha256=zAg9wRUeYXbz6bvXdo4xYFHtvv9eRSCjvyaTrQ3zvN4,6346
|
|
709
|
-
flywheel_sdk-20.0.
|
|
710
|
-
flywheel_sdk-20.0.
|
|
711
|
-
flywheel_sdk-20.0.
|
|
712
|
-
flywheel_sdk-20.0.
|
|
713
|
-
flywheel_sdk-20.0.
|
|
704
|
+
flywheel_sdk-20.1.0.dist-info/LICENSE.txt,sha256=F_Wp8b8L-2vc2xxcRr402gN1gg-2y0p2oG8aSj3hdMA,1057
|
|
705
|
+
flywheel_sdk-20.1.0.dist-info/METADATA,sha256=00XF6AWbTQvDSpz2khTEVgiiQzXE1g5LxQ8fwRXWdCc,1094
|
|
706
|
+
flywheel_sdk-20.1.0.dist-info/WHEEL,sha256=rF4EZyR2XVS6irmOHQIJx2SUqXLZKRMUrjsg8UwN-XQ,109
|
|
707
|
+
flywheel_sdk-20.1.0.dist-info/top_level.txt,sha256=BQ1fXyhiudo2To7zMNcPOOGa6qtZuhx0V_I7CO-vU6w,9
|
|
708
|
+
flywheel_sdk-20.1.0.dist-info/RECORD,,
|