flywheel-sdk 17.8.0rc1__py2.py3-none-any.whl → 18.0.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.
Files changed (224) hide show
  1. flywheel/__init__.py +77 -0
  2. flywheel/api/acquisitions_api.py +39 -39
  3. flywheel/api/analyses_api.py +22 -22
  4. flywheel/api/audit_trail_api.py +5 -5
  5. flywheel/api/auth_api.py +1 -1
  6. flywheel/api/batch_api.py +6 -6
  7. flywheel/api/bulk_api.py +1 -1
  8. flywheel/api/change_log_api.py +4 -4
  9. flywheel/api/collections_api.py +32 -32
  10. flywheel/api/config_api.py +3 -3
  11. flywheel/api/containers_api.py +39 -39
  12. flywheel/api/data_view_executions_api.py +5 -5
  13. flywheel/api/dataexplorer_api.py +9 -9
  14. flywheel/api/devices_api.py +10 -10
  15. flywheel/api/dimse_api.py +8 -8
  16. flywheel/api/download_api.py +2 -2
  17. flywheel/api/files_api.py +11 -11
  18. flywheel/api/gears_api.py +17 -17
  19. flywheel/api/groups_api.py +24 -24
  20. flywheel/api/jobs_api.py +19 -19
  21. flywheel/api/modalities_api.py +5 -5
  22. flywheel/api/packfiles_api.py +1 -1
  23. flywheel/api/projects_api.py +65 -65
  24. flywheel/api/reports_api.py +14 -10
  25. flywheel/api/resolve_api.py +2 -2
  26. flywheel/api/roles_api.py +5 -5
  27. flywheel/api/sessions_api.py +41 -41
  28. flywheel/api/site_api.py +14 -14
  29. flywheel/api/subjects_api.py +42 -42
  30. flywheel/api/tree_api.py +2 -2
  31. flywheel/api/uids_api.py +1 -1
  32. flywheel/api/upload_api.py +6 -6
  33. flywheel/api/users_api.py +19 -19
  34. flywheel/api/views_api.py +9 -9
  35. flywheel/api/workspaces_api.py +2 -2
  36. flywheel/api_client.py +1 -1
  37. flywheel/configuration.py +1 -1
  38. flywheel/flywheel.py +3 -2
  39. flywheel/models/__init__.py +77 -0
  40. flywheel/models/acquisition.py +0 -1
  41. flywheel/models/acquisition_container_output.py +0 -1
  42. flywheel/models/acquisition_node.py +0 -1
  43. flywheel/models/analysis.py +0 -1
  44. flywheel/models/analysis_container_output.py +0 -1
  45. flywheel/models/analysis_input_legacy.py +0 -1
  46. flywheel/models/analysis_node.py +0 -1
  47. flywheel/models/analysis_update.py +0 -1
  48. flywheel/models/batch_cancel_output.py +35 -0
  49. flywheel/models/batch_jobs_proposal_input.py +35 -0
  50. flywheel/models/batch_proposal.py +0 -1
  51. flywheel/models/batch_proposal_detail.py +35 -0
  52. flywheel/models/batch_proposal_input.py +0 -1
  53. flywheel/models/body.py +35 -0
  54. flywheel/models/body_regenerate_key_api_devices_device_id_key_post.py +0 -1
  55. flywheel/models/bulk_move_sessions.py +0 -1
  56. flywheel/models/callbacks_virus_scan_input.py +35 -0
  57. flywheel/models/classification_add_delete.py +35 -0
  58. flywheel/models/classification_replace.py +35 -0
  59. flywheel/models/classification_update_input.py +35 -0
  60. flywheel/models/collection.py +0 -1
  61. flywheel/models/collection_container_output.py +0 -1
  62. flywheel/models/common_deleted_count.py +0 -1
  63. flywheel/models/common_editions.py +0 -1
  64. flywheel/models/common_join_origins.py +0 -1
  65. flywheel/models/common_key.py +35 -0
  66. flywheel/models/common_modified_count.py +0 -1
  67. flywheel/models/common_object_created.py +35 -0
  68. flywheel/models/common_project_settings.py +2 -3
  69. flywheel/models/common_settings.py +35 -0
  70. flywheel/models/config_feature_map.py +35 -0
  71. flywheel/models/config_output.py +35 -0
  72. flywheel/models/config_site_config_output.py +35 -0
  73. flywheel/models/config_site_settings.py +35 -0
  74. flywheel/models/config_site_settings_input.py +35 -0
  75. flywheel/models/container_id_view_input_execute_and_save.py +33 -4
  76. flywheel/models/container_new_output.py +0 -1
  77. flywheel/models/container_output.py +35 -0
  78. flywheel/models/container_project_parents.py +0 -1
  79. flywheel/models/container_session_parents.py +0 -1
  80. flywheel/models/container_subject_parents.py +0 -1
  81. flywheel/models/container_type.py +1 -0
  82. flywheel/models/data_view.py +2 -458
  83. flywheel/models/data_view_output.py +0 -1
  84. flywheel/models/data_view_save_data_view_input.py +0 -1
  85. flywheel/models/device.py +55 -1
  86. flywheel/models/device_status.py +35 -0
  87. flywheel/models/dimse_project_input.py +35 -0
  88. flywheel/models/dimse_project_output.py +35 -0
  89. flywheel/models/dimse_service_input.py +35 -0
  90. flywheel/models/dimse_service_output.py +35 -0
  91. flywheel/models/download_input.py +0 -1
  92. flywheel/models/download_ticket.py +35 -0
  93. flywheel/models/download_ticket_with_summary.py +35 -0
  94. flywheel/models/features.py +58 -4
  95. flywheel/models/file_upsert_origin.py +35 -0
  96. flywheel/models/file_zip_entry.py +0 -1
  97. flywheel/models/file_zip_info.py +0 -1
  98. flywheel/models/gear_context_lookup.py +0 -1
  99. flywheel/models/gear_context_lookup_item.py +35 -0
  100. flywheel/models/gear_doc.py +0 -1
  101. flywheel/models/gear_return_ticket.py +0 -1
  102. flywheel/models/group.py +0 -1
  103. flywheel/models/group_by_column.py +35 -0
  104. flywheel/models/group_container_output.py +0 -1
  105. flywheel/models/group_metadata_input.py +35 -0
  106. flywheel/models/group_node.py +0 -1
  107. flywheel/models/info_add_remove.py +35 -0
  108. flywheel/models/info_replace.py +35 -0
  109. flywheel/models/info_update_input.py +35 -0
  110. flywheel/models/ingress_site_settings.py +4 -4
  111. flywheel/models/inline_response2001.py +170 -0
  112. flywheel/models/inline_response2003.py +35 -0
  113. flywheel/models/inline_response2005.py +0 -1
  114. flywheel/models/job_ask_return.py +0 -1
  115. flywheel/models/job_ask_state.py +0 -1
  116. flywheel/models/job_completion_input.py +0 -1
  117. flywheel/models/job_completion_ticket.py +0 -1
  118. flywheel/models/job_config_inputs.py +0 -1
  119. flywheel/models/job_config_output.py +0 -1
  120. flywheel/models/job_container_detail.py +0 -1
  121. flywheel/models/job_gear_match.py +0 -1
  122. flywheel/models/job_list_entry.py +0 -1
  123. flywheel/models/job_list_output.py +2 -1
  124. flywheel/models/job_output_config.py +31 -4
  125. flywheel/models/job_profile_input.py +0 -1
  126. flywheel/models/job_state_counts.py +0 -1
  127. flywheel/models/job_stats_by_state.py +0 -1
  128. flywheel/models/ldap_sync.py +35 -0
  129. flywheel/models/ldap_sync_input.py +35 -0
  130. flywheel/models/parent_type.py +2 -0
  131. flywheel/models/permission_access_permission.py +0 -1
  132. flywheel/models/project.py +0 -1
  133. flywheel/models/project_acquisition_upsert_input.py +0 -1
  134. flywheel/models/project_acquisition_upsert_output.py +0 -1
  135. flywheel/models/project_catalog_list_output.py +0 -1
  136. flywheel/models/project_container_output.py +0 -1
  137. flywheel/models/project_hierarchy_upsert_input.py +0 -1
  138. flywheel/models/project_hierarchy_upsert_output.py +0 -1
  139. flywheel/models/project_node.py +0 -1
  140. flywheel/models/project_session_upsert_input.py +0 -1
  141. flywheel/models/project_session_upsert_output.py +0 -1
  142. flywheel/models/project_settings_input.py +4 -4
  143. flywheel/models/project_sharing_settings_project_contact.py +0 -1
  144. flywheel/models/project_sharing_settings_project_counters.py +35 -0
  145. flywheel/models/project_sharing_settings_project_institution.py +0 -1
  146. flywheel/models/project_sharing_settings_project_settings_input.py +0 -1
  147. flywheel/models/project_sharing_settings_project_settings_output.py +0 -1
  148. flywheel/models/project_sharing_settings_project_settings_sharing.py +0 -1
  149. flywheel/models/project_sharing_settings_project_settings_sharing_input.py +0 -1
  150. flywheel/models/project_sharing_settings_project_stats.py +35 -0
  151. flywheel/models/project_subject_upsert_input.py +0 -1
  152. flywheel/models/project_subject_upsert_output.py +0 -1
  153. flywheel/models/project_template_requirement.py +35 -0
  154. flywheel/models/project_template_session_template.py +35 -0
  155. flywheel/models/project_upsert_origin.py +35 -0
  156. flywheel/models/provider_input.py +0 -1
  157. flywheel/models/report_demographics_grid.py +11 -1
  158. flywheel/models/report_ethnicity_grid.py +251 -0
  159. flywheel/models/report_gender_count.py +221 -0
  160. flywheel/models/report_legacy_usage_entry.py +35 -0
  161. flywheel/models/report_legacy_usage_project_entry.py +35 -0
  162. flywheel/models/report_project.py +0 -1
  163. flywheel/models/report_usage_entry.py +0 -1
  164. flywheel/models/resolver_acquisition_node.py +35 -0
  165. flywheel/models/resolver_analysis_node.py +35 -0
  166. flywheel/models/resolver_file_node.py +35 -0
  167. flywheel/models/resolver_gear_node.py +35 -0
  168. flywheel/models/resolver_group_node.py +35 -0
  169. flywheel/models/resolver_input.py +0 -1
  170. flywheel/models/resolver_output.py +0 -1
  171. flywheel/models/resolver_project_node.py +35 -0
  172. flywheel/models/resolver_session_node.py +35 -0
  173. flywheel/models/resolver_subject_node.py +35 -0
  174. flywheel/models/roles_backwards_compatible_role_assignment.py +35 -0
  175. flywheel/models/roles_group_role_pool_input.py +35 -0
  176. flywheel/models/roles_role.py +35 -0
  177. flywheel/models/roles_role_input.py +35 -0
  178. flywheel/models/search_parent_acquisition.py +43 -0
  179. flywheel/models/search_parent_analysis.py +45 -0
  180. flywheel/models/search_parent_collection.py +43 -0
  181. flywheel/models/search_parent_project.py +51 -0
  182. flywheel/models/search_parent_response.py +6 -0
  183. flywheel/models/search_parent_session.py +44 -0
  184. flywheel/models/search_parent_subject.py +46 -0
  185. flywheel/models/search_parse_search_query_result.py +35 -0
  186. flywheel/models/search_query_suggestions.py +35 -0
  187. flywheel/models/search_save_search.py +35 -0
  188. flywheel/models/search_save_search_input.py +35 -0
  189. flywheel/models/search_save_search_parent.py +35 -0
  190. flywheel/models/search_save_search_update.py +35 -0
  191. flywheel/models/search_structured_search_query.py +0 -1
  192. flywheel/models/search_subject_response.py +62 -4
  193. flywheel/models/search_suggestion.py +35 -0
  194. flywheel/models/session.py +0 -1
  195. flywheel/models/session_container_output.py +0 -1
  196. flywheel/models/session_metadata_input.py +35 -0
  197. flywheel/models/session_node.py +0 -1
  198. flywheel/models/stable_api_key_input.py +0 -1
  199. flywheel/models/subject.py +0 -1
  200. flywheel/models/subject_container_output.py +0 -1
  201. flywheel/models/subject_node.py +0 -1
  202. flywheel/models/tree_graph.py +141 -0
  203. flywheel/models/tree_graph_connections.py +141 -0
  204. flywheel/models/tree_request.py +0 -1
  205. flywheel/models/tree_response_item.py +141 -0
  206. flywheel/models/upload_complete_s3_multipart_input.py +0 -1
  207. flywheel/models/upload_complete_s3_multipart_output.py +0 -1
  208. flywheel/models/upload_signed_fs_file_upload_output.py +35 -0
  209. flywheel/models/upload_signed_upload_url_input.py +35 -0
  210. flywheel/models/upload_signed_upload_url_output.py +35 -0
  211. flywheel/models/user.py +58 -4
  212. flywheel/models/user_jobs_output.py +0 -1
  213. flywheel/models/user_output.py +11 -1
  214. flywheel/models/version_output.py +0 -1
  215. flywheel/models/viewer_app.py +27 -1
  216. flywheel/models/viewer_app_input.py +380 -0
  217. flywheel/models/workspace_origin.py +0 -1
  218. flywheel/models/workspace_output.py +0 -1
  219. flywheel/models/workspace_update.py +0 -1
  220. {flywheel_sdk-17.8.0rc1.dist-info → flywheel_sdk-18.0.0.dist-info}/METADATA +1 -1
  221. {flywheel_sdk-17.8.0rc1.dist-info → flywheel_sdk-18.0.0.dist-info}/RECORD +224 -147
  222. {flywheel_sdk-17.8.0rc1.dist-info → flywheel_sdk-18.0.0.dist-info}/LICENSE.txt +0 -0
  223. {flywheel_sdk-17.8.0rc1.dist-info → flywheel_sdk-18.0.0.dist-info}/WHEEL +0 -0
  224. {flywheel_sdk-17.8.0rc1.dist-info → flywheel_sdk-18.0.0.dist-info}/top_level.txt +0 -0
