flywheel-sdk 19.1.0__py2.py3-none-any.whl → 19.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/api_client.py +1 -1
- flywheel/configuration.py +2 -2
- flywheel/flywheel.py +1 -1
- flywheel/models/__init__.py +1 -1
- flywheel/models/analysis_output.py +2 -4
- flywheel/models/analysis_output_inflated_job.py +2 -4
- flywheel/models/project_copy_filter.py +31 -4
- {flywheel_sdk-19.1.0.dist-info → flywheel_sdk-19.1.0rc0.dist-info}/METADATA +1 -1
- {flywheel_sdk-19.1.0.dist-info → flywheel_sdk-19.1.0rc0.dist-info}/RECORD +12 -12
- {flywheel_sdk-19.1.0.dist-info → flywheel_sdk-19.1.0rc0.dist-info}/WHEEL +1 -1
- {flywheel_sdk-19.1.0.dist-info → flywheel_sdk-19.1.0rc0.dist-info}/LICENSE.txt +0 -0
- {flywheel_sdk-19.1.0.dist-info → flywheel_sdk-19.1.0rc0.dist-info}/top_level.txt +0 -0
flywheel/api_client.py
CHANGED
|
@@ -81,7 +81,7 @@ class ApiClient(object):
|
|
|
81
81
|
self.default_query_params = []
|
|
82
82
|
self.cookie = cookie
|
|
83
83
|
# Set default User-Agent.
|
|
84
|
-
self.user_agent = 'Swagger-Codegen/19.1.0/python'
|
|
84
|
+
self.user_agent = 'Swagger-Codegen/19.1.0-rc0/python'
|
|
85
85
|
self.last_response = None
|
|
86
86
|
self._version_check_fn = None
|
|
87
87
|
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: 19.1.0\n"\
|
|
256
|
-
"SDK Package Version: 19.1.0".\
|
|
255
|
+
"Version of the API: 19.1.0-rc0\n"\
|
|
256
|
+
"SDK Package Version: 19.1.0-rc0".\
|
|
257
257
|
format(env=sys.platform, pyversion=sys.version)
|
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: 19.1.0
|
|
9
|
+
OpenAPI spec version: 19.1.0-rc0
|
|
10
10
|
|
|
11
11
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
12
12
|
"""
|
|
@@ -148,10 +148,8 @@ class AnalysisOutput(AnalysisMixin):
|
|
|
148
148
|
self.compute_provider_id = compute_provider_id
|
|
149
149
|
if join_origin is not None:
|
|
150
150
|
self.join_origin = join_origin
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
if original_copy_of is not None:
|
|
154
|
-
self.original_copy_of = original_copy_of
|
|
151
|
+
self.copy_of = copy_of
|
|
152
|
+
self.original_copy_of = original_copy_of
|
|
155
153
|
|
|
156
154
|
@property
|
|
157
155
|
def id(self):
|
|
@@ -148,10 +148,8 @@ class AnalysisOutputInflatedJob(object):
|
|
|
148
148
|
self.compute_provider_id = compute_provider_id
|
|
149
149
|
if join_origin is not None:
|
|
150
150
|
self.join_origin = join_origin
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
if original_copy_of is not None:
|
|
154
|
-
self.original_copy_of = original_copy_of
|
|
151
|
+
self.copy_of = copy_of
|
|
152
|
+
self.original_copy_of = original_copy_of
|
|
155
153
|
|
|
156
154
|
@property
|
|
157
155
|
def id(self):
|
|
@@ -25,7 +25,8 @@ class ProjectCopyFilter(object):
|
|
|
25
25
|
'exclude_notes': 'bool',
|
|
26
26
|
'exclude_tags': 'bool',
|
|
27
27
|
'include_rules': 'list[str]',
|
|
28
|
-
'exclude_rules': 'list[str]'
|
|
28
|
+
'exclude_rules': 'list[str]',
|
|
29
|
+
'exclude_empty_containers': 'bool'
|
|
29
30
|
}
|
|
30
31
|
|
|
31
32
|
attribute_map = {
|
|
@@ -33,7 +34,8 @@ class ProjectCopyFilter(object):
|
|
|
33
34
|
'exclude_notes': 'exclude_notes',
|
|
34
35
|
'exclude_tags': 'exclude_tags',
|
|
35
36
|
'include_rules': 'include_rules',
|
|
36
|
-
'exclude_rules': 'exclude_rules'
|
|
37
|
+
'exclude_rules': 'exclude_rules',
|
|
38
|
+
'exclude_empty_containers': 'exclude_empty_containers'
|
|
37
39
|
}
|
|
38
40
|
|
|
39
41
|
rattribute_map = {
|
|
@@ -41,10 +43,11 @@ class ProjectCopyFilter(object):
|
|
|
41
43
|
'exclude_notes': 'exclude_notes',
|
|
42
44
|
'exclude_tags': 'exclude_tags',
|
|
43
45
|
'include_rules': 'include_rules',
|
|
44
|
-
'exclude_rules': 'exclude_rules'
|
|
46
|
+
'exclude_rules': 'exclude_rules',
|
|
47
|
+
'exclude_empty_containers': 'exclude_empty_containers'
|
|
45
48
|
}
|
|
46
49
|
|
|
47
|
-
def __init__(self, exclude_analysis=False, exclude_notes=False, exclude_tags=False, include_rules=None, exclude_rules=None): # noqa: E501
|
|
50
|
+
def __init__(self, exclude_analysis=False, exclude_notes=False, exclude_tags=False, include_rules=None, exclude_rules=None, exclude_empty_containers=True): # noqa: E501
|
|
48
51
|
"""ProjectCopyFilter - a model defined in Swagger"""
|
|
49
52
|
super(ProjectCopyFilter, self).__init__()
|
|
50
53
|
|
|
@@ -53,6 +56,7 @@ class ProjectCopyFilter(object):
|
|
|
53
56
|
self._exclude_tags = None
|
|
54
57
|
self._include_rules = None
|
|
55
58
|
self._exclude_rules = None
|
|
59
|
+
self._exclude_empty_containers = None
|
|
56
60
|
self.discriminator = None
|
|
57
61
|
self.alt_discriminator = None
|
|
58
62
|
|
|
@@ -66,6 +70,8 @@ class ProjectCopyFilter(object):
|
|
|
66
70
|
self.include_rules = include_rules
|
|
67
71
|
if exclude_rules is not None:
|
|
68
72
|
self.exclude_rules = exclude_rules
|
|
73
|
+
if exclude_empty_containers is not None:
|
|
74
|
+
self.exclude_empty_containers = exclude_empty_containers
|
|
69
75
|
|
|
70
76
|
@property
|
|
71
77
|
def exclude_analysis(self):
|
|
@@ -172,6 +178,27 @@ class ProjectCopyFilter(object):
|
|
|
172
178
|
|
|
173
179
|
self._exclude_rules = exclude_rules
|
|
174
180
|
|
|
181
|
+
@property
|
|
182
|
+
def exclude_empty_containers(self):
|
|
183
|
+
"""Gets the exclude_empty_containers of this ProjectCopyFilter.
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
:return: The exclude_empty_containers of this ProjectCopyFilter.
|
|
187
|
+
:rtype: bool
|
|
188
|
+
"""
|
|
189
|
+
return self._exclude_empty_containers
|
|
190
|
+
|
|
191
|
+
@exclude_empty_containers.setter
|
|
192
|
+
def exclude_empty_containers(self, exclude_empty_containers):
|
|
193
|
+
"""Sets the exclude_empty_containers of this ProjectCopyFilter.
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
:param exclude_empty_containers: The exclude_empty_containers of this ProjectCopyFilter. # noqa: E501
|
|
197
|
+
:type: bool
|
|
198
|
+
"""
|
|
199
|
+
|
|
200
|
+
self._exclude_empty_containers = exclude_empty_containers
|
|
201
|
+
|
|
175
202
|
|
|
176
203
|
@staticmethod
|
|
177
204
|
def positional_to_model(value):
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
flywheel/__init__.py,sha256=k90flLAHQmy4g2aosIjzNWr6OWo1ivZAErqHjtYT0Gs,44933
|
|
2
|
-
flywheel/api_client.py,sha256=
|
|
2
|
+
flywheel/api_client.py,sha256=8SDdw3plDy7XCsnGH7Nv2uW-7GTYsVJDx_OZYexNpPo,28940
|
|
3
3
|
flywheel/client.py,sha256=LMvn2aSdtn-waCpXzux8FKJxEB0469SJg5ZNnB5BqTc,10476
|
|
4
|
-
flywheel/configuration.py,sha256
|
|
4
|
+
flywheel/configuration.py,sha256=8eDsSHOqPqJixgqRdCIhRzfmmot2zLqTgbdQPyqA3mk,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=d9-tJLR8sYxu9xGqKCgl5Dl42bpyIBXLm3spAdzHrY8,394296
|
|
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
|
|
@@ -46,7 +46,7 @@ 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=ThTGkL_oE-ixB9akEZEm2pogkYBa_m9qAM52W5ClRC0,82850
|
|
48
48
|
flywheel/api/views_api.py,sha256=ZbPYA_sOQ9qnOjkOUeioV0v08VPbsuuOnMP3EBySEVY,44375
|
|
49
|
-
flywheel/models/__init__.py,sha256=
|
|
49
|
+
flywheel/models/__init__.py,sha256=AeJ7Zw3LWznbSRu6wLyTjFh0eRGyDuMyIAUjRrpBTnY,42813
|
|
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
|
|
@@ -75,8 +75,8 @@ flywheel/models/analysis_list_output.py,sha256=mukPmIMpIo8H66MfY7HHEu6B__br-pTkx
|
|
|
75
75
|
flywheel/models/analysis_list_output_inflated_job.py,sha256=CLVtbqmIXpqfcvpwUaKSOP47-SaJkt8hLaRDd4uRM-o,18210
|
|
76
76
|
flywheel/models/analysis_modify_input.py,sha256=4cM87tlxJqGpK3UjnKS-vMdVnSAF9raak7CJ7XDvC5s,5309
|
|
77
77
|
flywheel/models/analysis_node.py,sha256=0VWp_qAjdHFCbEBuI8EYeUHgauv1AxVbdnlulFs5tfE,1104
|
|
78
|
-
flywheel/models/analysis_output.py,sha256=
|
|
79
|
-
flywheel/models/analysis_output_inflated_job.py,sha256=
|
|
78
|
+
flywheel/models/analysis_output.py,sha256=blzMTFzyny5IMt7HRF5kFLZ0ayIPPQA1ldgBHjFoRa0,17829
|
|
79
|
+
flywheel/models/analysis_output_inflated_job.py,sha256=Ib0sP5UJteCbzCBVQrJXgosesEvZNRx43TdTrvy_CXk,18266
|
|
80
80
|
flywheel/models/analysis_parents.py,sha256=hQgTsQnqtO4H_cTJciH36PPez9y-fOiqSkshvFqScPI,7144
|
|
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
|
|
@@ -477,7 +477,7 @@ flywheel/models/project_aet_input.py,sha256=W8mzPlcJyc2KKgLCe05TpQdHmpy3mdJG8-eA
|
|
|
477
477
|
flywheel/models/project_catalog_list_output.py,sha256=xeqKCNfqOmT4ms_6DQjqR5Uz6moTSAH_tkZbM6X9am8,542
|
|
478
478
|
flywheel/models/project_contact.py,sha256=WiCoHfnq62ThKUss5hRCGhVGHv7YI_q5Un2OdqZlZIw,5266
|
|
479
479
|
flywheel/models/project_container_output.py,sha256=ucS7vWJhh_ApVHqVZH5KNiVEkRpu2pVFdcMeS6sTTdE,1485
|
|
480
|
-
flywheel/models/project_copy_filter.py,sha256=
|
|
480
|
+
flywheel/models/project_copy_filter.py,sha256=HqXwcoPqf7pH3_HXVtLA3X5xYqZrIvxT2uOvXbJ3OUw,9006
|
|
481
481
|
flywheel/models/project_copy_input.py,sha256=BR1AMjA3M77BNI1eBy2pm7bLOV-wlzFvWpuvnlAUfoU,6030
|
|
482
482
|
flywheel/models/project_copy_output.py,sha256=VBNZPXCni0fMWoSj1s_hBhHkyZkMBXgF3hJnLTcI5jo,5939
|
|
483
483
|
flywheel/models/project_copy_status.py,sha256=I1UPavaYxo3NDsLOn0-Y7ZlZ-N0Ml7II04NJ7WIZtZ4,657
|
|
@@ -705,8 +705,8 @@ flywheel/models/virus_scan_state.py,sha256=zBmk7x3ZoDhEozIeD-Gw7CEkU7yWYKFMFXklL
|
|
|
705
705
|
flywheel/models/work_in_progress_features.py,sha256=dZ_cJTztcU3wPIUKptwZzb7hdv9mo27wXfWgolkJa1k,3944
|
|
706
706
|
flywheel/models/zipfile_info.py,sha256=8ivqs0rTQaiC8KirTaK_WqSGkLvCndI_58dylOBKwa4,5243
|
|
707
707
|
flywheel/models/zipfile_member_info.py,sha256=zAg9wRUeYXbz6bvXdo4xYFHtvv9eRSCjvyaTrQ3zvN4,6346
|
|
708
|
-
flywheel_sdk-19.1.
|
|
709
|
-
flywheel_sdk-19.1.
|
|
710
|
-
flywheel_sdk-19.1.
|
|
711
|
-
flywheel_sdk-19.1.
|
|
712
|
-
flywheel_sdk-19.1.
|
|
708
|
+
flywheel_sdk-19.1.0rc0.dist-info/LICENSE.txt,sha256=F_Wp8b8L-2vc2xxcRr402gN1gg-2y0p2oG8aSj3hdMA,1057
|
|
709
|
+
flywheel_sdk-19.1.0rc0.dist-info/METADATA,sha256=bmhLTIllhLLLY1iv8K3AMnSNiH0ads8CMTnGIXt2-H4,959
|
|
710
|
+
flywheel_sdk-19.1.0rc0.dist-info/WHEEL,sha256=WDDPHYzpiOIm6GP1C2_8y8W6q16ICddAgOHlhTje9Qc,109
|
|
711
|
+
flywheel_sdk-19.1.0rc0.dist-info/top_level.txt,sha256=BQ1fXyhiudo2To7zMNcPOOGa6qtZuhx0V_I7CO-vU6w,9
|
|
712
|
+
flywheel_sdk-19.1.0rc0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|