flywheel-sdk 18.4.1rc0__py2.py3-none-any.whl → 18.5.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.
Files changed (34) hide show
  1. flywheel/__init__.py +0 -1
  2. flywheel/api/acquisitions_api.py +4 -4
  3. flywheel/api/audit_trail_api.py +2 -2
  4. flywheel/api/collections_api.py +4 -4
  5. flywheel/api/gears_api.py +2 -2
  6. flywheel/api/groups_api.py +8 -8
  7. flywheel/api/projects_api.py +18 -18
  8. flywheel/api/roles_api.py +2 -2
  9. flywheel/api/sessions_api.py +4 -4
  10. flywheel/api/subjects_api.py +6 -6
  11. flywheel/api_client.py +1 -1
  12. flywheel/configuration.py +2 -2
  13. flywheel/flywheel.py +26 -26
  14. flywheel/models/__init__.py +1 -2
  15. flywheel/models/analysis_node.py +0 -1
  16. flywheel/models/analysis_output.py +3 -4
  17. flywheel/models/central_out.py +85 -4
  18. flywheel/models/change.py +3 -3
  19. flywheel/models/change_log_document.py +3 -3
  20. flywheel/models/config_out.py +1 -28
  21. flywheel/models/features.py +1 -28
  22. flywheel/models/field_change_log_document.py +3 -3
  23. flywheel/models/ingress_site_settings.py +3 -3
  24. flywheel/models/project_settings_input.py +3 -3
  25. flywheel/models/search_parent_analysis.py +0 -1
  26. flywheel/models/session_input.py +3 -3
  27. flywheel/models/session_modify.py +3 -3
  28. flywheel/models/validation_error.py +3 -3
  29. {flywheel_sdk-18.4.1rc0.dist-info → flywheel_sdk-18.5.0rc0.dist-info}/METADATA +6 -6
  30. {flywheel_sdk-18.4.1rc0.dist-info → flywheel_sdk-18.5.0rc0.dist-info}/RECORD +33 -34
  31. {flywheel_sdk-18.4.1rc0.dist-info → flywheel_sdk-18.5.0rc0.dist-info}/WHEEL +1 -1
  32. flywheel/models/open_tracing.py +0 -244
  33. {flywheel_sdk-18.4.1rc0.dist-info → flywheel_sdk-18.5.0rc0.dist-info}/LICENSE.txt +0 -0
  34. {flywheel_sdk-18.4.1rc0.dist-info → flywheel_sdk-18.5.0rc0.dist-info}/top_level.txt +0 -0
@@ -29,7 +29,7 @@ class IngressSiteSettings(object):
29
29
  'providers': 'IngressProviders',
30
30
  'ldap_sync': 'LdapSyncConfig',
31
31
  'viewer_apps': 'list[ViewerAppInput]',
32
- 'deid_profile': 'union[string,object]'
32
+ 'deid_profile': 'union[str,object]'
33
33
  }
34
34
 