flywheel/__init__.py CHANGED
@@ -119,14 +119,19 @@ from flywheel.models.azure_ml_workspace_input import AzureMLWorkspaceInput
119
119
  from flywheel.models.base_aet import BaseAET
120
120
  from flywheel.models.base_compute import BaseCompute
121
121
  from flywheel.models.batch import Batch
122
+ from flywheel.models.batch_cancel_output import BatchCancelOutput
122
123
  from flywheel.models.batch_job_analysis_input import BatchJobAnalysisInput
124
+ from flywheel.models.batch_jobs_proposal_input import BatchJobsProposalInput
123
125
  from flywheel.models.batch_proposal import BatchProposal
126
+ from flywheel.models.batch_proposal_detail import BatchProposalDetail
124
127
  from flywheel.models.batch_proposal_input import BatchProposalInput
128
+ from flywheel.models.body import Body
125
129
  from flywheel.models.body_regenerate_key_api_devices_device_id_key_post import BodyRegenerateKeyApiDevicesDeviceIdKeyPost
126
130
  from flywheel.models.body_region import BodyRegion
127
131
  from flywheel.models.bookmark import Bookmark
128
132
  from flywheel.models.bulk_move_input import BulkMoveInput
129
133
  from flywheel.models.bulk_move_sessions import BulkMoveSessions
