flywheel-sdk 20.3.0rc0__py2.py3-none-any.whl → 20.3.2rc0__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/api_client.py +1 -1
- flywheel/configuration.py +2 -2
- flywheel/flywheel.py +1 -1
- flywheel/models/__init__.py +1 -1
- flywheel/models/session_copy_input.py +8 -1
- {flywheel_sdk-20.3.0rc0.dist-info → flywheel_sdk-20.3.2rc0.dist-info}/METADATA +1 -1
- {flywheel_sdk-20.3.0rc0.dist-info → flywheel_sdk-20.3.2rc0.dist-info}/RECORD +10 -10
- {flywheel_sdk-20.3.0rc0.dist-info → flywheel_sdk-20.3.2rc0.dist-info}/WHEEL +1 -1
- {flywheel_sdk-20.3.0rc0.dist-info → flywheel_sdk-20.3.2rc0.dist-info}/licenses/LICENSE.txt +0 -0
- {flywheel_sdk-20.3.0rc0.dist-info → flywheel_sdk-20.3.2rc0.dist-info}/top_level.txt +0 -0
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.3.
|
|
87
|
+
self.user_agent = 'Swagger-Codegen/20.3.2-rc0/python'
|
|
88
88
|
self.last_response = None
|
|
89
89
|
self._version_check_fn = None
|
|
90
90
|
self._context = context
|
flywheel/configuration.py
CHANGED
|
@@ -253,8 +253,8 @@ class Configuration(six.with_metaclass(TypeWithDefault, object)):
|
|
|
253
253
|
return "Python SDK Debug Report:\n"\
|
|
254
254
|
"OS: {env}\n"\
|
|
255
255
|
"Python Version: {pyversion}\n"\
|
|
256
|
-
"Version of the API: 20.3.
|
|
257
|
-
"SDK Package Version: 20.3.
|
|
256
|
+
"Version of the API: 20.3.2-rc0\n"\
|
|
257
|
+
"SDK Package Version: 20.3.2-rc0".\
|
|
258
258
|
format(env=sys.platform, pyversion=sys.version)
|
|
259
259
|
|
|
260
260
|
def enable_message_cutoff(self, message_cutoff):
|
flywheel/flywheel.py
CHANGED
flywheel/models/__init__.py
CHANGED
|
@@ -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.3.
|
|
9
|
+
OpenAPI spec version: 20.3.2-rc0
|
|
10
10
|
|
|
11
11
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
12
12
|
"""
|
|
@@ -54,7 +54,8 @@ class SessionCopyInput(object):
|
|
|
54
54
|
self.discriminator = None
|
|
55
55
|
self.alt_discriminator = None
|
|
56
56
|
|
|
57
|
-
|
|
57
|
+
if dst_session_label is not None:
|
|
58
|
+
self.dst_session_label = dst_session_label
|
|
58
59
|
if dst_project_id is not None:
|
|
59
60
|
self.dst_project_id = dst_project_id
|
|
60
61
|
if dst_subject_id is not None:
|
|
@@ -65,6 +66,7 @@ class SessionCopyInput(object):
|
|
|
65
66
|
def dst_session_label(self):
|
|
66
67
|
"""Gets the dst_session_label of this SessionCopyInput.
|
|
67
68
|
|
|
69
|
+
Label to apply to the copied session
|
|
68
70
|
|
|
69
71
|
:return: The dst_session_label of this SessionCopyInput.
|
|
70
72
|
:rtype: str
|
|
@@ -75,6 +77,7 @@ class SessionCopyInput(object):
|
|
|
75
77
|
def dst_session_label(self, dst_session_label):
|
|
76
78
|
"""Sets the dst_session_label of this SessionCopyInput.
|
|
77
79
|
|
|
80
|
+
Label to apply to the copied session
|
|
78
81
|
|
|
79
82
|
:param dst_session_label: The dst_session_label of this SessionCopyInput. # noqa: E501
|
|
80
83
|
:type: str
|
|
@@ -86,6 +89,7 @@ class SessionCopyInput(object):
|
|
|
86
89
|
def dst_project_id(self):
|
|
87
90
|
"""Gets the dst_project_id of this SessionCopyInput.
|
|
88
91
|
|
|
92
|
+
Project to copy to
|
|
89
93
|
|
|
90
94
|
:return: The dst_project_id of this SessionCopyInput.
|
|
91
95
|
:rtype: str
|
|
@@ -96,6 +100,7 @@ class SessionCopyInput(object):
|
|
|
96
100
|
def dst_project_id(self, dst_project_id):
|
|
97
101
|
"""Sets the dst_project_id of this SessionCopyInput.
|
|
98
102
|
|
|
103
|
+
Project to copy to
|
|
99
104
|
|
|
100
105
|
:param dst_project_id: The dst_project_id of this SessionCopyInput. # noqa: E501
|
|
101
106
|
:type: str
|
|
@@ -107,6 +112,7 @@ class SessionCopyInput(object):
|
|
|
107
112
|
def dst_subject_id(self):
|
|
108
113
|
"""Gets the dst_subject_id of this SessionCopyInput.
|
|
109
114
|
|
|
115
|
+
Subject to copy to
|
|
110
116
|
|
|
111
117
|
:return: The dst_subject_id of this SessionCopyInput.
|
|
112
118
|
:rtype: str
|
|
@@ -117,6 +123,7 @@ class SessionCopyInput(object):
|
|
|
117
123
|
def dst_subject_id(self, dst_subject_id):
|
|
118
124
|
"""Sets the dst_subject_id of this SessionCopyInput.
|
|
119
125
|
|
|
126
|
+
Subject to copy to
|
|
120
127
|
|
|
121
128
|
:param dst_subject_id: The dst_subject_id of this SessionCopyInput. # noqa: E501
|
|
122
129
|
:type: str
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
flywheel/__init__.py,sha256=cHiW2b3yaRFfaz68ObkD2r40hK9hV8YrUVuqvipprz8,45074
|
|
2
|
-
flywheel/api_client.py,sha256=
|
|
2
|
+
flywheel/api_client.py,sha256=F-_xga_3eSReIIgVlaVWw53CKF6iFNGHGoQsj09O1fY,29574
|
|
3
3
|
flywheel/client.py,sha256=LMvn2aSdtn-waCpXzux8FKJxEB0469SJg5ZNnB5BqTc,10476
|
|
4
|
-
flywheel/configuration.py,sha256=
|
|
4
|
+
flywheel/configuration.py,sha256=ws6ANCu9D8zW9Mco4zykU6Oa39cB6C0f0LXquaoR0As,10830
|
|
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=h5hxD03Ye4lZJflxh3Ub_zwFS273wWq2wTLf2CQz-lM,6887
|
|
8
|
-
flywheel/flywheel.py,sha256=
|
|
8
|
+
flywheel/flywheel.py,sha256=FNDXAr77tJNtI3Oy0HEFXkXob9NoFDo9-jJpCMvrmdI,414531
|
|
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
|
|
@@ -47,7 +47,7 @@ flywheel/api/uids_api.py,sha256=MjH6i7ASSUa1VGIZVuTHIJFelWM7drswXJVhKxk05eg,5032
|
|
|
47
47
|
flywheel/api/upload_api.py,sha256=pMjW-OAIZnjqF05ym8vjPga-vYRq69aDa0zFSMUbxeU,38854
|
|
48
48
|
flywheel/api/users_api.py,sha256=CGylcLYcF0XYIdaeVNpe6I-llsNpyaQq6YlHPmJwzAE,86167
|
|
49
49
|
flywheel/api/views_api.py,sha256=Xk0N-j_CRAglraip5Uw_tzDVfmW7Fy1IgTofZ_RinEI,44765
|
|
50
|
-
flywheel/models/__init__.py,sha256=
|
|
50
|
+
flywheel/models/__init__.py,sha256=cXYUONUolij_ut3Qf47dVRM5H-mawI_jOzlxUoth9tw,42893
|
|
51
51
|
flywheel/models/access_level.py,sha256=zSgO2gWTTSo-p1v49ilz3Q5ZizZ7DESA5P6Ur67fgX0,575
|
|
52
52
|
flywheel/models/access_permission.py,sha256=-IYmy-yb8zecmGZx7iE0bhZW7PvuWpm3zAHr2FwCyLI,5336
|
|
53
53
|
flywheel/models/access_permission_output.py,sha256=faCnvyMYozmSVSlLFYMdJw84hQc3ugxx7LH2JzBfnoE,5202
|
|
@@ -619,7 +619,7 @@ flywheel/models/service_aet.py,sha256=Gr2CsDqGOeIO7dEEJc4vFzeI6GAZH2rl-VlaCc_f6Y
|
|
|
619
619
|
flywheel/models/service_aet_input.py,sha256=ZiOQUFT8vYOsDvc1hUzgai5B7Kfn-GC02U7oZy3KJ8k,7119
|
|
620
620
|
flywheel/models/session.py,sha256=g8w6BT0P6nT3gFjl9ruDJXnHWWDnNIdBOzLAyPogKfU,512
|
|
621
621
|
flywheel/models/session_container_output.py,sha256=gpJk2UzU4yebx4rJ8WCH-YffCsh6lQZY_UCJrY_3rLU,1029
|
|
622
|
-
flywheel/models/session_copy_input.py,sha256=
|
|
622
|
+
flywheel/models/session_copy_input.py,sha256=FMLH8HvS9ttsspcKnSNWcv2i7nrbBWbW8H0k5JHhnxA,7300
|
|
623
623
|
flywheel/models/session_embedded_subject.py,sha256=cfdNfZ-IV1xpolhv-PTLvHZyu3um-Te_3DRoYhj7hFE,7799
|
|
624
624
|
flywheel/models/session_input.py,sha256=9TtozWniwYzahR6y-82yL20S6QLpd4BaAxt5QtFn09w,11016
|
|
625
625
|
flywheel/models/session_list_output.py,sha256=Ak_O7L4DmD6vWJBLCKJUhrZaOBe0e5xFF5LTSCugSGc,23850
|
|
@@ -709,8 +709,8 @@ flywheel/models/virus_scan_state.py,sha256=zBmk7x3ZoDhEozIeD-Gw7CEkU7yWYKFMFXklL
|
|
|
709
709
|
flywheel/models/work_in_progress_features.py,sha256=dZ_cJTztcU3wPIUKptwZzb7hdv9mo27wXfWgolkJa1k,3944
|
|
710
710
|
flywheel/models/zipfile_info.py,sha256=8ivqs0rTQaiC8KirTaK_WqSGkLvCndI_58dylOBKwa4,5243
|
|
711
711
|
flywheel/models/zipfile_member_info.py,sha256=zAg9wRUeYXbz6bvXdo4xYFHtvv9eRSCjvyaTrQ3zvN4,6346
|
|
712
|
-
flywheel_sdk-20.3.
|
|
713
|
-
flywheel_sdk-20.3.
|
|
714
|
-
flywheel_sdk-20.3.
|
|
715
|
-
flywheel_sdk-20.3.
|
|
716
|
-
flywheel_sdk-20.3.
|
|
712
|
+
flywheel_sdk-20.3.2rc0.dist-info/licenses/LICENSE.txt,sha256=F_Wp8b8L-2vc2xxcRr402gN1gg-2y0p2oG8aSj3hdMA,1057
|
|
713
|
+
flywheel_sdk-20.3.2rc0.dist-info/METADATA,sha256=lE3qnPmY7Yy5IIDdWUtZhtqgEeRHIe-INrqd0rUamEA,1046
|
|
714
|
+
flywheel_sdk-20.3.2rc0.dist-info/WHEEL,sha256=AeO2BvogYWm3eGaHCvhzmUYt8ia7KfURiHzO_1atlys,109
|
|
715
|
+
flywheel_sdk-20.3.2rc0.dist-info/top_level.txt,sha256=BQ1fXyhiudo2To7zMNcPOOGa6qtZuhx0V_I7CO-vU6w,9
|
|
716
|
+
flywheel_sdk-20.3.2rc0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|