35
35
  attribute_map = {
@@ -161,7 +161,7 @@ class IngressSiteSettings(object):
161
161
 
162
162
 
163
163
  :return: The deid_profile of this IngressSiteSettings.
164
- :rtype: union[string,object]
164
+ :rtype: union[str,object]
165
165
  """
166
166
  return self._deid_profile
167
167
 
@@ -171,7 +171,7 @@ class IngressSiteSettings(object):
171
171
 
172
172
 
173
173
  :param deid_profile: The deid_profile of this IngressSiteSettings. # noqa: E501
174
- :type: union[string,object]
174
+ :type: union[str,object]
175
175
  """
176
176
 
177
177
  self._deid_profile = deid_profile
@@ -27,7 +27,7 @@ class ProjectSettingsInput(object):
27
27
 
28
28
  swagger_types = {
29
29
  'viewer_apps': 'list[ViewerAppInput]',
30
- 'deid_profile': 'union[string,object]',
30
+ 'deid_profile': 'union[str,object]',
31
31
  'forms': 'dict(str, list[FormDefinition])',
32
32
  'external_routing_id': 'str',
33
33
  'sharing': 'ProjectSettingsSharingInput',
@@ -105,7 +105,7 @@ class ProjectSettingsInput(object):
105
105
 
106
106
 
107
107
  :return: The deid_profile of this ProjectSettingsInput.
108
- :rtype: union[string,object]
108
+ :rtype: union[str,object]
109
109
  """
110
110
  return self._deid_profile
111
111
 
@@ -115,7 +115,7 @@ class ProjectSettingsInput(object):
115
115
 
116
116
 
117
117
  :param deid_profile: The deid_profile of this ProjectSettingsInput. # noqa: E501
118
- :type: union[string,object]
118
+ :type: union[str,object]
119
119
  """
120
120
 
121
121
  self._deid_profile = deid_profile
@@ -23,7 +23,6 @@ from flywheel.models.analysis_parents import AnalysisParents # noqa: F401,E501
23
23
  from flywheel.models.container_reference import ContainerReference # noqa: F401,E501
24
24
  from flywheel.models.file_output import FileOutput # noqa: F401,E501
25
25
  from flywheel.models.gear_info import GearInfo # noqa: F401,E501
26
- from flywheel.models.job import Job # noqa: F401,E501
27
26
  from flywheel.models.join_origins import JoinOrigins # noqa: F401,E501
28
27
  from flywheel.models.note import Note # noqa: F401,E501
29
28
  from flywheel.models.search_parent_response import SearchParentResponse # noqa: F401,E501
@@ -27,7 +27,7 @@ class SessionInput(object):
27
27
  'uid': 'str',
28
28
  'timestamp': 'datetime',
29
29
  'timezone': 'str',
30
- 'subject': 'union[SessionEmbeddedSubject,string]',
30
+ 'subject': 'union[SessionEmbeddedSubject,str]',
31
31
  'age': 'int',
32
32
  'weight': 'float',
33
33
  'operator': 'str',
@@ -232,7 +232,7 @@ class SessionInput(object):
232
232
 
233
233
 
234
234
  :return: The subject of this SessionInput.
235
- :rtype: union[SessionEmbeddedSubject,string]
235
+ :rtype: union[SessionEmbeddedSubject,str]
236
236
  """
237
237
  return self._subject
238
238
 
@@ -242,7 +242,7 @@ class SessionInput(object):
242
242
 
243
243
 
244
244
  :param subject: The subject of this SessionInput. # noqa: E501
245
- :type: union[SessionEmbeddedSubject,string]
245
+ :type: union[SessionEmbeddedSubject,str]
246
246
  """
247
247
 
248
248
  self._subject = subject
@@ -25,7 +25,7 @@ class SessionModify(object):
25
25
  swagger_types = {
26
26
  'timestamp': 'datetime',
27
27
  'project': 'str',
28
- 'subject': 'union[string,SessionEmbeddedSubject]',
28
+ 'subject': 'union[str,SessionEmbeddedSubject]',
29
29
  'timezone': 'str',
30
30
  'label': 'str',
31
31
  'info': 'object',
@@ -159,7 +159,7 @@ class SessionModify(object):
159
159
 
160
160
 
161
161
  :return: The subject of this SessionModify.
162
- :rtype: union[string,SessionEmbeddedSubject]
162
+ :rtype: union[str,SessionEmbeddedSubject]
163
163
  """
164
164
  return self._subject
165
165
 
@@ -169,7 +169,7 @@ class SessionModify(object):
169
169
 
170
170
 
171
171
  :param subject: The subject of this SessionModify. # noqa: E501
172
- :type: union[string,SessionEmbeddedSubject]
172
+ :type: union[str,SessionEmbeddedSubject]
173
173
  """
174
174
 
175
175
  self._subject = subject
@@ -21,7 +21,7 @@ import six
21
21
  class ValidationError(object):
22
22
 
23
23
  swagger_types = {
24
- 'loc': 'list[union[string,integer]]',
24
+ 'loc': 'list[union[str,integer]]',
25
25
  'msg': 'str',
26
26
  'type': 'str'
27
27
  }
@@ -58,7 +58,7 @@ class ValidationError(object):
58
58
 
59
59
 
60
60
  :return: The loc of this ValidationError.
61
- :rtype: list[union[string,integer]]
61
+ :rtype: list[union[str,integer]]
62
62
  """
63
63
  return self._loc
64
64
 
@@ -68,7 +68,7 @@ class ValidationError(object):
68
68
 
69
69
 
70
70
  :param loc: The loc of this ValidationError. # noqa: E501
71
- :type: list[union[string,integer]]
71
+ :type: list[union[str,integer]]
72
72
  """
73
73
 
74
74
  self._loc = loc
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: flywheel-sdk
3
- Version: 18.4.1rc0
3
+ Version: 18.5.0rc0
4
4
  Summary: Flywheel SDK
5
5
  Home-page:
6
6
  Author-email: support@flywheel.io
@@ -9,12 +9,12 @@ Project-URL: Documentation, https://flywheel-io.gitlab.io/product/backend/sdk/br
9
9
  Project-URL: Source, https://gitlab.com/flywheel-io/product/backend/core
10
10
  Keywords: Swagger,Flywheel API,flywheel
11
11
  License-File: LICENSE.txt
12
- Requires-Dist: urllib3 (>=2.2.1)
13
- Requires-Dist: six (>=1.16)
14
- Requires-Dist: certifi (>=2024.2.2)
15
- Requires-Dist: python-dateutil (>=2.8.1)
12
+ Requires-Dist: urllib3 >=2.2.1
13
+ Requires-Dist: six >=1.16
14
+ Requires-Dist: certifi >=2024.2.2
15
+ Requires-Dist: python-dateutil >=2.8.1
16
16
  Requires-Dist: packaging
17
- Requires-Dist: requests (>=2.18.4)
17
+ Requires-Dist: requests >=2.18.4
18
18
  Requires-Dist: requests-toolbelt
19
19
 
20
20
 
@@ -1,25 +1,25 @@
1
- flywheel/__init__.py,sha256=4NIHmER5UBuFhieuLbsDRkPG-D3wjhDAPgLHqtw8v2M,44912
2
- flywheel/api_client.py,sha256=K_0N_XdAvsVVTAkBwKEGsZfVexAkm6zCDgn3U4Uo5fU,28940
1
+ flywheel/__init__.py,sha256=XcDpBJ6GE2vlOWTwdUfm_XpUbNutZMCPAo42G0Lb2Wc,44859
2
+ flywheel/api_client.py,sha256=Q8pfbNjbCul92AuXVm1NFhLlI2Y_dyHgUl9wPi780gY,28940
3
3
  flywheel/client.py,sha256=LMvn2aSdtn-waCpXzux8FKJxEB0469SJg5ZNnB5BqTc,10476
4
- flywheel/configuration.py,sha256=X1QljQmiGDAAEQ34RHSZ_fLsJHp5mRviI95fvyvxIIE,8647
4
+ flywheel/configuration.py,sha256=ODNnm29EBqUBzflWslqwIDip1qt_kE7Y7BExXfwKcr4,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=io5q_d4L2QjudkF3H6QGIUyDIHg2UZuGJKnwTBRvUcY,392778
8
+ flywheel/flywheel.py,sha256=H3tpBE5xtHJCuQIT7M4A1-ajcBpXwZQTtNmGMe-M4nA,392703
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
14
  flywheel/api/__init__.py,sha256=S0erMpSONSRh8RUbADUNnAczZwUhe-Lt9s8E4TMGH5M,1760
15
- flywheel/api/acquisitions_api.py,sha256=7LxO623_kOjyx-OqYzXMvCfGUsN2o7LsScX-_nN0myQ,208109
15
+ flywheel/api/acquisitions_api.py,sha256=dnt6KyZepf9BFzS00Crl3baF-r6BzpBZOOIVzHo9wDQ,208097
16
16
  flywheel/api/analyses_api.py,sha256=FCatFzJ9VyTJ8mMZL8zsiymsigyhgr4cvaUc0aC2J0w,110187
17
- flywheel/api/audit_trail_api.py,sha256=4zHOmkZZWZKCqehL9hpbWGtmOTbyLA-RiQr98nlRZSE,21498
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=M5lYMmry-Hm1LsfS5qKKxPai6cECskUmHapLnNZyUPw,4732
21
21
  flywheel/api/change_log_api.py,sha256=Nln-mDIsCRLcsDCBDo8e9sYv1jTCf6ql_JX9SfP5-ds,10003
22
- flywheel/api/collections_api.py,sha256=V1QKXlcaLGq-E8lAwJeyxT9o7lmgPByxUmgx2Yy-Qf8,158741
22
+ flywheel/api/collections_api.py,sha256=IZeCioCfQpVhXPz81mp0zcp7JRGSjXldpzdTpa8iQBI,158729
23
23
  flywheel/api/config_api.py,sha256=rBURhYVyT22BpOjDIQ_2iJ3UOnfspgjowQnz2cKND_s,9584
24
24
  flywheel/api/containers_api.py,sha256=nGtO8u8tWUql2U6H1uwVxsMU5_o4ylGB9y9RtEIi4mQ,205998
25
25
  flywheel/api/data_view_executions_api.py,sha256=vdQ3vRbebC2InZp0s7WUMGxJjRiq_aaXLrYIHi2lk4s,21544
@@ -28,25 +28,25 @@ flywheel/api/devices_api.py,sha256=jAQ9IRm0fqJWHuJwhTKmOIDAVNNjfdVCSIX2XvRl2hk,3
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=zO5BP3UlsUCQxh3lSQpicBtQE23p5d7wHtjYuJ-3uQk,73134
32
- flywheel/api/groups_api.py,sha256=Q7QXtx0iOelmtqmt776s6Vf-4kqw2VFfyL6biV06nws,105340
31
+ flywheel/api/gears_api.py,sha256=7vlmbJtmaVBnPoI3BRPc3EoQ28raVZh0x-5TobeTqcI,73128
32
+ flywheel/api/groups_api.py,sha256=h8lOXjpuVDB32isLSqFjtTfoI5quHi_WBeBZNliHSdA,105316
33
33
  flywheel/api/jobs_api.py,sha256=7FULp8eICFjCQLhYGHHOaAdaF86D6Pc98eGocaLeByU,73651
34
34
  flywheel/api/jupyterlab_servers_api.py,sha256=FiwtzKL6SClFXiBnzbf5dtjHCjonMQ3jB7FHlrFNGQM,9180
35
35
  flywheel/api/modalities_api.py,sha256=upQC0IB11zP08V2j0zXrd0b9A0xwr-u9pQNrOCO9N-U,20862
36
36
  flywheel/api/packfiles_api.py,sha256=3IQHwnmjCYBw7L4gJIxnZwpGdIT6LqEZPb-eIHG3t8o,3847
37
- flywheel/api/projects_api.py,sha256=4N1g2e4R3cYtorrt9VNn9FYqfFua6aUkpcn3cyO9KK4,324122
37
+ flywheel/api/projects_api.py,sha256=TpfrsG5a0_meckSF0bD-hFlCtHfYrkBAe38iiqnxUZY,324068
38
38
  flywheel/api/reports_api.py,sha256=6WW5CroopwNrw6GBE0_R34stBWbyqUXgRoyiHkAAZE4,36251
39
39
  flywheel/api/resolve_api.py,sha256=6yuXytZnhpFBPz0x5TN1B57jtRn9kuSqth6WtXWSYaw,11603
40
- flywheel/api/roles_api.py,sha256=BUMfCyle1gbRtCWce9SQtkCRY1tILi22NRSz9QBpaF0,20698
41
- flywheel/api/sessions_api.py,sha256=g1IV__2C-o-VoctXaJ0LjYV9j5HwOLfA-na3_vvE0xA,217882
40
+ flywheel/api/roles_api.py,sha256=ncA8ys7TC6Z_ciwzRR-uZZ_hsUAAl5oVDVjZIqfg7HA,20692
41
+ flywheel/api/sessions_api.py,sha256=PgLGMtbSPxhahcP95kXPbmGzo56O0dYs3G9dtoMLsuw,217870
42
42
  flywheel/api/site_api.py,sha256=IrcUYtt57L446ggUu_tx-sYqm92JWFGGjNY1uWiFIS0,57373
43
- flywheel/api/subjects_api.py,sha256=bDR1Lm4PnfTseohXuybCExpZamBDLc08kjqfeauREx8,221801
43
+ flywheel/api/subjects_api.py,sha256=g7wF73DbnsGAe_oOMpdNLeEut_SEVwD0LD-1pFvH_T4,221783
44
44
  flywheel/api/tree_api.py,sha256=f7o8PO-BdTZ7MOl2cMMP5KC49z1Rl0QBx0_pqROOKQE,12031
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=ThTGkL_oE-ixB9akEZEm2pogkYBa_m9qAM52W5ClRC0,82850
48
48
  flywheel/api/views_api.py,sha256=Xshmzxd9XEwWavyMCzKwDXp_4Hep4-6MFOEBM_lBato,44403
49
- flywheel/models/__init__.py,sha256=vyNh-cs5VVdstqfUr2EEnB8OjtKRYfEu5TFuQv_ZdsA,42792
49
+ flywheel/models/__init__.py,sha256=QkMtOiMiiX1vNXetSBd_tSm1QxOSTxNglud1aAJ8LqU,42739
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
@@ -74,8 +74,8 @@ flywheel/models/analysis_input_legacy.py,sha256=5wdETgwaKdExBdXJjD-pye1hCvEEDaFc
74
74
  flywheel/models/analysis_list_output.py,sha256=rO-OiY-Ze6ztlGBJ-yTOesjjr5PQtbIUWOVeBpGspck,18154
75
75
  flywheel/models/analysis_list_output_inflated_job.py,sha256=Qs8olOtEmwhEclNdIYKmX2XhzKdJcDACVgG-I-TfEnU,18291
76
76
  flywheel/models/analysis_modify_input.py,sha256=4cM87tlxJqGpK3UjnKS-vMdVnSAF9raak7CJ7XDvC5s,5309
77
- flywheel/models/analysis_node.py,sha256=W9Q09UdC-LamGSIdM4bq3wR5CTsyTfMN9kT7dfFLzoY,1159
78
- flywheel/models/analysis_output.py,sha256=ENqE7FBdjChqfQM1xS8dYR08fL8UZwWlBOjxsxWj9xc,17914
77
+ flywheel/models/analysis_node.py,sha256=0VWp_qAjdHFCbEBuI8EYeUHgauv1AxVbdnlulFs5tfE,1104
78
+ flywheel/models/analysis_output.py,sha256=kH2qHuuTJO1JIZ9cVuXteC0KHCBbcSaenvTvy2kWtFU,17910
79
79
  flywheel/models/analysis_output_inflated_job.py,sha256=buEt7OJC9DljKMNKvnvPnavW6l3VzVgb0OMUgCupU2c,18347
80
80
  flywheel/models/analysis_parents.py,sha256=hQgTsQnqtO4H_cTJciH36PPez9y-fOiqSkshvFqScPI,7144
81
81
  flywheel/models/analysis_update.py,sha256=gcx1GL8H0cI8HUNZVze3WnzTFryK2S7IizAAGFdcP2Q,538
@@ -116,10 +116,10 @@ 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=8r2RkmWqBe5QEZWaRMVTshqXOSVnYc9q17PYGN5C-Fg,5876
120
- flywheel/models/change.py,sha256=AsvwVurWlJvoPW9e8ZbHmqn2eZ4SEIaHfMIT3p0a3oY,9888
119
+ flywheel/models/central_out.py,sha256=ify5mEdW2Yq_Cy1vqFtXFokXI6o73Wf62qaCKRW1OyM,8071
120
+ flywheel/models/change.py,sha256=w9wh8ubgLSea4I6001bk_pRHJ5Xc4_QYvnhU4SwvBOY,9879
121
121
  flywheel/models/change_log_container_type.py,sha256=XTUZTujr50uoFNQO0iT0K9XGHvZmBfzHLzBuLQGWQuU,850
122
- flywheel/models/change_log_document.py,sha256=yJ-yTl8pLOROCC1t5NrNkl7MKsmYanRe7A0MDsDx4_o,6974
122
+ flywheel/models/change_log_document.py,sha256=O9rreKhcTFhjbeX3qnNCS0GB48Mk8FxEl2fdYmGUI-o,6965
123
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
@@ -154,7 +154,7 @@ flywheel/models/common_settings.py,sha256=d_PamnJsPtN6GBQNiHRkSgHbCkt54A_jdM1QmN
154
154
  flywheel/models/complete_multipart_upload_output.py,sha256=rhK1tfe6IEQI74KaEkYTgt48bWov7hfKFQ0Z66lDMss,5334
155
155
  flywheel/models/complete_s3_multipart_upload_input.py,sha256=wwCsEyozULY8WvKM4_o6AqPY9qxs51p9wt6RpEuuwXA,6714
156
156
  flywheel/models/config_feature_map.py,sha256=MAfGvLq-GuEiRy3oVJC6LD-mmB9qoWJ9GPBvpXQbX1c,892
157
- flywheel/models/config_out.py,sha256=b_0LuLtcwF0Hs1EowqFc59MrsotFvqX5RltBEucVeGE,10657
157
+ flywheel/models/config_out.py,sha256=2lGX76HUf2nw8wIaBPGCY7qj76ngDCdHDDFRBGy16b0,9865
158
158
  flywheel/models/config_output.py,sha256=EqD-FKGALuE-xT1exLdZ-9BVP8AS-I81WnTYB7eygtg,892
159
159
  flywheel/models/config_site_config_output.py,sha256=msbBO7Ep5phyKQXvR3CDdtg4xkeYcyZk-YYznopE6Nw,886
160
160
  flywheel/models/config_site_settings.py,sha256=CW2jCb5_Fy5FmeL-NjDmDIPt43nVTgPgqM8r_zIm9iI,907
@@ -239,9 +239,9 @@ flywheel/models/egress_provider_id.py,sha256=1dKUprJXQii7w_sdUr_hB_PebJDkLgZt9yj
239
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
- flywheel/models/features.py,sha256=bI20kgrWU5Vo1BI7H072ehqtrJGpsR0iMqghSvIrNN4,52507
242
+ flywheel/models/features.py,sha256=hQGoDse_ZRotdVo-S-VlSrBuW1SRY4aSQUPXHJAtz-I,51770
243
243
  flywheel/models/field_change.py,sha256=cmCk9MsI7vl5DixjWMyTXV2RkAR--b7YI-lbg3w7uRI,7061
244
- flywheel/models/field_change_log_document.py,sha256=FD77lYM_58KWntwbePzlcZ_S3RiyfGNYt1hlocyB060,7100
244
+ flywheel/models/field_change_log_document.py,sha256=-G5oxplkcregMMHywMAXuexl5x21PRe5X2SQxaIaAj0,7091
245
245
  flywheel/models/file.py,sha256=JuxWrlkgdt3fFwvfkJKKsBPU1pmRo18fW-QYVn_XT-Y,27877
246
246
  flywheel/models/file_classification_delta.py,sha256=i7WiwP3smfqB6EBxyOwhT9ncs0e9K6NC2w2EtIzE3a8,6744
247
247
  flywheel/models/file_entry.py,sha256=RzUNtqHbDLWCiDaVEiS8FHHsLD-b5bsHUmCn89jt6Yc,19125
@@ -341,7 +341,7 @@ flywheel/models/info_replace.py,sha256=ZCTIjtnbMrWo0j-CF8f3UZuk94gRtsHTt7fj8K49i
341
341
  flywheel/models/info_update_input.py,sha256=lp3JHqD0BUdqtApqavOw1LE_mlMZ9Nm_1bSQHJpDDS4,879
342
342
  flywheel/models/ingress_provider.py,sha256=ksD8ExD77Y8rdsGxQFkOgE0G91_iVNzIgVJ6hvHEBHE,8255
343
343
  flywheel/models/ingress_providers.py,sha256=kJ2IT_WDzEClNZycUuJxiquHscYDenPVtS5Iedid_rs,7348
344
- flywheel/models/ingress_site_settings.py,sha256=e3xKLdxzK15KAZ6vpjC7M2vI4895n7lNW4EXijukpYU,8095
344
+ flywheel/models/ingress_site_settings.py,sha256=GMuVzsayDzt_qBu4wbVUn64FKtnzG8mBL6mloyVq4Qc,8086
345
345
  flywheel/models/ingress_update_provider.py,sha256=_lKWAUXnyJ6bas6TjzYsKejr76V1Xz4uVVo0f8QzUqg,5872
346
346
  flywheel/models/inline_response200.py,sha256=iu390NttoB7sU-iwg4o2fnpq7OH01r4_ZQv3-fksxoQ,4567
347
347
  flywheel/models/inline_response2001.py,sha256=Ej9tiFz9jjlsB5LdZSxFoYFwIumbzT9PK3q8aQXW8lA,4776
@@ -449,7 +449,6 @@ flywheel/models/modify_user_input.py,sha256=hHX2em0PFYBCbfwOP0RGIej2gz6_E8Z175kJ
449
449
  flywheel/models/move_conflict.py,sha256=UvjPbnV7zqcMLALpyiS61H6uT2DVns-LT9S2WJxFmrE,8168
450
450
  flywheel/models/note.py,sha256=9wVVvRZU_6KmDnN8CNqHD12FFQFmWR0avNXiqflUfk8,9714
451
451
  flywheel/models/note_input.py,sha256=PME-p3R2i9SSmsMT_xn3i5TUT5jwVsriKKWoh6KSiYc,4515
452
- flywheel/models/open_tracing.py,sha256=EpiPJ0MCXHu3qiZe22Pka_fpGo9c82e42SblXyz4nVY,6831
453
452
  flywheel/models/optional_input_policy.py,sha256=eL3mYtZJ2gmlqmPbM6cUD2i4yEAojNUG1NvhA17F5PU,611
454
453
  flywheel/models/order.py,sha256=PLZEujkb8-X3aKMZZNNIlss-jqHAupVyRYdvpv8p5mg,555
455
454
  flywheel/models/organ_system.py,sha256=p4cg1707Re6MzAIWOxZgzcK8x-3sDBYen_tu2oeRGkg,1807
@@ -498,7 +497,7 @@ flywheel/models/project_report.py,sha256=p_6AntjagxqIOlj4gV8Zqxdr08CEfU0e0yt2QMu
498
497
  flywheel/models/project_report_list.py,sha256=PnQDumPa5LPwWHBBLJE1AytNsSeyKf3_FZ0pIrPZr5k,4729
499
498
  flywheel/models/project_session_upsert_input.py,sha256=_jq88pCni9SU3SKbedZjblkz_JHheV1mIMcsTe-CuLI,546
500
499
  flywheel/models/project_session_upsert_output.py,sha256=56px_is3ZM6BMkb4jcc72Q7vhTkxYQOlwO54RzLG34Y,550
501
- flywheel/models/project_settings_input.py,sha256=2htzDu8I5xNGQHRHriHyJf3tWW5Qrkp_60aAQ6O4B6E,9160
500
+ flywheel/models/project_settings_input.py,sha256=a1CpJ4vHxOK2Pzyrmpn1L0RD7QDfTwqKO8XCvmFmWeQ,9151
502
501
  flywheel/models/project_settings_output.py,sha256=Q3G764ESOiUFZAX_IBJim62XrPhFKIiJWyo5_3fd-08,8967
503
502
  flywheel/models/project_settings_sharing.py,sha256=xjCScYFS5Xx0AYnqTbgCnp9lMYIAGidUVXHRl-CE3kU,10194
504
503
  flywheel/models/project_settings_sharing_input.py,sha256=0pWyRu1XOkjvxFiLrfdgAhoHTWup5BzobsPPwlvCO8Y,10653
@@ -589,7 +588,7 @@ flywheel/models/search_collection_response.py,sha256=rgok6AEB5xa9yMrbxA0MF2sd4pr
589
588
  flywheel/models/search_file_response.py,sha256=WfZRwwKvGCLKQw8i_tYm7Vukr5efk6xw-jAI86irwzs,7750
590
589
  flywheel/models/search_group_response.py,sha256=aXWrqYkRH7AWjHwOHlqIYbav_K-w0Uq9OsuVDbgUdmk,5272
591
590
  flywheel/models/search_parent_acquisition.py,sha256=zfLV8OMqziz_Np_LeYktNLV3Lm0pTw2KfGU0NwY3-Nk,1466
592
- flywheel/models/search_parent_analysis.py,sha256=TCHJKb9RGNn7O8Qnl_Pm3Zgu83lJzgcdGBezfJ8OlpA,1571
591
+ flywheel/models/search_parent_analysis.py,sha256=p8YVlHYUaPHT1rM2yETX4rRuHZoHTwQO9tLfcFeYfps,1516
593
592
  flywheel/models/search_parent_collection.py,sha256=qOFxoV54qaHQ5fiiZizUH5zictoenMVKk9YhFLrfd7I,1443
594
593
  flywheel/models/search_parent_project.py,sha256=Vw7gz69kUx6GrBJZAMkp1bKBMqhm79lh4X9J_zOVOBE,2036
595
594
  flywheel/models/search_parent_response.py,sha256=DT4rNEz2OQ77PB0guLNGUCMjb8wiRXbQGC9cTzXlA4Q,5947
@@ -617,10 +616,10 @@ flywheel/models/service_aet_input.py,sha256=ZiOQUFT8vYOsDvc1hUzgai5B7Kfn-GC02U7o
617
616
  flywheel/models/session.py,sha256=g8w6BT0P6nT3gFjl9ruDJXnHWWDnNIdBOzLAyPogKfU,512
618
617
  flywheel/models/session_container_output.py,sha256=9WQkuaPXXSHFYKNzd3VZWnjbQBjobrmxkPZ6I7EPnf0,959
619
618
  flywheel/models/session_embedded_subject.py,sha256=cfdNfZ-IV1xpolhv-PTLvHZyu3um-Te_3DRoYhj7hFE,7799
620
- flywheel/models/session_input.py,sha256=MWp7AEiCDOGY21wvHRW6_Wj75S2uTdCz3cjcUj3Nzjw,11025
619
+ flywheel/models/session_input.py,sha256=9TtozWniwYzahR6y-82yL20S6QLpd4BaAxt5QtFn09w,11016
621
620
  flywheel/models/session_list_output.py,sha256=PEdKQM_jo8JuPlZ-YjYrihJiU3gF0D17u4AOgK7Vyo0,23093
622
621
  flywheel/models/session_metadata_input.py,sha256=K4N1tWxe0L3VmyNq_aqWRt9SdApPCaWQybAZ_XEAJ4c,909
623
- flywheel/models/session_modify.py,sha256=F8h_tRd3Wg42aImxZTKLqylRhQq3jju71SymtxRwQwk,12080
622
+ flywheel/models/session_modify.py,sha256=urKEKOKuwTCKUbIaX4FoiXTyOzCoztnQxD21QffwOR0,12071
624
623
  flywheel/models/session_node.py,sha256=h7BYhpaa1bFx8cmpIs2W6pnW-0sWNg5-ttwdr4Pcm14,1098
625
624
  flywheel/models/session_output.py,sha256=l3UvC8gR8c_hbhYE7VUkEUcUkKLwJKqo2bq5-F_5tCo,22564
626
625
  flywheel/models/session_parents.py,sha256=LRlg_eh2EDuEOPZdZa07lyne48M_urYADIxoHIiCrDQ,5899
@@ -692,7 +691,7 @@ flywheel/models/user_output.py,sha256=BLH3n90wsS-68Z_XuQwhNRVRNhbc80A18Wz5yf8CXt
692
691
  flywheel/models/user_output_id.py,sha256=FX4yvxrCb8lR6nwUjqrHbETggWAtILMjpQf3CjGJoYI,4406
693
692
  flywheel/models/user_preferences.py,sha256=COcq40z8jZa5yWvPT_6Sk9Wv9hV4QxUrKpgEEUi53as,3916
694
693
  flywheel/models/user_wechat.py,sha256=Z2RR3BfPvm6hZWjv0UUcPWO-ssAnBLT0pIQWQ6rGThw,3896
695
- flywheel/models/validation_error.py,sha256=y1imp4QAw0OW5mDvrE3Gnl2WmAc3hOg3mh6AMaN-A7I,5601
694
+ flywheel/models/validation_error.py,sha256=T_bv-OC-GLPOg8NIbV6ANEiEZy4HWLoCSBZifmeWJOo,5592
696
695
  flywheel/models/version.py,sha256=YHXuWqo_TdjYBrVwOdgs0BATbBWs2faMJ4fgzkjrz-M,9194
697
696
  flywheel/models/version_output.py,sha256=iXvZIQTVMq7SgR7QtcRrnCWWoHK2yfKgIvONR5pXsuA,499
698
697
  flywheel/models/view_id_output.py,sha256=hjbc4w7uY40PpCeDs9yiIQwjuNdtJBqhFoJ-RlYr7kY,4438
@@ -705,8 +704,8 @@ flywheel/models/virus_scan_state.py,sha256=zBmk7x3ZoDhEozIeD-Gw7CEkU7yWYKFMFXklL
705
704
  flywheel/models/work_in_progress_features.py,sha256=dZ_cJTztcU3wPIUKptwZzb7hdv9mo27wXfWgolkJa1k,3944
706
705
  flywheel/models/zipfile_info.py,sha256=8ivqs0rTQaiC8KirTaK_WqSGkLvCndI_58dylOBKwa4,5243
707
706
  flywheel/models/zipfile_member_info.py,sha256=zAg9wRUeYXbz6bvXdo4xYFHtvv9eRSCjvyaTrQ3zvN4,6346
708
- flywheel_sdk-18.4.1rc0.dist-info/LICENSE.txt,sha256=F_Wp8b8L-2vc2xxcRr402gN1gg-2y0p2oG8aSj3hdMA,1057
709
- flywheel_sdk-18.4.1rc0.dist-info/METADATA,sha256=tATCep6qK1Z4Vs13AtKXymwA8CFda3y3HTrBr6wZvms,959
710
- flywheel_sdk-18.4.1rc0.dist-info/WHEEL,sha256=4h2DkfJSb0e6Ob8eR1zE5-yQ9f6nK3Do8SfsDGV3_YQ,109
711
- flywheel_sdk-18.4.1rc0.dist-info/top_level.txt,sha256=BQ1fXyhiudo2To7zMNcPOOGa6qtZuhx0V_I7CO-vU6w,9
712
- flywheel_sdk-18.4.1rc0.dist-info/RECORD,,
707
+ flywheel_sdk-18.5.0rc0.dist-info/LICENSE.txt,sha256=F_Wp8b8L-2vc2xxcRr402gN1gg-2y0p2oG8aSj3hdMA,1057
708
+ flywheel_sdk-18.5.0rc0.dist-info/METADATA,sha256=d5ThiR9ljZzTG8j_O-6ZdjAEb9-hMA4wxDw28XE_WyI,949
709
+ flywheel_sdk-18.5.0rc0.dist-info/WHEEL,sha256=pOwdCRdxkCaq8tWTvnGIC-q_meWYHwmqvvQPkeaM2I4,109
710
+ flywheel_sdk-18.5.0rc0.dist-info/top_level.txt,sha256=BQ1fXyhiudo2To7zMNcPOOGa6qtZuhx0V_I7CO-vU6w,9
711
+ flywheel_sdk-18.5.0rc0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (71.0.3)
2
+ Generator: setuptools (70.1.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py2-none-any
5
5
  Tag: py3-none-any
@@ -1,244 +0,0 @@
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
- class OpenTracing(object):
22
-
23
- swagger_types = {
24
- 'agent_host': 'str',
25
- 'agent_port': 'int',
26
- 'sampler_type': 'str',
27
- 'sampler_param': 'float'
28
- }
29
-
30
- attribute_map = {
31
- 'agent_host': 'agent_host',
32
- 'agent_port': 'agent_port',
33
- 'sampler_type': 'sampler_type',
34
- 'sampler_param': 'sampler_param'
35
- }
36
-
37
- rattribute_map = {
38
- 'agent_host': 'agent_host',
39
- 'agent_port': 'agent_port',
40
- 'sampler_type': 'sampler_type',
41
- 'sampler_param': 'sampler_param'
42
- }
43
-
44
- def __init__(self, agent_host='jaeger-agent', agent_port=6831, sampler_type='const', sampler_param=1.0): # noqa: E501
45
- """OpenTracing - a model defined in Swagger"""
46
- super(OpenTracing, self).__init__()
47
-
48
- self._agent_host = None
49
- self._agent_port = None
50
- self._sampler_type = None
51
- self._sampler_param = None
52
- self.discriminator = None
53
- self.alt_discriminator = None
54
-
55
- if agent_host is not None:
56
- self.agent_host = agent_host
57
- if agent_port is not None:
58
- self.agent_port = agent_port
59
- if sampler_type is not None:
60
- self.sampler_type = sampler_type
61
- if sampler_param is not None:
62
- self.sampler_param = sampler_param
63
-
64
- @property
65
- def agent_host(self):
66
- """Gets the agent_host of this OpenTracing.
67
-
68
-
69
- :return: The agent_host of this OpenTracing.
70
- :rtype: str
71
- """
72
- return self._agent_host
73
-
74
- @agent_host.setter
75
- def agent_host(self, agent_host):
76
- """Sets the agent_host of this OpenTracing.
77
-
78
-
79
- :param agent_host: The agent_host of this OpenTracing. # noqa: E501
80
- :type: str
81
- """
82
-
83
- self._agent_host = agent_host
84
-
85
- @property
86
- def agent_port(self):
87
- """Gets the agent_port of this OpenTracing.
88
-
89
-
90
- :return: The agent_port of this OpenTracing.
91
- :rtype: int
92
- """
93
- return self._agent_port
94
-
95
- @agent_port.setter
96
- def agent_port(self, agent_port):
97
- """Sets the agent_port of this OpenTracing.
98
-
99
-
100
- :param agent_port: The agent_port of this OpenTracing. # noqa: E501
101
- :type: int
102
- """
103
-
104
- self._agent_port = agent_port
105
-
106
- @property
107
- def sampler_type(self):
108
- """Gets the sampler_type of this OpenTracing.
109
-
110
-
111
- :return: The sampler_type of this OpenTracing.
112
- :rtype: str
113
- """
114
- return self._sampler_type
115
-
116
- @sampler_type.setter
117
- def sampler_type(self, sampler_type):
118
- """Sets the sampler_type of this OpenTracing.
119
-
120
-
121
- :param sampler_type: The sampler_type of this OpenTracing. # noqa: E501
122
- :type: str
123
- """
124
-
125
- self._sampler_type = sampler_type
126
-
127
- @property
128
- def sampler_param(self):
129
- """Gets the sampler_param of this OpenTracing.
130
-
131
-
132
- :return: The sampler_param of this OpenTracing.
133
- :rtype: float
134
- """
135
- return self._sampler_param
136
-
137
- @sampler_param.setter
138
- def sampler_param(self, sampler_param):
139
- """Sets the sampler_param of this OpenTracing.
140
-
141
-
142
- :param sampler_param: The sampler_param of this OpenTracing. # noqa: E501
143
- :type: float
144
- """
145
-
146
- self._sampler_param = sampler_param
147
-
148
-
149
- @staticmethod
150
- def positional_to_model(value):
151
- """Converts a positional argument to a model value"""
152
- return value
153
-
154
- def return_value(self):
155
- """Unwraps return value from model"""
156
- return self
157
-
158
- def to_dict(self):
159
- """Returns the model properties as a dict"""
160
- result = {}
161
-
162
- for attr, _ in six.iteritems(self.swagger_types):
163
- value = getattr(self, attr)
164
- if isinstance(value, list):
165
- result[attr] = list(map(
166
- lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
167
- value
168
- ))
169
- elif hasattr(value, "to_dict"):
170
- result[attr] = value.to_dict()
171
- elif isinstance(value, dict):
172
- result[attr] = dict(map(
173
- lambda item: (item[0], item[1].to_dict())
174
- if hasattr(item[1], "to_dict") else item,
175
- value.items()
176
- ))
177
- else:
178
- result[attr] = value
179
-
180
- return result
181
-
182
- def to_str(self):
183
- """Returns the string representation of the model"""
184
- return pprint.pformat(self.to_dict())
185
-
186
- def __repr__(self):
187
- """For `print` and `pprint`"""
188
- return self.to_str()
189
-
190
- def __eq__(self, other):
191
- """Returns true if both objects are equal"""
192
- if not isinstance(other, OpenTracing):
193
- return False
194
-
195
- return self.__dict__ == other.__dict__
196
-
197
- def __ne__(self, other):
198
- """Returns true if both objects are not equal"""
199
- return not self == other
200
-
201
- # Container emulation
202
- def __getitem__(self, key):
203
- """Returns the value of key"""
204
- key = self._map_key(key)
205
- return getattr(self, key)
206
-
207
- def __setitem__(self, key, value):
208
- """Sets the value of key"""
209
- key = self._map_key(key)
210
- setattr(self, key, value)
211
-
212
- def __contains__(self, key):
213
- """Checks if the given value is a key in this object"""
214
- key = self._map_key(key, raise_on_error=False)
215
- return key is not None
216
-
217
- def keys(self):
218
- """Returns the list of json properties in the object"""
219
- return self.__class__.rattribute_map.keys()
220
-
221
- def values(self):
222
- """Returns the list of values in the object"""
223
- for key in self.__class__.attribute_map.keys():
224
- yield getattr(self, key)
225
-
226
- def items(self):
227
- """Returns the list of json property to value mapping"""
228
- for key, prop in self.__class__.rattribute_map.items():
229
- yield key, getattr(self, prop)
230
-
231
- def get(self, key, default=None):
232
- """Get the value of the provided json property, or default"""
233
- key = self._map_key(key, raise_on_error=False)
234
- if key:
235
- return getattr(self, key, default)
236
- return default
237
-
238
- def _map_key(self, key, raise_on_error=True):
239
- result = self.__class__.rattribute_map.get(key)
240
- if result is None:
241
- if raise_on_error:
242
- raise AttributeError('Invalid attribute name: {}'.format(key))
243
- return None
244
- return '_' + result