134
+ from flywheel.models.callbacks_virus_scan_input import CallbacksVirusScanInput
130
135
  from flywheel.models.cancelled_batch_output import CancelledBatchOutput
131
136
  from flywheel.models.catalog_list_output import CatalogListOutput
132
137
  from flywheel.models.central_out import CentralOut
@@ -139,6 +144,9 @@ from flywheel.models.classic_batch_job_output import ClassicBatchJobOutput
139
144
  from flywheel.models.classic_batch_job_output_inflated_jobs import ClassicBatchJobOutputInflatedJobs
140
145
  from flywheel.models.classic_batch_proposal_input import ClassicBatchProposalInput
141
146
  from flywheel.models.classic_batch_proposal_output import ClassicBatchProposalOutput
147
+ from flywheel.models.classification_add_delete import ClassificationAddDelete
148
+ from flywheel.models.classification_replace import ClassificationReplace
149
+ from flywheel.models.classification_update_input import ClassificationUpdateInput
142
150
  from flywheel.models.cohort import Cohort
143
151
  from flywheel.models.collection import Collection
144
152
  from flywheel.models.collection_container_output import CollectionContainerOutput
@@ -157,11 +165,19 @@ from flywheel.models.common_deleted_count import CommonDeletedCount
157
165
  from flywheel.models.common_editions import CommonEditions
158
166
  from flywheel.models.common_info import CommonInfo
159
167
  from flywheel.models.common_join_origins import CommonJoinOrigins
168
+ from flywheel.models.common_key import CommonKey
160
169
  from flywheel.models.common_modified_count import CommonModifiedCount
170
+ from flywheel.models.common_object_created import CommonObjectCreated
161
171
  from flywheel.models.common_project_settings import CommonProjectSettings
172
+ from flywheel.models.common_settings import CommonSettings
162
173
  from flywheel.models.complete_multipart_upload_output import CompleteMultipartUploadOutput
163
174
  from flywheel.models.complete_s3_multipart_upload_input import CompleteS3MultipartUploadInput
175
+ from flywheel.models.config_feature_map import ConfigFeatureMap
164
176
  from flywheel.models.config_out import ConfigOut
177
+ from flywheel.models.config_output import ConfigOutput
178
+ from flywheel.models.config_site_config_output import ConfigSiteConfigOutput
179
+ from flywheel.models.config_site_settings import ConfigSiteSettings
180
+ from flywheel.models.config_site_settings_input import ConfigSiteSettingsInput
165
181
  from flywheel.models.conflict_types import ConflictTypes
166
182
  from flywheel.models.container_delete_reason import ContainerDeleteReason
167
183
  from flywheel.models.container_filter import ContainerFilter
@@ -169,6 +185,7 @@ from flywheel.models.container_id_view_input import ContainerIdViewInput
169
185
  from flywheel.models.container_id_view_input_execute_and_save import ContainerIdViewInputExecuteAndSave
170
186
  from flywheel.models.container_new_output import ContainerNewOutput
171
187
  from flywheel.models.container_node_min import ContainerNodeMin
188
+ from flywheel.models.container_output import ContainerOutput
172
189
  from flywheel.models.container_output_with_files import ContainerOutputWithFiles
173
190
  from flywheel.models.container_parents import ContainerParents
174
191
  from flywheel.models.container_pipeline_input import ContainerPipelineInput
@@ -214,8 +231,13 @@ from flywheel.models.device import Device
214
231
  from flywheel.models.device_admin_update import DeviceAdminUpdate
215
232
  from flywheel.models.device_create import DeviceCreate
216
233
  from flywheel.models.device_self_update import DeviceSelfUpdate
234
+ from flywheel.models.device_status import DeviceStatus
217
235
  from flywheel.models.device_status_entry import DeviceStatusEntry
