flywheel-sdk 19.5.0__py2.py3-none-any.whl → 19.5.0rc3__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 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/19.5.0/python'
87
+ self.user_agent = 'Swagger-Codegen/19.5.0-rc3/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: sdk-push.7b015124\n"\
256
- "SDK Package Version: 19.5.0".\
255
+ "Version of the API: 19.5.0-rc3\n"\
256
+ "SDK Package Version: 19.5.0-rc3".\
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 = "19.5.0"
43
+ SDK_VERSION = "19.5.0-rc3"
44
44
 
45
45
  def config_from_api_key(api_key):
46
46
  parts = api_key.split(':')
@@ -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: sdk-push.7b015124
9
+ OpenAPI spec version: 19.5.0-rc3
10
10
 
11
11
  Generated by: https://github.com/swagger-api/swagger-codegen.git
12
12
  """
@@ -25,8 +25,7 @@ class ProjectCopyFilter(object):
25
25
  'exclude_notes': 'bool',
26
26
  'exclude_tags': 'bool',
27
27
  'include_rules': 'list[str]',
28
- 'exclude_rules': 'list[str]',
29
- 'exclude_empty_containers': 'bool'
28
+ 'exclude_rules': 'list[str]'
30
29
  }
31
30
 
32
31
  attribute_map = {
@@ -34,8 +33,7 @@ class ProjectCopyFilter(object):
34
33
  'exclude_notes': 'exclude_notes',
35
34
  'exclude_tags': 'exclude_tags',
36
35
  'include_rules': 'include_rules',
37
- 'exclude_rules': 'exclude_rules',
38
- 'exclude_empty_containers': 'exclude_empty_containers'
36
+ 'exclude_rules': 'exclude_rules'
39
37
  }
40
38
 
41
39
  rattribute_map = {
@@ -43,11 +41,10 @@ class ProjectCopyFilter(object):
43
41
  'exclude_notes': 'exclude_notes',
44
42
  'exclude_tags': 'exclude_tags',
45
43
  'include_rules': 'include_rules',
46
- 'exclude_rules': 'exclude_rules',
47
- 'exclude_empty_containers': 'exclude_empty_containers'
44
+ 'exclude_rules': 'exclude_rules'
48
45
  }
49
46
 
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
47
+ def __init__(self, exclude_analysis=False, exclude_notes=False, exclude_tags=False, include_rules=None, exclude_rules=None): # noqa: E501
51
48
  """ProjectCopyFilter - a model defined in Swagger"""
52
49
  super(ProjectCopyFilter, self).__init__()
53
50
 
@@ -56,7 +53,6 @@ class ProjectCopyFilter(object):
56
53
  self._exclude_tags = None
57
54
  self._include_rules = None
58
55
  self._exclude_rules = None
59
- self._exclude_empty_containers = None
60
56
  self.discriminator = None
61
57
  self.alt_discriminator = None
62
58
 
@@ -70,8 +66,6 @@ class ProjectCopyFilter(object):
70
66
  self.include_rules = include_rules
71
67
  if exclude_rules is not None:
72
68
  self.exclude_rules = exclude_rules
73
- if exclude_empty_containers is not None:
74
- self.exclude_empty_containers = exclude_empty_containers
75
69
 
76
70
  @property
77
71
  def exclude_analysis(self):
@@ -178,27 +172,6 @@ class ProjectCopyFilter(object):
178
172
 
179
173
  self._exclude_rules = exclude_rules
180
174
 
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
-
202
175
 
203
176
  @staticmethod
204
177
  def positional_to_model(value):
@@ -21,20 +21,49 @@ import six
21
21
  class WorkInProgressFeatures(object):
22
22
 
23
23
  swagger_types = {
24
+ 'smart_copy_exc_empty': 'bool'
24
25
  }
25
26
 
26
27
  attribute_map = {
28
+ 'smart_copy_exc_empty': 'smart_copy_exc_empty'
27
29
  }
28
30
 
29
31
  rattribute_map = {
32
+ 'smart_copy_exc_empty': 'smart_copy_exc_empty'
30
33
  }
31
34
 
32
- def __init__(self): # noqa: E501
35
+ def __init__(self, smart_copy_exc_empty=False): # noqa: E501
33
36
  """WorkInProgressFeatures - a model defined in Swagger"""
34
37
  super(WorkInProgressFeatures, self).__init__()
38
+
39
+ self._smart_copy_exc_empty = None
35
40
  self.discriminator = None
36
41
  self.alt_discriminator = None
37
42
 
43
+ if smart_copy_exc_empty is not None:
44
+ self.smart_copy_exc_empty = smart_copy_exc_empty
45
+
46
+ @property
47
+ def smart_copy_exc_empty(self):
48
+ """Gets the smart_copy_exc_empty of this WorkInProgressFeatures.
49
+
50
+
51
+ :return: The smart_copy_exc_empty of this WorkInProgressFeatures.
52
+ :rtype: bool
53
+ """
54
+ return self._smart_copy_exc_empty
55
+
56
+ @smart_copy_exc_empty.setter
57
+ def smart_copy_exc_empty(self, smart_copy_exc_empty):
58
+ """Sets the smart_copy_exc_empty of this WorkInProgressFeatures.
59
+
60
+
61
+ :param smart_copy_exc_empty: The smart_copy_exc_empty of this WorkInProgressFeatures. # noqa: E501
62
+ :type: bool
63
+ """
64
+
65
+ self._smart_copy_exc_empty = smart_copy_exc_empty
66
+
38
67
 
39
68
  @staticmethod
40
69
  def positional_to_model(value):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: flywheel-sdk
3
- Version: 19.5.0
3
+ Version: 19.5.0rc3
4
4
  Summary: Flywheel SDK
5
5
  Home-page:
6
6
  Author-email: support@flywheel.io
@@ -1,11 +1,11 @@
1
1
  flywheel/__init__.py,sha256=LE9B1Aey0HGrusRPQc8yTl105-kI9h5yEqxUL6CrQzE,44975
2
- flywheel/api_client.py,sha256=RnoEoehs-FN_dlhBJzETyQfIteBf5BMw3v1lqD-GIk8,29570
2
+ flywheel/api_client.py,sha256=cvLdUTq6wzMBehCDpocnIHWImBrxRDgsYLJPg1m_txY,29574
3
3
  flywheel/client.py,sha256=LMvn2aSdtn-waCpXzux8FKJxEB0469SJg5ZNnB5BqTc,10476
4
- flywheel/configuration.py,sha256=tKSjImgktMzR0AUZQ0Ryihn9djFUP2-lbSYCRlJyQT8,8650
4
+ flywheel/configuration.py,sha256=8FOCQkEpN289AC8AAQu39gq5xiuT4r_PFP-kfC1xeXU,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=O7oC9TlZd2IxpZxk0wktow0dKL2dlJZi-i1Nbbw7TLQ,395085
8
+ flywheel/flywheel.py,sha256=uK1rG3IurRv1us_0NPFiRNppM949M33-pnVDCOV7Elw,395089
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=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=-eAz4T9PEhvG0OEOOos3BXLGxs7C8tcI8IjKXknNGEA,85396
48
48
  flywheel/api/views_api.py,sha256=ZbPYA_sOQ9qnOjkOUeioV0v08VPbsuuOnMP3EBySEVY,44375
49
- flywheel/models/__init__.py,sha256=Z38LQQcTl_xzNGGGnDB9JgPr_B2LO7EWTWZcYW9YhY8,42862
49
+ flywheel/models/__init__.py,sha256=HJ5TYbWkv6zYpc-ItYE0zf_f0LTZ9aun5Q2qqvY7MeY,42855
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
@@ -478,7 +478,7 @@ flywheel/models/project_aet_input.py,sha256=W8mzPlcJyc2KKgLCe05TpQdHmpy3mdJG8-eA
478
478
  flywheel/models/project_catalog_list_output.py,sha256=xeqKCNfqOmT4ms_6DQjqR5Uz6moTSAH_tkZbM6X9am8,542
479
479
  flywheel/models/project_contact.py,sha256=WiCoHfnq62ThKUss5hRCGhVGHv7YI_q5Un2OdqZlZIw,5266
480
480
  flywheel/models/project_container_output.py,sha256=ucS7vWJhh_ApVHqVZH5KNiVEkRpu2pVFdcMeS6sTTdE,1485
481
- flywheel/models/project_copy_filter.py,sha256=HqXwcoPqf7pH3_HXVtLA3X5xYqZrIvxT2uOvXbJ3OUw,9006
481
+ flywheel/models/project_copy_filter.py,sha256=wF2beP3GOFdtNdYoweMXHCaiYQ_uEdPJyrwH9j_cVD4,7970
482
482
  flywheel/models/project_copy_input.py,sha256=BR1AMjA3M77BNI1eBy2pm7bLOV-wlzFvWpuvnlAUfoU,6030
483
483
  flywheel/models/project_copy_output.py,sha256=VBNZPXCni0fMWoSj1s_hBhHkyZkMBXgF3hJnLTcI5jo,5939
484
484
  flywheel/models/project_copy_status.py,sha256=I1UPavaYxo3NDsLOn0-Y7ZlZ-N0Ml7II04NJ7WIZtZ4,657
@@ -703,11 +703,11 @@ flywheel/models/viewer_app_input.py,sha256=J20oeUcH8dkS1zo012sSA0aQazg4rP_RmEqyq
703
703
  flywheel/models/viewer_app_type.py,sha256=J7J_3DXnQz19w1D7AmCEWs8VFK0jTLBa2nCPG5Gzn2E,569
704
704
  flywheel/models/virus_scan.py,sha256=ZZJEwnQ7nkubX4qmQq-qkUPgJp-AvdYqAukxnDRrTp4,4553
705
705
  flywheel/models/virus_scan_state.py,sha256=zBmk7x3ZoDhEozIeD-Gw7CEkU7yWYKFMFXklLdTeu3s,602
706
- flywheel/models/work_in_progress_features.py,sha256=dZ_cJTztcU3wPIUKptwZzb7hdv9mo27wXfWgolkJa1k,3944
706
+ flywheel/models/work_in_progress_features.py,sha256=SwsL3txqMpIBJKrv52ljFshaPkxURMaRE9UCzfjfCDc,4912
707
707
  flywheel/models/zipfile_info.py,sha256=8ivqs0rTQaiC8KirTaK_WqSGkLvCndI_58dylOBKwa4,5243
708
708
  flywheel/models/zipfile_member_info.py,sha256=zAg9wRUeYXbz6bvXdo4xYFHtvv9eRSCjvyaTrQ3zvN4,6346
709
- flywheel_sdk-19.5.0.dist-info/LICENSE.txt,sha256=F_Wp8b8L-2vc2xxcRr402gN1gg-2y0p2oG8aSj3hdMA,1057
710
- flywheel_sdk-19.5.0.dist-info/METADATA,sha256=k_vIo21DhyS35qTFYFrJEj9FDpo_rrnA2ib9gzxDcXM,955
711
- flywheel_sdk-19.5.0.dist-info/WHEEL,sha256=pxeNX5JdtCe58PUSYP9upmc7jdRPgvT0Gm9kb1SHlVw,109
712
- flywheel_sdk-19.5.0.dist-info/top_level.txt,sha256=BQ1fXyhiudo2To7zMNcPOOGa6qtZuhx0V_I7CO-vU6w,9
713
- flywheel_sdk-19.5.0.dist-info/RECORD,,
709
+ flywheel_sdk-19.5.0rc3.dist-info/LICENSE.txt,sha256=F_Wp8b8L-2vc2xxcRr402gN1gg-2y0p2oG8aSj3hdMA,1057
710
+ flywheel_sdk-19.5.0rc3.dist-info/METADATA,sha256=BnLuhUwNEM1WJWtlxeBPGPs1GFl_X22eiGZYI2ZE8kc,958
711
+ flywheel_sdk-19.5.0rc3.dist-info/WHEEL,sha256=pxeNX5JdtCe58PUSYP9upmc7jdRPgvT0Gm9kb1SHlVw,109
712
+ flywheel_sdk-19.5.0rc3.dist-info/top_level.txt,sha256=BQ1fXyhiudo2To7zMNcPOOGa6qtZuhx0V_I7CO-vU6w,9
713
+ flywheel_sdk-19.5.0rc3.dist-info/RECORD,,