218
236
  from flywheel.models.device_storage_strategy_update import DeviceStorageStrategyUpdate
237
+ from flywheel.models.dimse_project_input import DimseProjectInput
238
+ from flywheel.models.dimse_project_output import DimseProjectOutput
239
+ from flywheel.models.dimse_service_input import DimseServiceInput
240
+ from flywheel.models.dimse_service_output import DimseServiceOutput
219
241
  from flywheel.models.download import Download
220
242
  from flywheel.models.download_container_filter import DownloadContainerFilter
221
243
  from flywheel.models.download_container_filter_definition import DownloadContainerFilterDefinition
@@ -225,7 +247,9 @@ from flywheel.models.download_format import DownloadFormat
225
247
  from flywheel.models.download_input import DownloadInput
226
248
  from flywheel.models.download_node import DownloadNode
227
249
  from flywheel.models.download_strategy import DownloadStrategy
250
+ from flywheel.models.download_ticket import DownloadTicket
228
251
  from flywheel.models.download_ticket_stub import DownloadTicketStub
252
+ from flywheel.models.download_ticket_with_summary import DownloadTicketWithSummary
229
253
  from flywheel.models.edition import Edition
230
254
  from flywheel.models.egress_device import EgressDevice
231
255
  from flywheel.models.egress_device_page import EgressDevicePage
@@ -256,6 +280,7 @@ from flywheel.models.file_reference import FileReference
256
280
  from flywheel.models.file_suggestion import FileSuggestion
257
281
  from flywheel.models.file_template_options import FileTemplateOptions
258
282
  from flywheel.models.file_upsert_input import FileUpsertInput
283
+ from flywheel.models.file_upsert_origin import FileUpsertOrigin
259
284
  from flywheel.models.file_upsert_output import FileUpsertOutput
260
285
  from flywheel.models.file_version import FileVersion
261
286
  from flywheel.models.file_version_copy_of import FileVersionCopyOf
@@ -274,6 +299,7 @@ from flywheel.models.gear_category import GearCategory
274
299
  from flywheel.models.gear_config import GearConfig
275
300
  from flywheel.models.gear_context_input import GearContextInput
276
301
  from flywheel.models.gear_context_lookup import GearContextLookup
302
+ from flywheel.models.gear_context_lookup_item import GearContextLookupItem
277
303
  from flywheel.models.gear_context_value_output import GearContextValueOutput
278
304
  from flywheel.models.gear_context_value_output_unfound import GearContextValueOutputUnfound
279
305
  from flywheel.models.gear_custom import GearCustom
@@ -313,8 +339,10 @@ from flywheel.models.google_auth_out import GoogleAuthOut
313
339
  from flywheel.models.graph_filter import GraphFilter
314
340
  from flywheel.models.group import Group
315
341
  from flywheel.models.group_by import GroupBy
342
+ from flywheel.models.group_by_column import GroupByColumn
316
343
  from flywheel.models.group_container_output import GroupContainerOutput
317
344
  from flywheel.models.group_input import GroupInput
345
+ from flywheel.models.group_metadata_input import GroupMetadataInput
318
346
  from flywheel.models.group_node import GroupNode
319
347
  from flywheel.models.group_output import GroupOutput
320
348
  from flywheel.models.group_report import GroupReport
@@ -325,12 +353,17 @@ from flywheel.models.http_validation_error import HTTPValidationError
325
353
  from flywheel.models.header_feature import HeaderFeature
326
354
  from flywheel.models.hierarchy_export_templates import HierarchyExportTemplates
327
355
  from flywheel.models.info import Info
356
+ from flywheel.models.info_add_remove import InfoAddRemove
357
+ from flywheel.models.info_replace import InfoReplace
358
+ from flywheel.models.info_update_input import InfoUpdateInput
328
359
  from flywheel.models.ingress_provider import IngressProvider
329
360
  from flywheel.models.ingress_providers import IngressProviders
330
361
  from flywheel.models.ingress_site_settings import IngressSiteSettings
331
362
  from flywheel.models.ingress_update_provider import IngressUpdateProvider
332
363
  from flywheel.models.inline_response200 import InlineResponse200
364
+ from flywheel.models.inline_response2001 import InlineResponse2001
333
365
  from flywheel.models.inline_response2002 import InlineResponse2002
366
+ from flywheel.models.inline_response2003 import InlineResponse2003
334
367
  from flywheel.models.inline_response2005 import InlineResponse2005
335
368
  from flywheel.models.input_filter import InputFilter
336
369
  from flywheel.models.input_job import InputJob
@@ -400,7 +433,9 @@ from flywheel.models.join_origin_user import JoinOriginUser
400
433
  from flywheel.models.join_origins import JoinOrigins
401
434
  from flywheel.models.join_type import JoinType
402
435
  from flywheel.models.jupyterhub_workspace import JupyterhubWorkspace
436
+ from flywheel.models.ldap_sync import LdapSync
403
437
  from flywheel.models.ldap_sync_config import LdapSyncConfig
438
+ from flywheel.models.ldap_sync_input import LdapSyncInput
404
439
  from flywheel.models.ldap_sync_status import LdapSyncStatus
405
440
  from flywheel.models.legacy_api_key_output import LegacyApiKeyOutput
406
441
  from flywheel.models.legacy_input import LegacyInput
@@ -482,17 +517,22 @@ from flywheel.models.project_settings_workspaces import ProjectSettingsWorkspace
482
517
  from flywheel.models.project_settings_workspaces_input import ProjectSettingsWorkspacesInput
483
518
  from flywheel.models.project_share_level import ProjectShareLevel
484
519
  from flywheel.models.project_sharing_settings_project_contact import ProjectSharingSettingsProjectContact
520
+ from flywheel.models.project_sharing_settings_project_counters import ProjectSharingSettingsProjectCounters
485
521
  from flywheel.models.project_sharing_settings_project_institution import ProjectSharingSettingsProjectInstitution
486
522
  from flywheel.models.project_sharing_settings_project_settings_input import ProjectSharingSettingsProjectSettingsInput
487
523
  from flywheel.models.project_sharing_settings_project_settings_output import ProjectSharingSettingsProjectSettingsOutput
488
524
  from flywheel.models.project_sharing_settings_project_settings_sharing import ProjectSharingSettingsProjectSettingsSharing
489
525
  from flywheel.models.project_sharing_settings_project_settings_sharing_input import ProjectSharingSettingsProjectSettingsSharingInput
526
+ from flywheel.models.project_sharing_settings_project_stats import ProjectSharingSettingsProjectStats
490
527
  from flywheel.models.project_stats import ProjectStats
491
528
  from flywheel.models.project_subject_upsert_input import ProjectSubjectUpsertInput
492
529
  from flywheel.models.project_subject_upsert_output import ProjectSubjectUpsertOutput
493
530
  from flywheel.models.project_template import ProjectTemplate
494
531
  from flywheel.models.project_template_input import ProjectTemplateInput
495
532
  from flywheel.models.project_template_list_input import ProjectTemplateListInput
533
+ from flywheel.models.project_template_requirement import ProjectTemplateRequirement
534
+ from flywheel.models.project_template_session_template import ProjectTemplateSessionTemplate
535
+ from flywheel.models.project_upsert_origin import ProjectUpsertOrigin
496
536
  from flywheel.models.provider import Provider
497
537
  from flywheel.models.provider_access_type import ProviderAccessType
498
538
  from flywheel.models.provider_class import ProviderClass
@@ -508,7 +548,11 @@ from flywheel.models.report_access_log_origin import ReportAccessLogOrigin
508
548
  from flywheel.models.report_availability_list import ReportAvailabilityList
509
549
  from flywheel.models.report_daily_usage_entry import ReportDailyUsageEntry
510
550
  from flywheel.models.report_demographics_grid import ReportDemographicsGrid
551
+ from flywheel.models.report_ethnicity_grid import ReportEthnicityGrid
552
+ from flywheel.models.report_gender_count import ReportGenderCount
511
553
  from flywheel.models.report_group_report import ReportGroupReport
554
+ from flywheel.models.report_legacy_usage_entry import ReportLegacyUsageEntry
555
+ from flywheel.models.report_legacy_usage_project_entry import ReportLegacyUsageProjectEntry
512
556
  from flywheel.models.report_project import ReportProject
513
557
  from flywheel.models.report_site import ReportSite
514
558
  from flywheel.models.report_time_period import ReportTimePeriod
@@ -516,9 +560,17 @@ from flywheel.models.report_usage import ReportUsage
516
560
  from flywheel.models.report_usage_entry import ReportUsageEntry
517
561
  from flywheel.models.resolve_input import ResolveInput
518
562
  from flywheel.models.resolve_output import ResolveOutput
563
+ from flywheel.models.resolver_acquisition_node import ResolverAcquisitionNode
564
+ from flywheel.models.resolver_analysis_node import ResolverAnalysisNode
565
+ from flywheel.models.resolver_file_node import ResolverFileNode
566
+ from flywheel.models.resolver_gear_node import ResolverGearNode
567
+ from flywheel.models.resolver_group_node import ResolverGroupNode
519
568
  from flywheel.models.resolver_input import ResolverInput
520
569
  from flywheel.models.resolver_node import ResolverNode
521
570
  from flywheel.models.resolver_output import ResolverOutput
571
+ from flywheel.models.resolver_project_node import ResolverProjectNode
572
+ from flywheel.models.resolver_session_node import ResolverSessionNode
573
+ from flywheel.models.resolver_subject_node import ResolverSubjectNode
522
574
  from flywheel.models.role_input import RoleInput
523
575
  from flywheel.models.role_output import RoleOutput
524
576
  from flywheel.models.role_permission import RolePermission
@@ -526,7 +578,11 @@ from flywheel.models.role_permission_output import RolePermissionOutput
526
578
  from flywheel.models.role_permission_update import RolePermissionUpdate
527
579
  from flywheel.models.role_type import RoleType
528
580
  from flywheel.models.role_update import RoleUpdate
581
+ from flywheel.models.roles_backwards_compatible_role_assignment import RolesBackwardsCompatibleRoleAssignment
582
+ from flywheel.models.roles_group_role_pool_input import RolesGroupRolePoolInput
583
+ from flywheel.models.roles_role import RolesRole
529
584
  from flywheel.models.roles_role_assignment import RolesRoleAssignment
585
+ from flywheel.models.roles_role_input import RolesRoleInput
530
586
  from flywheel.models.rule import Rule
531
587
  from flywheel.models.rule_any import RuleAny
532
588
  from flywheel.models.s3_compat_storage import S3CompatStorage
@@ -541,16 +597,29 @@ from flywheel.models.search_analysis_response import SearchAnalysisResponse
541
597
  from flywheel.models.search_collection_response import SearchCollectionResponse
542
598
  from flywheel.models.search_file_response import SearchFileResponse
543
599
  from flywheel.models.search_group_response import SearchGroupResponse
600
+ from flywheel.models.search_parent_acquisition import SearchParentAcquisition
601
+ from flywheel.models.search_parent_analysis import SearchParentAnalysis
602
+ from flywheel.models.search_parent_collection import SearchParentCollection
603
+ from flywheel.models.search_parent_project import SearchParentProject
544
604
  from flywheel.models.search_parent_response import SearchParentResponse
605
+ from flywheel.models.search_parent_session import SearchParentSession
606
+ from flywheel.models.search_parent_subject import SearchParentSubject
545
607
  from flywheel.models.search_parse_error import SearchParseError
608
+ from flywheel.models.search_parse_search_query_result import SearchParseSearchQueryResult
546
609
  from flywheel.models.search_project_response import SearchProjectResponse
547
610
  from flywheel.models.search_query import SearchQuery
611
+ from flywheel.models.search_query_suggestions import SearchQuerySuggestions
548
612
  from flywheel.models.search_response import SearchResponse
549
613
  from flywheel.models.search_return_type import SearchReturnType
614
+ from flywheel.models.search_save_search import SearchSaveSearch
615
+ from flywheel.models.search_save_search_input import SearchSaveSearchInput
616
+ from flywheel.models.search_save_search_parent import SearchSaveSearchParent
617
+ from flywheel.models.search_save_search_update import SearchSaveSearchUpdate
550
618
  from flywheel.models.search_session_response import SearchSessionResponse
551
619
  from flywheel.models.search_status import SearchStatus
552
620
  from flywheel.models.search_structured_search_query import SearchStructuredSearchQuery
553
621
  from flywheel.models.search_subject_response import SearchSubjectResponse
622
+ from flywheel.models.search_suggestion import SearchSuggestion
554
623
  from flywheel.models.server_state import ServerState
555
624
  from flywheel.models.service_aet import ServiceAET
556
625
  from flywheel.models.service_aet_input import ServiceAETInput
@@ -559,6 +628,7 @@ from flywheel.models.session_container_output import SessionContainerOutput
559
628
  from flywheel.models.session_embedded_subject import SessionEmbeddedSubject
560
629
  from flywheel.models.session_input import SessionInput
561
630
  from flywheel.models.session_list_output import SessionListOutput
631
+ from flywheel.models.session_metadata_input import SessionMetadataInput
562
632
  from flywheel.models.session_modify import SessionModify
563
633
  from flywheel.models.session_node import SessionNode
564
634
  from flywheel.models.session_output import SessionOutput
@@ -603,15 +673,21 @@ from flywheel.models.tag import Tag
603
673
  from flywheel.models.therapeutic_area import TherapeuticArea
604
674
  from flywheel.models.transitions import Transitions
605
675
  from flywheel.models.tree_container_request_spec import TreeContainerRequestSpec
676
+ from flywheel.models.tree_graph import TreeGraph
606
677
  from flywheel.models.tree_graph_connection import TreeGraphConnection
678
+ from flywheel.models.tree_graph_connections import TreeGraphConnections
607
679
  from flywheel.models.tree_graph_node import TreeGraphNode
608
680
  from flywheel.models.tree_request import TreeRequest
681
+ from flywheel.models.tree_response_item import TreeResponseItem
609
682
  from flywheel.models.type_str import TypeStr
610
683
  from flywheel.models.uid_check_input_acquisitions import UidCheckInputAcquisitions
611
684
  from flywheel.models.uid_check_input_sessions import UidCheckInputSessions
612
685
  from flywheel.models.uid_check_output import UidCheckOutput
613
686
  from flywheel.models.upload_complete_s3_multipart_input import UploadCompleteS3MultipartInput
614
687
  from flywheel.models.upload_complete_s3_multipart_output import UploadCompleteS3MultipartOutput
688
+ from flywheel.models.upload_signed_fs_file_upload_output import UploadSignedFsFileUploadOutput
689
+ from flywheel.models.upload_signed_upload_url_input import UploadSignedUploadUrlInput
690
+ from flywheel.models.upload_signed_upload_url_output import UploadSignedUploadUrlOutput
615
691
  from flywheel.models.upload_ticket_output import UploadTicketOutput
616
692
  from flywheel.models.upload_token_output import UploadTokenOutput
617
693
  from flywheel.models.upsert_result import UpsertResult
@@ -630,6 +706,7 @@ from flywheel.models.version_output import VersionOutput
630
706
  from flywheel.models.view_id_output import ViewIdOutput
631
707
  from flywheel.models.view_output import ViewOutput
632
708
  from flywheel.models.viewer_app import ViewerApp
709
+ from flywheel.models.viewer_app_input import ViewerAppInput
633
710
  from flywheel.models.viewer_app_type import ViewerAppType
634
711
  from flywheel.models.virus_scan import VirusScan
635
712
  from flywheel.models.virus_scan_state import VirusScanState
@@ -63,7 +63,7 @@ class AcquisitionsApi(object):
63
63
  This method makes a synchronous HTTP request by default.
64
64
 
65
65
  :param AcquisitionInput body: (required)
66
- :param bool async: Perform the request asynchronously
66
+ :param bool async_: Perform the request asynchronously
67
67
  :return: InsertedId
68
68
  """
69
69
 
@@ -174,7 +174,7 @@ class AcquisitionsApi(object):
174
174
  :param str cid: (required)
175
175
  :param union[AdhocAnalysisInput,JobAnalysisInput] body: (required)
176
176
  :param bool job: returns job_id instead of analysis.id
177
- :param bool async: Perform the request asynchronously
177
+ :param bool async_: Perform the request asynchronously
178
178
  :return: InsertedId
179
179
  """
180
180
 
@@ -293,7 +293,7 @@ class AcquisitionsApi(object):
293
293
  :param str container_id: 24-char hex id (required)
294
294
  :param str analysis_id: 24-char hex analysis id (required)
295
295
  :param NoteInput body: note content (required)
296
- :param bool async: Perform the request asynchronously
296
+ :param bool async_: Perform the request asynchronously
297
297
  :return: Note
298
298
  """
299
299
 
@@ -412,7 +412,7 @@ class AcquisitionsApi(object):
412
412
 
413
413
  :param str container_id: (required)
414
414
  :param NoteInput body: (required)
415
- :param bool async: Perform the request asynchronously
415
+ :param bool async_: Perform the request asynchronously
416
416
  :return: Note
417
417
  """
418
418
 
@@ -527,7 +527,7 @@ class AcquisitionsApi(object):
527
527
 
528
528
  :param str cid: (required)
529
529
  :param Tag body: (required)
530
- :param bool async: Perform the request asynchronously
530
+ :param bool async_: Perform the request asynchronously
531
531
  :return: ModifiedResult
532
532
  """
533
533
 
@@ -642,7 +642,7 @@ class AcquisitionsApi(object):
642
642
 
643
643
  :param str cid: (required)
644
644
  :param list[str] body: (required)
645
- :param bool async: Perform the request asynchronously
645
+ :param bool async_: Perform the request asynchronously
646
646
  :return: None
647
647
  """
648
648
 
@@ -750,7 +750,7 @@ class AcquisitionsApi(object):
750
750
 
751
751
  :param str acquisition_id: (required)
752
752
  :param ContainerDeleteReason delete_reason: Provide a reason for the deletion
753
- :param bool async: Perform the request asynchronously
753
+ :param bool async_: Perform the request asynchronously
754
754
  :return: DeletedResult
755
755
  """
756
756
 
@@ -852,7 +852,7 @@ class AcquisitionsApi(object):
852
852
  :param str cid: (required)
853
853
  :param str analysis_id: (required)
854
854
  :param ContainerDeleteReason delete_reason: Provide a reason for the deletion
855
- :param bool async: Perform the request asynchronously
855
+ :param bool async_: Perform the request asynchronously
856
856
  :return: DeletedResult
857
857
  """
858
858
 
@@ -960,7 +960,7 @@ class AcquisitionsApi(object):
960
960
  :param str cid: 24-char hex id (required)
961
961
  :param str analysis_id: 24-char hex analysis id (required)
962
962
  :param str note_id: 24-char hex note id (required)
963
- :param bool async: Perform the request asynchronously
963
+ :param bool async_: Perform the request asynchronously
964
964
  :return: DeletedResult
965
965
  """
966
966
 
@@ -1074,7 +1074,7 @@ class AcquisitionsApi(object):
1074
1074
  :param str filename: (required)
1075
1075
  :param ContainerDeleteReason delete_reason: A reason for deletion when audit-trail is enabled
1076
1076
  :param bool force: Force deletion of the file even if some checks fail
1077
- :param bool async: Perform the request asynchronously
1077
+ :param bool async_: Perform the request asynchronously
1078
1078
  :return: DeletedResult
1079
1079
  """
1080
1080
 
@@ -1182,7 +1182,7 @@ class AcquisitionsApi(object):
1182
1182
 
1183
1183
  :param str cid: (required)
1184
1184
  :param str note_id: (required)
1185
- :param bool async: Perform the request asynchronously
1185
+ :param bool async_: Perform the request asynchronously
1186
1186
  :return: DeletedResult
1187
1187
  """
1188
1188
 
@@ -1286,7 +1286,7 @@ class AcquisitionsApi(object):
1286
1286
 
1287
1287
  :param str cid: (required)
1288
1288
  :param str value: The tag to interact with (required)
1289
- :param bool async: Perform the request asynchronously
1289
+ :param bool async_: Perform the request asynchronously
1290
1290
  :return: DeletedResult
1291
1291
  """
1292
1292
 
@@ -1390,7 +1390,7 @@ class AcquisitionsApi(object):
1390
1390
 
1391
1391
  :param str cid: (required)
1392
1392
  :param list[str] body: (required)
1393
- :param bool async: Perform the request asynchronously
1393
+ :param bool async_: Perform the request asynchronously
1394
1394
  :return: None
1395
1395
  """
1396
1396
 
@@ -1512,7 +1512,7 @@ class AcquisitionsApi(object):
1512
1512
  :param str hash: file hash for comparison
1513
1513
  :param str range: byte ranges to return
1514
1514
  :param list[str] x_accept_feature: redirect header
1515
- :param bool async: Perform the request asynchronously
1515
+ :param bool async_: Perform the request asynchronously
1516
1516
  :return: union[DownloadTicketStub,ZipfileInfo]
1517
1517
  """
1518
1518
 
@@ -1647,7 +1647,7 @@ class AcquisitionsApi(object):
1647
1647
  :param str hash: file hash for comparison
1648
1648
  :param str range: byte ranges to return
1649
1649
  :param list[str] x_accept_feature: redirect header
1650
- :param bool async: Perform the request asynchronously
1650
+ :param bool async_: Perform the request asynchronously
1651
1651
  :return: FileZipInfo
1652
1652
  """
1653
1653
 
@@ -1786,7 +1786,7 @@ class AcquisitionsApi(object):
1786
1786
  :param str hash: file hash for comparison
1787
1787
  :param str range: byte ranges to return
1788
1788
  :param list[str] x_accept_feature: redirect header
1789
- :param bool async: Perform the request asynchronously
1789
+ :param bool async_: Perform the request asynchronously
1790
1790
  :return: union[DownloadTicketStub,ZipfileInfo]
1791
1791
  """
1792
1792
 
@@ -1919,7 +1919,7 @@ class AcquisitionsApi(object):
1919
1919
  :param bool view: feature flag for view/download
1920
1920
  :param str range: byte ranges to return
1921
1921
  :param list[str] x_accept_feature: redirect header
1922
- :param bool async: Perform the request asynchronously
1922
+ :param bool async_: Perform the request asynchronously
1923
1923
  :return: union[DownloadTicketStub,ZipfileInfo]
1924
1924
  """
1925
1925
 
@@ -2054,7 +2054,7 @@ class AcquisitionsApi(object):
2054
2054
  :param bool view: feature flag for view/download
2055
2055
  :param str range: byte ranges to return
2056
2056
  :param list[str] x_accept_feature: redirect header
2057
- :param bool async: Perform the request asynchronously
2057
+ :param bool async_: Perform the request asynchronously
2058
2058
  :return: FileZipInfo
2059
2059
  """
2060
2060
 
@@ -2193,7 +2193,7 @@ class AcquisitionsApi(object):
2193
2193
  :param bool view: feature flag for view/download
2194
2194
  :param str range: byte ranges to return
2195
2195
  :param list[str] x_accept_feature: redirect header
2196
- :param bool async: Perform the request asynchronously
2196
+ :param bool async_: Perform the request asynchronously
2197
2197
  :return: union[DownloadTicketStub,ZipfileInfo]
2198
2198
  """
2199
2199
 
@@ -2328,7 +2328,7 @@ class AcquisitionsApi(object):
2328
2328
  :param bool view: feature flag for view/download
2329
2329
  :param str range: byte ranges to return
2330
2330
  :param list[str] x_accept_feature: redirect header
2331
- :param bool async: Perform the request asynchronously
2331
+ :param bool async_: Perform the request asynchronously
2332
2332
  :return: union[DownloadTicketStub,ZipfileInfo]
2333
2333
  """
2334
2334
 
@@ -2463,7 +2463,7 @@ class AcquisitionsApi(object):
2463
2463
  :param bool view: feature flag for view/download
2464
2464
  :param str range: byte ranges to return
2465
2465
  :param list[str] x_accept_feature: redirect header
2466
- :param bool async: Perform the request asynchronously
2466
+ :param bool async_: Perform the request asynchronously
2467
2467
  :return: FileZipInfo
2468
2468
  """
2469
2469
 
@@ -2602,7 +2602,7 @@ class AcquisitionsApi(object):
2602
2602
  :param bool view: feature flag for view/download
2603
2603
  :param str range: byte ranges to return
2604
2604
  :param list[str] x_accept_feature: redirect header
2605
- :param bool async: Perform the request asynchronously
2605
+ :param bool async_: Perform the request asynchronously
2606
2606
  :return: union[DownloadTicketStub,ZipfileInfo]
2607
2607
  """
2608
2608
 
@@ -2729,7 +2729,7 @@ class AcquisitionsApi(object):
2729
2729
  :param JoinType join:
2730
2730
  :param bool join_avatars: add name and avatar to notes
2731
2731
  :param list[union[HeaderFeature,string]] x_accept_feature:
2732
- :param bool async: Perform the request asynchronously
2732
+ :param bool async_: Perform the request asynchronously
2733
2733
  :return: AcquisitionOutput
2734
2734
  """
2735
2735
 
@@ -2852,7 +2852,7 @@ class AcquisitionsApi(object):
2852
2852
  :param bool join_avatars:
2853
2853
  :param JoinType join:
2854
2854
  :param list[str] x_accept_feature:
2855
- :param bool async: Perform the request asynchronously
2855
+ :param bool async_: Perform the request asynchronously
2856
2856
  :return: union[Page,list[union[AnalysisListOutput,AnalysisListOutputInflatedJob]]]
2857
2857
  """
2858
2858
 
@@ -2977,7 +2977,7 @@ class AcquisitionsApi(object):
2977
2977
  :param bool inflate_job: Return job as an object instead of an id
2978
2978
  :param bool join_avatars:
2979
2979
  :param JoinType join:
2980
- :param bool async: Perform the request asynchronously
2980
+ :param bool async_: Perform the request asynchronously
2981
2981
  :return: union[AnalysisOutputInflatedJob,AnalysisOutput]
2982
2982
  """
2983
2983
 
@@ -3087,7 +3087,7 @@ class AcquisitionsApi(object):
3087
3087
 
3088
3088
  :param str cid: (required)
3089
3089
  :param str filename: (required)
3090
- :param bool async: Perform the request asynchronously
3090
+ :param bool async_: Perform the request asynchronously
3091
3091
  :return: FileOutput
3092
3092
  """
3093
3093
 
@@ -3191,7 +3191,7 @@ class AcquisitionsApi(object):
3191
3191
 
3192
3192
  :param str cid: (required)
3193
3193
  :param str note_id: (required)
3194
- :param bool async: Perform the request asynchronously
3194
+ :param bool async_: Perform the request asynchronously
3195
3195
  :return: Note
3196
3196
  """
3197
3197
 
@@ -3295,7 +3295,7 @@ class AcquisitionsApi(object):
3295
3295
 
3296
3296
  :param str cid: (required)
3297
3297
  :param str value: The tag to interact with (required)
3298
- :param bool async: Perform the request asynchronously
3298
+ :param bool async_: Perform the request asynchronously
3299
3299
  :return: str
3300
3300
  """
3301
3301
 
@@ -3417,7 +3417,7 @@ class AcquisitionsApi(object):
3417
3417
  :param int page: The page number (i.e. skip limit*page entries)
3418
3418
  :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
3419
3419
  :param list[union[HeaderFeature,string]] x_accept_feature:
3420
- :param bool async: Perform the request asynchronously
3420
+ :param bool async_: Perform the request asynchronously
3421
3421
  :return: union[list[AcquisitionListOutput],Page]
3422
3422
  """
3423
3423
 
@@ -3532,7 +3532,7 @@ class AcquisitionsApi(object):
3532
3532
 
3533
3533
  :param str acquisition_id: (required)
3534
3534
  :param AcquisitionModifyInput body: (required)
3535
- :param bool async: Perform the request asynchronously
3535
+ :param bool async_: Perform the request asynchronously
3536
3536
  :return: ModifiedResult
3537
3537
  """
3538
3538
 
@@ -3649,7 +3649,7 @@ class AcquisitionsApi(object):
3649
3649
  :param str cid: (required)
3650
3650
  :param str analysis_id: (required)
3651
3651
  :param AnalysisModifyInput body: (required)
3652
- :param bool async: Perform the request asynchronously
3652
+ :param bool async_: Perform the request asynchronously
3653
3653
  :return: ModifiedResult
3654
3654
  """
3655
3655
 
@@ -3772,7 +3772,7 @@ class AcquisitionsApi(object):
3772
3772
  :param str cid: (required)
3773
3773
  :param str filename: (required)
3774
3774
  :param FileModifyInput body: (required)
3775
- :param bool async: Perform the request asynchronously
3775
+ :param bool async_: Perform the request asynchronously
3776
3776
  :return: ModifiedResult
3777
3777
  """
3778
3778
 
@@ -3895,7 +3895,7 @@ class AcquisitionsApi(object):
3895
3895
  :param str cid: (required)
3896
3896
  :param str filename: (required)
3897
3897
  :param FileClassificationDelta body: (required)
3898
- :param bool async: Perform the request asynchronously
3898
+ :param bool async_: Perform the request asynchronously
3899
3899
  :return: ModifiedResult
3900
3900
  """
3901
3901
 
@@ -4018,7 +4018,7 @@ class AcquisitionsApi(object):
4018
4018
  :param str cid: (required)
4019
4019
  :param str filename: (required)
4020
4020
  :param Info body: (required)
4021
- :param bool async: Perform the request asynchronously
4021
+ :param bool async_: Perform the request asynchronously
4022
4022
  :return: ModifiedResult
4023
4023
  """
4024
4024
 
@@ -4139,7 +4139,7 @@ class AcquisitionsApi(object):
4139
4139
 
4140
4140
  :param str cid: (required)
4141
4141
  :param Info body: (required)
4142
- :param bool async: Perform the request asynchronously
4142
+ :param bool async_: Perform the request asynchronously
4143
4143
  :return: ModifiedResult
4144
4144
  """
4145
4145
 
@@ -4256,7 +4256,7 @@ class AcquisitionsApi(object):
4256
4256
  :param str cid: (required)
4257
4257
  :param str note_id: (required)
4258
4258
  :param NoteInput body: (required)
4259
- :param bool async: Perform the request asynchronously
4259
+ :param bool async_: Perform the request asynchronously
4260
4260
  :return: int
4261
4261
  """
4262
4262
 
@@ -4379,7 +4379,7 @@ class AcquisitionsApi(object):
4379
4379
  :param str cid: (required)
4380
4380
  :param str value: The tag to interact with (required)
4381
4381
  :param Tag body: (required)
4382
- :param bool async: Perform the request asynchronously
4382
+ :param bool async_: Perform the request asynchronously
4383
4383
  :return: str
4384
4384
  """
4385
4385
 
@@ -4512,7 +4512,7 @@ class AcquisitionsApi(object):
4512
4512
  :param str metadata: Metadata object as a JSON-encoded string
4513
4513
  :param list[str] x_accept_feature: redirect header
4514
4514
  :param str content_type:
4515
- :param bool async: Perform the request asynchronously
4515
+ :param bool async_: Perform the request asynchronously
4516
4516
  :return: union[list[FileOutput],UploadTicketOutput]
4517
4517
  """
4518
4518
 
@@ -4647,7 +4647,7 @@ class AcquisitionsApi(object):
4647
4647
  :param str id:
4648
4648
  :param str job:
4649
4649
  :param str content_type:
4650
- :param bool async: Perform the request asynchronously
4650
+ :param bool async_: Perform the request asynchronously
4651
4651
  :return: list[FileOutput]
4652
4652
  """
4653
4653