flywheel-sdk 21.3.0__py3-none-any.whl → 21.4.0__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 (773) hide show
  1. flywheel/__init__.py +6 -8
  2. flywheel/api/acquisitions_api.py +1033 -569
  3. flywheel/api/analyses_api.py +786 -432
  4. flywheel/api/audit_trail_api.py +78 -51
  5. flywheel/api/auth_api.py +6 -11
  6. flywheel/api/batch_api.py +60 -43
  7. flywheel/api/bulk_api.py +10 -13
  8. flywheel/api/change_log_api.py +40 -29
  9. flywheel/api/collections_api.py +740 -410
  10. flywheel/api/config_api.py +18 -19
  11. flywheel/api/container_tasks_api.py +14 -15
  12. flywheel/api/container_type_api.py +14 -15
  13. flywheel/api/containers_api.py +989 -545
  14. flywheel/api/custom_filters_api.py +64 -43
  15. flywheel/api/data_view_executions_api.py +94 -59
  16. flywheel/api/dataexplorer_api.py +158 -99
  17. flywheel/api/devices_api.py +132 -83
  18. flywheel/api/dimse_api.py +72 -51
  19. flywheel/api/download_api.py +46 -32
  20. flywheel/api/files_api.py +266 -157
  21. flywheel/api/form_responses_api.py +100 -63
  22. flywheel/api/gears_api.py +278 -163
  23. flywheel/api/groups_api.py +426 -245
  24. flywheel/api/jobs_api.py +288 -173
  25. flywheel/api/jupyterlab_servers_api.py +24 -21
  26. flywheel/api/modalities_api.py +78 -51
  27. flywheel/api/packfiles_api.py +6 -11
  28. flywheel/api/projects_api.py +1661 -856
  29. flywheel/api/protocols_api.py +94 -61
  30. flywheel/api/reports_api.py +196 -115
  31. flywheel/api/resolve_api.py +48 -33
  32. flywheel/api/roles_api.py +82 -53
  33. flywheel/api/sessions_api.py +1137 -623
  34. flywheel/api/site_api.py +182 -113
  35. flywheel/api/staffing_pools_api.py +88 -57
  36. flywheel/api/subjects_api.py +1095 -603
  37. flywheel/api/tasks_api.py +108 -69
  38. flywheel/api/tree_api.py +52 -35
  39. flywheel/api/uids_api.py +10 -13
  40. flywheel/api/upload_api.py +162 -95
  41. flywheel/api/users_api.py +418 -235
  42. flywheel/api/views_api.py +222 -127
  43. flywheel/api_client.py +19 -18
  44. flywheel/configuration.py +2 -9
  45. flywheel/file_spec.py +0 -7
  46. flywheel/flywheel.py +818 -4423
  47. flywheel/gear_context.py +10 -10
  48. flywheel/models/__init__.py +6 -8
  49. flywheel/models/access_level.py +0 -7
  50. flywheel/models/access_permission.py +13 -14
  51. flywheel/models/access_permission_output.py +13 -14
  52. flywheel/models/access_permission_update.py +8 -11
  53. flywheel/models/access_type.py +0 -7
  54. flywheel/models/accumulator.py +0 -7
  55. flywheel/models/acquisition.py +0 -7
  56. flywheel/models/acquisition_container_output.py +0 -7
  57. flywheel/models/acquisition_copy_input.py +18 -17
  58. flywheel/models/acquisition_input.py +33 -26
  59. flywheel/models/acquisition_list_output.py +118 -77
  60. flywheel/models/acquisition_modify_input.py +33 -26
  61. flywheel/models/acquisition_node.py +0 -7
  62. flywheel/models/acquisition_output.py +118 -77
  63. flywheel/models/acquisition_parents.py +23 -20
  64. flywheel/models/acquisition_template_options.py +28 -23
  65. flywheel/models/acquisition_upsert_input.py +48 -35
  66. flywheel/models/acquisition_upsert_output.py +23 -20
  67. flywheel/models/action.py +1 -7
  68. flywheel/models/adhoc_analysis_input.py +23 -20
  69. flywheel/models/analysis.py +0 -7
  70. flywheel/models/analysis_container_output.py +0 -7
  71. flywheel/models/analysis_files_create_ticket_output.py +23 -20
  72. flywheel/models/analysis_input.py +33 -26
  73. flywheel/models/analysis_input_legacy.py +0 -7
  74. flywheel/models/analysis_list_output.py +103 -68
  75. flywheel/models/analysis_list_output_inflated_job.py +98 -65
  76. flywheel/models/analysis_modify_input.py +13 -14
  77. flywheel/models/analysis_node.py +0 -7
  78. flywheel/models/analysis_output.py +103 -68
  79. flywheel/models/analysis_output_inflated_job.py +103 -68
  80. flywheel/models/analysis_parents.py +28 -23
  81. flywheel/models/analysis_update.py +0 -7
  82. flywheel/models/api_key_input_with_optional_label.py +13 -14
  83. flywheel/models/api_key_output.py +33 -26
  84. flywheel/models/as_storage.py +33 -26
  85. flywheel/models/assignee.py +13 -14
  86. flywheel/models/assignee_type.py +0 -7
  87. flywheel/models/audit_trail_report.py +68 -47
  88. flywheel/models/audit_trail_report_status.py +0 -7
  89. flywheel/models/auth0_auth_out.py +38 -29
  90. flywheel/models/auth0_options_out.py +38 -29
  91. flywheel/models/auth_out.py +34 -82
  92. flywheel/models/auth_session_output.py +28 -23
  93. flywheel/models/avatars.py +18 -17
  94. flywheel/models/aws_creds.py +13 -14
  95. flywheel/models/aws_storage.py +43 -32
  96. flywheel/models/azure_creds.py +13 -14
  97. flywheel/models/base_aet.py +23 -20
  98. flywheel/models/base_compute.py +58 -41
  99. flywheel/models/batch.py +43 -32
  100. flywheel/models/batch_cancel_output.py +0 -7
  101. flywheel/models/batch_create_filters.py +18 -17
  102. flywheel/models/batch_job_analysis_input.py +28 -23
  103. flywheel/models/batch_jobs_proposal_input.py +0 -7
  104. flywheel/models/batch_proposal.py +0 -7
  105. flywheel/models/batch_proposal_detail.py +0 -7
  106. flywheel/models/batch_proposal_input.py +0 -7
  107. flywheel/models/body.py +0 -7
  108. flywheel/models/body_regenerate_key_api_devices_device_id_key_post.py +0 -7
  109. flywheel/models/body_region.py +0 -7
  110. flywheel/models/bookmark.py +13 -14
  111. flywheel/models/bulk_move_input.py +28 -23
  112. flywheel/models/bulk_move_sessions.py +0 -7
  113. flywheel/models/callbacks_virus_scan_input.py +0 -7
  114. flywheel/models/cancelled_batch_output.py +8 -11
  115. flywheel/models/catalog_list_output.py +53 -38
  116. flywheel/models/central_out.py +33 -26
  117. flywheel/models/change.py +80 -39
  118. flywheel/models/change_log_container_type.py +0 -7
  119. flywheel/models/change_log_document.py +23 -20
  120. flywheel/models/change_method.py +1 -7
  121. flywheel/models/classic_batch_job_output.py +43 -32
  122. flywheel/models/classic_batch_job_output_inflated_jobs.py +48 -35
  123. flywheel/models/classic_batch_proposal_input.py +48 -35
  124. flywheel/models/classic_batch_proposal_output.py +63 -44
  125. flywheel/models/classification_add_delete.py +0 -7
  126. flywheel/models/classification_replace.py +0 -7
  127. flywheel/models/classification_update_input.py +0 -7
  128. flywheel/models/cohort.py +0 -7
  129. flywheel/models/collection.py +0 -7
  130. flywheel/models/collection_container_output.py +0 -7
  131. flywheel/models/collection_input.py +18 -17
  132. flywheel/models/collection_input_with_contents.py +23 -20
  133. flywheel/models/collection_node.py +13 -14
  134. flywheel/models/collection_node_level.py +0 -7
  135. flywheel/models/collection_operation.py +13 -14
  136. flywheel/models/collection_operation_type.py +0 -7
  137. flywheel/models/collection_output.py +93 -62
  138. flywheel/models/collection_with_stats.py +93 -62
  139. flywheel/models/column.py +28 -23
  140. flywheel/models/column_type.py +0 -7
  141. flywheel/models/common_classification.py +3 -8
  142. flywheel/models/common_deleted_count.py +0 -7
  143. flywheel/models/common_editions.py +0 -7
  144. flywheel/models/common_info.py +3 -8
  145. flywheel/models/common_join_origins.py +0 -7
  146. flywheel/models/common_key.py +0 -7
  147. flywheel/models/common_modified_count.py +0 -7
  148. flywheel/models/common_object_created.py +0 -7
  149. flywheel/models/common_project_settings.py +0 -7
  150. flywheel/models/common_settings.py +0 -7
  151. flywheel/models/complete_multipart_upload_output.py +13 -14
  152. flywheel/models/complete_s3_multipart_upload_input.py +23 -20
  153. flywheel/models/config_feature_map.py +0 -7
  154. flywheel/models/config_out.py +48 -35
  155. flywheel/models/config_output.py +0 -7
  156. flywheel/models/config_site_config_output.py +0 -7
  157. flywheel/models/config_site_settings.py +0 -7
  158. flywheel/models/config_site_settings_input.py +0 -7
  159. flywheel/models/conflict_types.py +0 -7
  160. flywheel/models/container_delete_reason.py +0 -7
  161. flywheel/models/container_filter.py +13 -14
  162. flywheel/models/container_id_view_input.py +73 -50
  163. flywheel/models/container_id_view_input_execute_and_save.py +33 -26
  164. flywheel/models/container_modify.py +73 -50
  165. flywheel/models/container_new_output.py +0 -7
  166. flywheel/models/container_node_min.py +43 -32
  167. flywheel/models/container_output.py +0 -7
  168. flywheel/models/container_output_with_files.py +28 -23
  169. flywheel/models/container_parents.py +33 -26
  170. flywheel/models/container_pipeline_input.py +73 -50
  171. flywheel/models/container_project_parents.py +0 -7
  172. flywheel/models/container_reference.py +13 -14
  173. flywheel/models/container_reference_with_label.py +18 -17
  174. flywheel/models/container_session_parents.py +0 -7
  175. flywheel/models/container_subject_parents.py +0 -7
  176. flywheel/models/container_type.py +0 -7
  177. flywheel/models/container_uidcheck.py +23 -20
  178. flywheel/models/container_update.py +3 -8
  179. flywheel/models/context_input.py +18 -17
  180. flywheel/models/copy_filter.py +33 -26
  181. flywheel/models/copy_status.py +0 -7
  182. flywheel/models/core_models_api_key_api_key_input.py +13 -14
  183. flywheel/models/core_models_audit_trail_create_report_input.py +28 -23
  184. flywheel/models/core_models_audit_trail_modify_report_input.py +8 -11
  185. flywheel/models/core_models_common_source.py +13 -14
  186. flywheel/models/core_models_jobs_api_key_input.py +13 -14
  187. flywheel/models/core_models_search_parent_type.py +0 -7
  188. flywheel/models/core_workflows_form_responses_models_form_parents.py +33 -26
  189. flywheel/models/core_workflows_form_responses_models_form_response_output.py +58 -41
  190. flywheel/models/core_workflows_reader_models_reader_task_parents.py +33 -26
  191. flywheel/models/creds.py +3 -8
  192. flywheel/models/curator.py +18 -17
  193. flywheel/models/current_user_output.py +108 -71
  194. flywheel/models/custom_field.py +58 -41
  195. flywheel/models/custom_form.py +23 -20
  196. flywheel/models/cvat_info.py +28 -23
  197. flywheel/models/cvat_settings.py +28 -23
  198. flywheel/models/cvat_settings_input.py +28 -23
  199. flywheel/models/cvat_sync_state.py +0 -7
  200. flywheel/models/daily_report_usage.py +78 -53
  201. flywheel/models/data_strategy.py +0 -7
  202. flywheel/models/data_view.py +0 -7
  203. flywheel/models/data_view_analysis_file_spec.py +18 -17
  204. flywheel/models/data_view_analysis_filter_spec.py +18 -17
  205. flywheel/models/data_view_column_alias.py +38 -29
  206. flywheel/models/data_view_column_spec.py +28 -23
  207. flywheel/models/data_view_execution.py +68 -47
  208. flywheel/models/data_view_execution_state.py +0 -7
  209. flywheel/models/data_view_file_spec.py +48 -35
  210. flywheel/models/data_view_group_by.py +8 -11
  211. flywheel/models/data_view_group_by_column.py +13 -14
  212. flywheel/models/data_view_name_filter_spec.py +13 -14
  213. flywheel/models/data_view_output.py +0 -7
  214. flywheel/models/data_view_save_data_view_input.py +0 -7
  215. flywheel/models/data_view_zip_filter_spec.py +18 -17
  216. flywheel/models/default_flywheel_role.py +0 -7
  217. flywheel/models/deid_log_skip_reason.py +0 -7
  218. flywheel/models/delete_by_search_query.py +23 -20
  219. flywheel/models/delete_status.py +25 -0
  220. flywheel/models/deleted_file.py +73 -50
  221. flywheel/models/deleted_result.py +50 -19
  222. flywheel/models/deprecated_action.py +0 -7
  223. flywheel/models/destination_container_type.py +0 -7
  224. flywheel/models/device.py +58 -41
  225. flywheel/models/device_admin_update.py +13 -14
  226. flywheel/models/device_create.py +18 -17
  227. flywheel/models/device_self_update.py +28 -23
  228. flywheel/models/device_status.py +0 -7
  229. flywheel/models/device_status_entry.py +18 -17
  230. flywheel/models/device_storage_strategy_update.py +13 -14
  231. flywheel/models/dimse_project_input.py +0 -7
  232. flywheel/models/dimse_project_output.py +0 -7
  233. flywheel/models/dimse_service_input.py +0 -7
  234. flywheel/models/dimse_service_output.py +0 -7
  235. flywheel/models/download.py +23 -20
  236. flywheel/models/download_container_filter.py +8 -11
  237. flywheel/models/download_container_filter_definition.py +18 -17
  238. flywheel/models/download_filter.py +18 -17
  239. flywheel/models/download_filter_definition.py +13 -14
  240. flywheel/models/download_format.py +0 -7
  241. flywheel/models/download_input.py +0 -7
  242. flywheel/models/download_node.py +13 -14
  243. flywheel/models/download_strategy.py +0 -7
  244. flywheel/models/download_ticket.py +0 -7
  245. flywheel/models/download_ticket_stub.py +23 -20
  246. flywheel/models/download_ticket_with_summary.py +0 -7
  247. flywheel/models/e_signature.py +23 -20
  248. flywheel/models/edition.py +8 -11
  249. flywheel/models/egress_device.py +88 -59
  250. flywheel/models/egress_device_page.py +18 -17
  251. flywheel/models/egress_provider.py +53 -38
  252. flywheel/models/egress_provider_id.py +8 -11
  253. flywheel/models/exchange_storage.py +23 -20
  254. flywheel/models/executor_info.py +43 -32
  255. flywheel/models/export_templates.py +13 -14
  256. flywheel/models/features.py +348 -225
  257. flywheel/models/field_change.py +28 -23
  258. flywheel/models/field_change_log_document.py +23 -20
  259. flywheel/models/field_type.py +0 -7
  260. flywheel/models/file.py +188 -119
  261. flywheel/models/file_classification_delta.py +23 -20
  262. flywheel/models/file_container_type.py +0 -7
  263. flywheel/models/file_entry.py +108 -71
  264. flywheel/models/file_export_templates.py +28 -23
  265. flywheel/models/file_format.py +0 -7
  266. flywheel/models/file_gear_info.py +18 -17
  267. flywheel/models/file_group.py +0 -7
  268. flywheel/models/file_list_output.py +183 -116
  269. flywheel/models/file_modify_input.py +13 -14
  270. flywheel/models/file_move_input.py +18 -17
  271. flywheel/models/file_node.py +188 -119
  272. flywheel/models/file_node_min.py +38 -29
  273. flywheel/models/file_origin.py +28 -23
  274. flywheel/models/file_output.py +183 -116
  275. flywheel/models/file_parents.py +33 -26
  276. flywheel/models/file_reference.py +18 -17
  277. flywheel/models/file_suggestion.py +23 -20
  278. flywheel/models/file_template_options.py +33 -26
  279. flywheel/models/file_upsert_input.py +88 -59
  280. flywheel/models/file_upsert_origin.py +0 -7
  281. flywheel/models/file_upsert_output.py +188 -119
  282. flywheel/models/file_version.py +13 -14
  283. flywheel/models/file_version_copy_of.py +28 -23
  284. flywheel/models/file_version_output.py +38 -29
  285. flywheel/models/file_via.py +23 -20
  286. flywheel/models/file_zip_entry.py +0 -7
  287. flywheel/models/file_zip_info.py +0 -7
  288. flywheel/models/filter.py +43 -32
  289. flywheel/models/filter_input.py +18 -17
  290. flywheel/models/filter_values.py +13 -14
  291. flywheel/models/filter_view.py +0 -7
  292. flywheel/models/fixed_file_version_input.py +18 -17
  293. flywheel/models/fixed_input.py +33 -26
  294. flywheel/models/form_definition.py +8 -11
  295. flywheel/models/form_response_base.py +33 -26
  296. flywheel/models/form_response_create.py +13 -14
  297. flywheel/models/gcp_creds.py +53 -38
  298. flywheel/models/gcp_storage.py +33 -26
  299. flywheel/models/gear.py +88 -59
  300. flywheel/models/gear_category.py +0 -7
  301. flywheel/models/gear_config.py +3 -8
  302. flywheel/models/gear_context_input.py +8 -11
  303. flywheel/models/gear_context_lookup.py +0 -7
  304. flywheel/models/gear_context_lookup_item.py +0 -7
  305. flywheel/models/gear_context_value_output.py +28 -23
  306. flywheel/models/gear_context_value_output_unfound.py +8 -11
  307. flywheel/models/gear_custom.py +3 -8
  308. flywheel/models/gear_directive.py +3 -8
  309. flywheel/models/gear_doc.py +0 -7
  310. flywheel/models/gear_document.py +38 -29
  311. flywheel/models/gear_document_input.py +33 -26
  312. flywheel/models/gear_document_legacy_input.py +33 -26
  313. flywheel/models/gear_environment.py +3 -8
  314. flywheel/models/gear_exchange.py +18 -17
  315. flywheel/models/gear_file_input.py +13 -14
  316. flywheel/models/gear_id_output.py +8 -11
  317. flywheel/models/gear_info.py +23 -20
  318. flywheel/models/gear_input_item.py +18 -17
  319. flywheel/models/gear_inputs.py +3 -8
  320. flywheel/models/gear_key_input.py +13 -14
  321. flywheel/models/gear_manifest.py +93 -62
  322. flywheel/models/gear_mixin.py +26 -6
  323. flywheel/models/gear_node.py +43 -32
  324. flywheel/models/gear_output_configuration.py +8 -11
  325. flywheel/models/gear_permissions.py +13 -14
  326. flywheel/models/gear_permissions_input.py +8 -11
  327. flywheel/models/gear_permissions_type.py +0 -7
  328. flywheel/models/gear_return_ticket.py +0 -7
  329. flywheel/models/gear_rule.py +133 -69
  330. flywheel/models/gear_rule_condition.py +18 -17
  331. flywheel/models/gear_rule_condition_type.py +0 -7
  332. flywheel/models/gear_rule_input.py +108 -54
  333. flywheel/models/gear_rule_modify_input.py +103 -51
  334. flywheel/models/gear_rule_output.py +133 -69
  335. flywheel/models/gear_save_submission.py +18 -17
  336. flywheel/models/gear_series.py +33 -26
  337. flywheel/models/gear_series_update.py +8 -11
  338. flywheel/models/gear_suggestion_output.py +33 -26
  339. flywheel/models/gear_ticket.py +23 -20
  340. flywheel/models/gear_ticket_output.py +8 -11
  341. flywheel/models/graph_filter.py +38 -29
  342. flywheel/models/group.py +0 -7
  343. flywheel/models/group_by.py +8 -11
  344. flywheel/models/group_by_column.py +0 -7
  345. flywheel/models/group_container_output.py +0 -7
  346. flywheel/models/group_input.py +23 -20
  347. flywheel/models/group_metadata_input.py +0 -7
  348. flywheel/models/group_node.py +0 -7
  349. flywheel/models/group_output.py +63 -44
  350. flywheel/models/group_report.py +18 -17
  351. flywheel/models/group_role.py +8 -11
  352. flywheel/models/group_settings_output.py +23 -20
  353. flywheel/models/group_update.py +23 -20
  354. flywheel/models/header_feature.py +0 -7
  355. flywheel/models/hierarchy_export_templates.py +28 -23
  356. flywheel/models/http_validation_error.py +8 -11
  357. flywheel/models/info.py +18 -17
  358. flywheel/models/info_add_remove.py +0 -7
  359. flywheel/models/info_container_type.py +0 -7
  360. flywheel/models/info_replace.py +0 -7
  361. flywheel/models/info_update_input.py +0 -7
  362. flywheel/models/ingress_provider.py +33 -26
  363. flywheel/models/ingress_providers.py +28 -23
  364. flywheel/models/ingress_site_settings.py +29 -52
  365. flywheel/models/ingress_update_provider.py +18 -17
  366. flywheel/models/inline_response200.py +8 -11
  367. flywheel/models/inline_response2001.py +8 -11
  368. flywheel/models/inline_response2002.py +8 -11
  369. flywheel/models/inline_response2003.py +0 -7
  370. flywheel/models/inline_response2005.py +0 -7
  371. flywheel/models/input_filter.py +18 -17
  372. flywheel/models/input_job.py +73 -50
  373. flywheel/models/input_job_profile.py +28 -23
  374. flywheel/models/inserted_id.py +8 -11
  375. flywheel/models/job.py +128 -83
  376. flywheel/models/job_analysis_input.py +28 -23
  377. flywheel/models/job_ask.py +33 -26
  378. flywheel/models/job_ask_response.py +13 -14
  379. flywheel/models/job_ask_response_job.py +158 -101
  380. flywheel/models/job_ask_return.py +0 -7
  381. flywheel/models/job_ask_return_criteria.py +23 -20
  382. flywheel/models/job_ask_state.py +0 -7
  383. flywheel/models/job_ask_state_response.py +8 -11
  384. flywheel/models/job_complete.py +18 -17
  385. flywheel/models/job_completion_input.py +0 -7
  386. flywheel/models/job_completion_ticket.py +0 -7
  387. flywheel/models/job_config.py +3 -8
  388. flywheel/models/job_config_input.py +28 -23
  389. flywheel/models/job_config_inputs.py +0 -7
  390. flywheel/models/job_config_output.py +0 -7
  391. flywheel/models/job_container_detail.py +0 -7
  392. flywheel/models/job_destination.py +13 -14
  393. flywheel/models/job_detail.py +148 -95
  394. flywheel/models/job_detail_container.py +13 -14
  395. flywheel/models/job_detail_file_entry.py +13 -14
  396. flywheel/models/job_detail_group.py +13 -14
  397. flywheel/models/job_detail_parent_info.py +33 -26
  398. flywheel/models/job_executor_info.py +43 -32
  399. flywheel/models/job_file_input.py +23 -20
  400. flywheel/models/job_file_input_list_output.py +23 -20
  401. flywheel/models/job_file_object.py +58 -41
  402. flywheel/models/job_file_object_list_output.py +53 -38
  403. flywheel/models/job_gear_match.py +0 -7
  404. flywheel/models/job_inputs_array_item.py +33 -26
  405. flywheel/models/job_inputs_item.py +23 -20
  406. flywheel/models/job_inputs_object.py +3 -8
  407. flywheel/models/job_list_entry.py +0 -7
  408. flywheel/models/job_list_output.py +158 -101
  409. flywheel/models/job_list_output_config.py +18 -17
  410. flywheel/models/job_log.py +13 -14
  411. flywheel/models/job_log_column.py +0 -7
  412. flywheel/models/job_log_record.py +13 -14
  413. flywheel/models/job_modify.py +13 -14
  414. flywheel/models/job_origin.py +13 -14
  415. flywheel/models/job_output.py +163 -104
  416. flywheel/models/job_output_config.py +23 -20
  417. flywheel/models/job_parents.py +33 -26
  418. flywheel/models/job_priority.py +0 -7
  419. flywheel/models/job_priority_update.py +13 -14
  420. flywheel/models/job_profile.py +53 -38
  421. flywheel/models/job_profile_input.py +0 -7
  422. flywheel/models/job_request.py +18 -17
  423. flywheel/models/job_request_item.py +23 -20
  424. flywheel/models/job_request_item_type.py +0 -7
  425. flywheel/models/job_request_target.py +28 -23
  426. flywheel/models/job_state.py +0 -7
  427. flywheel/models/job_state_counts.py +0 -7
  428. flywheel/models/job_stats_by_state.py +0 -7
  429. flywheel/models/job_ticket_output.py +8 -11
  430. flywheel/models/job_transition_times.py +23 -20
  431. flywheel/models/job_version_info.py +3 -8
  432. flywheel/models/jobs_by_state.py +28 -23
  433. flywheel/models/jobs_list.py +8 -11
  434. flywheel/models/join_origin_device.py +8 -11
  435. flywheel/models/join_origin_job.py +18 -17
  436. flywheel/models/join_origin_user.py +13 -14
  437. flywheel/models/join_origins.py +18 -17
  438. flywheel/models/join_type.py +0 -7
  439. flywheel/models/jupyterhub_workspace.py +8 -11
  440. flywheel/models/jupyterlab_server_modify.py +28 -23
  441. flywheel/models/jupyterlab_server_origin.py +0 -7
  442. flywheel/models/jupyterlab_server_output.py +0 -7
  443. flywheel/models/jupyterlab_server_response.py +53 -38
  444. flywheel/models/jupyterlab_server_update.py +0 -7
  445. flywheel/models/ldap_sync.py +0 -7
  446. flywheel/models/ldap_sync_config.py +8 -11
  447. flywheel/models/ldap_sync_input.py +0 -7
  448. flywheel/models/ldap_sync_status.py +23 -20
  449. flywheel/models/legacy_api_key_output.py +28 -23
  450. flywheel/models/legacy_input.py +23 -20
  451. flywheel/models/legacy_usage_report.py +33 -26
  452. flywheel/models/legacys_usage_project_entry.py +13 -14
  453. flywheel/models/libs_viewer_config_models_viewer_config.py +194 -0
  454. flywheel/models/libs_workflows_models_parent_type.py +0 -7
  455. flywheel/models/libs_workflows_models_task_status.py +0 -7
  456. flywheel/models/local_storage.py +18 -17
  457. flywheel/models/location.py +13 -14
  458. flywheel/models/locked.py +18 -17
  459. flywheel/models/master_subject_code_dob_input.py +28 -23
  460. flywheel/models/master_subject_code_input.py +28 -23
  461. flywheel/models/master_subject_code_output.py +8 -11
  462. flywheel/models/matched_acquisition_output.py +73 -50
  463. flywheel/models/measurement_config.py +222 -0
  464. flywheel/models/measurement_item_config.py +217 -0
  465. flywheel/models/mfa_channel.py +0 -7
  466. flywheel/models/mfa_settings.py +8 -11
  467. flywheel/models/ml_set_filter.py +13 -14
  468. flywheel/models/ml_type.py +0 -7
  469. flywheel/models/modality.py +23 -20
  470. flywheel/models/modality_input.py +23 -20
  471. flywheel/models/modality_modify.py +18 -17
  472. flywheel/models/modality_output.py +28 -23
  473. flywheel/models/modified_result.py +13 -14
  474. flywheel/models/modify_user_input.py +63 -44
  475. flywheel/models/move_conflict.py +33 -26
  476. flywheel/models/note.py +48 -35
  477. flywheel/models/note_input.py +8 -11
  478. flywheel/models/optional_input_policy.py +0 -7
  479. flywheel/models/order.py +0 -7
  480. flywheel/models/organ_system.py +0 -7
  481. flywheel/models/origin.py +13 -14
  482. flywheel/models/origin_type.py +0 -7
  483. flywheel/models/orphaned_count.py +8 -11
  484. flywheel/models/output_user_page.py +18 -17
  485. flywheel/models/packfile_cleanup_output.py +8 -11
  486. flywheel/models/packfile_removed_output.py +13 -14
  487. flywheel/models/page.py +18 -17
  488. flywheel/models/page_generic_file_output.py +18 -17
  489. flywheel/models/page_generic_filter.py +18 -17
  490. flywheel/models/page_generic_form_response_output.py +18 -17
  491. flywheel/models/page_generic_protocol.py +23 -20
  492. flywheel/models/page_generic_reader_task_output.py +23 -20
  493. flywheel/models/page_generic_staffing_pool.py +23 -20
  494. flywheel/models/parsed_query_response.py +13 -14
  495. flywheel/models/permission_access_permission.py +0 -7
  496. flywheel/models/premade_jobs_batch_job_output.py +33 -26
  497. flywheel/models/premade_jobs_batch_job_output_inflated_jobs.py +33 -26
  498. flywheel/models/premade_jobs_batch_proposal.py +38 -29
  499. flywheel/models/premade_jobs_batch_proposal_detail.py +8 -11
  500. flywheel/models/premade_jobs_batch_proposal_input.py +8 -11
  501. flywheel/models/project.py +0 -7
  502. flywheel/models/project_acquisition_upsert_input.py +0 -7
  503. flywheel/models/project_acquisition_upsert_output.py +0 -7
  504. flywheel/models/project_aet.py +38 -29
  505. flywheel/models/project_aet_input.py +23 -20
  506. flywheel/models/project_catalog_list_output.py +0 -7
  507. flywheel/models/project_contact.py +13 -14
  508. flywheel/models/project_container_output.py +1 -7
  509. flywheel/models/project_copy_input.py +23 -20
  510. flywheel/models/project_copy_output.py +18 -17
  511. flywheel/models/project_counters.py +76 -36
  512. flywheel/models/project_delete_status_output.py +192 -0
  513. flywheel/models/project_group_info.py +13 -14
  514. flywheel/models/project_hierarchy_input.py +28 -23
  515. flywheel/models/project_hierarchy_output.py +18 -17
  516. flywheel/models/project_hierarchy_upsert_input.py +0 -7
  517. flywheel/models/project_hierarchy_upsert_output.py +0 -7
  518. flywheel/models/project_input.py +48 -35
  519. flywheel/models/project_institution.py +13 -14
  520. flywheel/models/project_list_output.py +207 -96
  521. flywheel/models/project_locking_reason.py +0 -7
  522. flywheel/models/project_modify.py +116 -42
  523. flywheel/models/project_node.py +1 -7
  524. flywheel/models/project_output.py +208 -96
  525. flywheel/models/project_parents.py +8 -11
  526. flywheel/models/project_report.py +63 -44
  527. flywheel/models/project_report_list.py +8 -11
  528. flywheel/models/project_session_upsert_input.py +0 -7
  529. flywheel/models/project_session_upsert_output.py +0 -7
  530. flywheel/models/project_settings_input.py +38 -29
  531. flywheel/models/project_settings_output.py +38 -29
  532. flywheel/models/project_settings_sharing.py +38 -29
  533. flywheel/models/project_settings_sharing_input.py +38 -29
  534. flywheel/models/project_settings_workspaces.py +8 -11
  535. flywheel/models/project_settings_workspaces_input.py +8 -11
  536. flywheel/models/project_share_level.py +0 -7
  537. flywheel/models/project_sharing_settings_project_contact.py +0 -7
  538. flywheel/models/project_sharing_settings_project_counters.py +0 -7
  539. flywheel/models/project_sharing_settings_project_institution.py +0 -7
  540. flywheel/models/project_sharing_settings_project_settings_input.py +0 -7
  541. flywheel/models/project_sharing_settings_project_settings_output.py +0 -7
  542. flywheel/models/project_sharing_settings_project_settings_sharing.py +0 -7
  543. flywheel/models/project_sharing_settings_project_settings_sharing_input.py +0 -7
  544. flywheel/models/project_sharing_settings_project_stats.py +0 -7
  545. flywheel/models/project_stats.py +28 -23
  546. flywheel/models/project_subject_upsert_input.py +0 -7
  547. flywheel/models/project_subject_upsert_output.py +0 -7
  548. flywheel/models/project_template.py +13 -14
  549. flywheel/models/project_template_input.py +13 -14
  550. flywheel/models/project_template_list_input.py +8 -11
  551. flywheel/models/project_template_requirement.py +0 -7
  552. flywheel/models/project_template_session_template.py +0 -7
  553. flywheel/models/project_upsert_origin.py +0 -7
  554. flywheel/models/protocol.py +78 -53
  555. flywheel/models/protocol_e_signature_config.py +13 -14
  556. flywheel/models/protocol_input.py +43 -32
  557. flywheel/models/protocol_modify.py +28 -23
  558. flywheel/models/protocol_status.py +0 -7
  559. flywheel/models/provider.py +63 -44
  560. flywheel/models/provider_access_type.py +0 -7
  561. flywheel/models/provider_class.py +0 -7
  562. flywheel/models/provider_deletion_status.py +13 -14
  563. flywheel/models/provider_input.py +0 -7
  564. flywheel/models/provider_links.py +28 -23
  565. flywheel/models/provider_type.py +0 -7
  566. flywheel/models/providers.py +28 -23
  567. flywheel/models/reader_batch_create.py +63 -44
  568. flywheel/models/reader_task.py +113 -74
  569. flywheel/models/reader_task_config.py +49 -18
  570. flywheel/models/reader_task_create.py +78 -53
  571. flywheel/models/reader_task_modify.py +33 -26
  572. flywheel/models/reader_task_output.py +118 -77
  573. flywheel/models/reader_task_parent_details.py +38 -29
  574. flywheel/models/report_access_log_context.py +33 -26
  575. flywheel/models/report_access_log_context_entry.py +13 -14
  576. flywheel/models/report_access_log_context_file_entry.py +8 -11
  577. flywheel/models/report_access_log_entry.py +88 -59
  578. flywheel/models/report_access_log_origin.py +13 -14
  579. flywheel/models/report_availability_list.py +8 -11
  580. flywheel/models/report_daily_usage_entry.py +68 -47
  581. flywheel/models/report_demographics_grid.py +0 -7
  582. flywheel/models/report_ethnicity_grid.py +23 -20
  583. flywheel/models/report_gender_count.py +18 -17
  584. flywheel/models/report_group_report.py +18 -17
  585. flywheel/models/report_legacy_usage_entry.py +0 -7
  586. flywheel/models/report_legacy_usage_project_entry.py +0 -7
  587. flywheel/models/report_project.py +0 -7
  588. flywheel/models/report_site.py +13 -14
  589. flywheel/models/report_time_period.py +13 -14
  590. flywheel/models/report_usage.py +88 -59
  591. flywheel/models/report_usage_entry.py +0 -7
  592. flywheel/models/resolve_input.py +8 -11
  593. flywheel/models/resolve_output.py +13 -14
  594. flywheel/models/resolver_acquisition_node.py +0 -7
  595. flywheel/models/resolver_analysis_node.py +0 -7
  596. flywheel/models/resolver_file_node.py +0 -7
  597. flywheel/models/resolver_gear_node.py +0 -7
  598. flywheel/models/resolver_group_node.py +0 -7
  599. flywheel/models/resolver_input.py +0 -7
  600. flywheel/models/resolver_node.py +8 -11
  601. flywheel/models/resolver_output.py +0 -7
  602. flywheel/models/resolver_project_node.py +0 -7
  603. flywheel/models/resolver_session_node.py +0 -7
  604. flywheel/models/resolver_subject_node.py +0 -7
  605. flywheel/models/role_input.py +13 -14
  606. flywheel/models/role_output.py +28 -23
  607. flywheel/models/role_permission.py +13 -14
  608. flywheel/models/role_permission_output.py +13 -14
  609. flywheel/models/role_permission_update.py +8 -11
  610. flywheel/models/role_type.py +0 -7
  611. flywheel/models/role_update.py +13 -14
  612. flywheel/models/roles_backwards_compatible_role_assignment.py +0 -7
  613. flywheel/models/roles_group_role_pool_input.py +0 -7
  614. flywheel/models/roles_role.py +0 -7
  615. flywheel/models/roles_role_assignment.py +13 -14
  616. flywheel/models/roles_role_input.py +0 -7
  617. flywheel/models/rule.py +63 -44
  618. flywheel/models/rule_any.py +18 -17
  619. flywheel/models/s3_addressing_style.py +0 -7
  620. flywheel/models/s3_compat_storage.py +48 -35
  621. flywheel/models/save_search.py +33 -26
  622. flywheel/models/save_search_input.py +18 -17
  623. flywheel/models/save_search_output.py +33 -26
  624. flywheel/models/save_search_page.py +18 -17
  625. flywheel/models/save_search_parent.py +13 -14
  626. flywheel/models/save_search_update.py +13 -14
  627. flywheel/models/search_acquisition_response.py +23 -20
  628. flywheel/models/search_analysis_response.py +23 -20
  629. flywheel/models/search_collection_response.py +23 -20
  630. flywheel/models/search_file_response.py +33 -26
  631. flywheel/models/search_group_response.py +13 -14
  632. flywheel/models/search_parent_acquisition.py +0 -7
  633. flywheel/models/search_parent_analysis.py +0 -7
  634. flywheel/models/search_parent_collection.py +0 -7
  635. flywheel/models/search_parent_project.py +1 -7
  636. flywheel/models/search_parent_response.py +13 -14
  637. flywheel/models/search_parent_session.py +0 -7
  638. flywheel/models/search_parent_subject.py +0 -7
  639. flywheel/models/search_parse_error.py +23 -20
  640. flywheel/models/search_parse_search_query_result.py +0 -7
  641. flywheel/models/search_project_response.py +13 -14
  642. flywheel/models/search_query.py +38 -29
  643. flywheel/models/search_query_suggestions.py +0 -7
  644. flywheel/models/search_response.py +58 -41
  645. flywheel/models/search_return_type.py +0 -7
  646. flywheel/models/search_save_search.py +0 -7
  647. flywheel/models/search_save_search_input.py +0 -7
  648. flywheel/models/search_save_search_parent.py +0 -7
  649. flywheel/models/search_save_search_update.py +0 -7
  650. flywheel/models/search_session_response.py +23 -20
  651. flywheel/models/search_status.py +8 -11
  652. flywheel/models/search_structured_search_query.py +0 -7
  653. flywheel/models/search_subject_response.py +18 -17
  654. flywheel/models/search_suggestion.py +0 -7
  655. flywheel/models/select_item.py +13 -14
  656. flywheel/models/server_state.py +33 -26
  657. flywheel/models/service_aet.py +33 -26
  658. flywheel/models/service_aet_input.py +28 -23
  659. flywheel/models/session.py +0 -7
  660. flywheel/models/session_container_output.py +0 -7
  661. flywheel/models/session_copy_input.py +23 -20
  662. flywheel/models/session_embedded_subject.py +33 -26
  663. flywheel/models/session_input.py +58 -41
  664. flywheel/models/session_list_output.py +143 -92
  665. flywheel/models/session_metadata_input.py +0 -7
  666. flywheel/models/session_modify.py +63 -44
  667. flywheel/models/session_node.py +0 -7
  668. flywheel/models/session_output.py +143 -92
  669. flywheel/models/session_parents.py +18 -17
  670. flywheel/models/session_template_options.py +18 -17
  671. flywheel/models/session_template_recalc_output.py +8 -11
  672. flywheel/models/session_upsert_input.py +63 -44
  673. flywheel/models/session_upsert_output.py +23 -20
  674. flywheel/models/sharing_filter_options.py +43 -32
  675. flywheel/models/signed_fs_upload_output.py +13 -14
  676. flywheel/models/signed_url_cleanup_input.py +13 -14
  677. flywheel/models/signed_url_upload_input.py +13 -14
  678. flywheel/models/signed_url_upload_output.py +43 -32
  679. flywheel/models/site.py +93 -62
  680. flywheel/models/site_report.py +13 -14
  681. flywheel/models/site_settings.py +48 -35
  682. flywheel/models/sort.py +13 -14
  683. flywheel/models/stable_api_key_input.py +0 -7
  684. flywheel/models/staffing_pool.py +38 -29
  685. flywheel/models/staffing_pool_create.py +18 -17
  686. flywheel/models/staffing_pool_list.py +8 -11
  687. flywheel/models/staffing_pool_modify.py +18 -17
  688. flywheel/models/state.py +0 -7
  689. flywheel/models/static_compute.py +18 -17
  690. flywheel/models/status_transitions.py +23 -20
  691. flywheel/models/status_type.py +0 -7
  692. flywheel/models/status_value.py +0 -7
  693. flywheel/models/storage_strategy.py +0 -7
  694. flywheel/models/storage_strategy_config.py +13 -14
  695. flywheel/models/structured_query.py +8 -11
  696. flywheel/models/structured_query_suggestions.py +13 -14
  697. flywheel/models/structured_query_value_suggestion.py +23 -20
  698. flywheel/models/subject.py +0 -7
  699. flywheel/models/subject_container_output.py +0 -7
  700. flywheel/models/subject_copy_input.py +18 -17
  701. flywheel/models/subject_input.py +93 -62
  702. flywheel/models/subject_modify.py +103 -68
  703. flywheel/models/subject_node.py +0 -7
  704. flywheel/models/subject_output.py +163 -104
  705. flywheel/models/subject_output_for_list.py +163 -104
  706. flywheel/models/subject_parents.py +13 -14
  707. flywheel/models/subject_role_permission.py +13 -14
  708. flywheel/models/subject_state.py +0 -7
  709. flywheel/models/subject_template_options.py +13 -14
  710. flywheel/models/subject_upsert_input.py +83 -56
  711. flywheel/models/subject_upsert_output.py +18 -17
  712. flywheel/models/sync_user_input.py +38 -29
  713. flywheel/models/tag.py +8 -11
  714. flywheel/models/task_assign.py +13 -14
  715. flywheel/models/task_facet.py +0 -7
  716. flywheel/models/task_parent_ref.py +23 -20
  717. flywheel/models/task_parent_ref_input.py +18 -17
  718. flywheel/models/task_priority.py +0 -7
  719. flywheel/models/task_submission.py +13 -14
  720. flywheel/models/therapeutic_area.py +0 -7
  721. flywheel/models/toolbar_config.py +161 -0
  722. flywheel/models/transitions.py +28 -23
  723. flywheel/models/tree_container_request_spec.py +28 -23
  724. flywheel/models/tree_graph.py +3 -8
  725. flywheel/models/tree_graph_connection.py +23 -20
  726. flywheel/models/tree_graph_connections.py +3 -8
  727. flywheel/models/tree_graph_node.py +8 -11
  728. flywheel/models/tree_request.py +0 -7
  729. flywheel/models/tree_response_item.py +3 -8
  730. flywheel/models/type_str.py +0 -7
  731. flywheel/models/uid_check_input_acquisitions.py +23 -20
  732. flywheel/models/uid_check_input_sessions.py +23 -20
  733. flywheel/models/uid_check_output.py +13 -14
  734. flywheel/models/upload_complete_s3_multipart_input.py +0 -7
  735. flywheel/models/upload_complete_s3_multipart_output.py +0 -7
  736. flywheel/models/upload_signed_fs_file_upload_output.py +0 -7
  737. flywheel/models/upload_signed_upload_url_input.py +0 -7
  738. flywheel/models/upload_signed_upload_url_output.py +0 -7
  739. flywheel/models/upload_ticket_output.py +18 -17
  740. flywheel/models/upload_token_output.py +8 -11
  741. flywheel/models/upsert_result.py +0 -7
  742. flywheel/models/user.py +113 -74
  743. flywheel/models/user_api_key.py +18 -17
  744. flywheel/models/user_input.py +63 -44
  745. flywheel/models/user_jobs.py +18 -17
  746. flywheel/models/user_jobs_output.py +0 -7
  747. flywheel/models/user_output.py +0 -7
  748. flywheel/models/user_output_id.py +8 -11
  749. flywheel/models/user_preferences.py +3 -8
  750. flywheel/models/user_wechat.py +3 -8
  751. flywheel/models/validation_error.py +18 -17
  752. flywheel/models/validation_rule.py +13 -14
  753. flywheel/models/version.py +43 -32
  754. flywheel/models/version_output.py +0 -7
  755. flywheel/models/view_id_output.py +8 -11
  756. flywheel/models/view_output.py +58 -41
  757. flywheel/models/viewer_app.py +48 -35
  758. flywheel/models/viewer_app_input.py +48 -35
  759. flywheel/models/viewer_app_type.py +0 -7
  760. flywheel/models/virus_scan.py +8 -11
  761. flywheel/models/virus_scan_state.py +0 -7
  762. flywheel/models/work_in_progress_features.py +3 -8
  763. flywheel/models/zipfile_info.py +13 -14
  764. flywheel/models/zipfile_member_info.py +23 -20
  765. flywheel/partial_reader.py +0 -7
  766. flywheel/rest.py +0 -7
  767. flywheel/view_builder.py +2 -1
  768. {flywheel_sdk-21.3.0.dist-info → flywheel_sdk-21.4.0.dist-info}/METADATA +1 -1
  769. flywheel_sdk-21.4.0.dist-info/RECORD +778 -0
  770. flywheel/models/google_auth_out.py +0 -299
  771. flywheel_sdk-21.3.0.dist-info/RECORD +0 -773
  772. {flywheel_sdk-21.3.0.dist-info → flywheel_sdk-21.4.0.dist-info}/WHEEL +0 -0
  773. {flywheel_sdk-21.3.0.dist-info → flywheel_sdk-21.4.0.dist-info}/licenses/LICENSE.txt +0 -0
@@ -1,13 +1,6 @@
1
1
  # coding: utf-8
2
2
 
3
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
4
  """
12
5
 
13
6
 
@@ -37,9 +30,11 @@ class GroupsApi(object):
37
30
  Create a new group.
38
31
  This method makes a synchronous HTTP request by default.
39
32
 
40
- :param GroupInput body: (required)
41
- :param bool async_: Perform the request asynchronously
42
- :return: InsertedId
33
+ :param body:
34
+ :type body: GroupInput
35
+ :param async_: Perform the request asynchronously
36
+ :type async_: bool, optional
37
+ :rtype: InsertedId
43
38
  """
44
39
  ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
45
40
  kwargs['_return_http_data_only'] = True
@@ -63,9 +58,11 @@ class GroupsApi(object):
63
58
  Create a new group.
64
59
  This method makes a synchronous HTTP request by default.
65
60
 
66
- :param GroupInput body: (required)
67
- :param bool async_: Perform the request asynchronously
68
- :return: InsertedId
61
+ :param body:
62
+ :type body: GroupInput
63
+ :param async_: Perform the request asynchronously
64
+ :type async_: bool, optional
65
+ :rtype: InsertedId
69
66
  """
70
67
 
71
68
  all_params = ['body',] # noqa: E501
@@ -145,10 +142,13 @@ class GroupsApi(object):
145
142
  Adds permission to the group Args: group_id: the id of the group permission: The access permission auth_session: The auth session of the user Returns AccessPermissionOutput: The added permission
146
143
  This method makes a synchronous HTTP request by default.
147
144
 
148
- :param str group_id: (required)
149
- :param AccessPermission body: (required)
150
- :param bool async_: Perform the request asynchronously
151
- :return: AccessPermissionOutput
145
+ :param group_id:
146
+ :type group_id: str
147
+ :param body:
148
+ :type body: AccessPermission
149
+ :param async_: Perform the request asynchronously
150
+ :type async_: bool, optional
151
+ :rtype: AccessPermissionOutput
152
152
  """
153
153
  ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
154
154
  kwargs['_return_http_data_only'] = True
@@ -172,10 +172,13 @@ class GroupsApi(object):
172
172
  Adds permission to the group Args: group_id: the id of the group permission: The access permission auth_session: The auth session of the user Returns AccessPermissionOutput: The added permission
173
173
  This method makes a synchronous HTTP request by default.
174
174
 
175
- :param str group_id: (required)
176
- :param AccessPermission body: (required)
177
- :param bool async_: Perform the request asynchronously
178
- :return: AccessPermissionOutput
175
+ :param group_id:
176
+ :type group_id: str
177
+ :param body:
178
+ :type body: AccessPermission
179
+ :param async_: Perform the request asynchronously
180
+ :type async_: bool, optional
181
+ :rtype: AccessPermissionOutput
179
182
  """
180
183
 
181
184
  all_params = ['group_id','body',] # noqa: E501
@@ -261,12 +264,17 @@ class GroupsApi(object):
261
264
  Add a permission template
262
265
  This method makes a synchronous HTTP request by default.
263
266
 
264
- :param str group_id: (required)
265
- :param RolePermission body: (required)
266
- :param bool propagate:
267
- :param list[union[HeaderFeature,str]] x_accept_feature:
268
- :param bool async_: Perform the request asynchronously
269
- :return: RolePermissionOutput
267
+ :param group_id:
268
+ :type group_id: str
269
+ :param body:
270
+ :type body: RolePermission
271
+ :param propagate:, defaults to false
272
+ :type propagate: bool, optional
273
+ :param x_accept_feature:, defaults to []
274
+ :type x_accept_feature: list[union[HeaderFeature,str]], optional
275
+ :param async_: Perform the request asynchronously
276
+ :type async_: bool, optional
277
+ :rtype: RolePermissionOutput
270
278
  """
271
279
  ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
272
280
  kwargs['_return_http_data_only'] = True
@@ -290,12 +298,17 @@ class GroupsApi(object):
290
298
  Add a permission template
291
299
  This method makes a synchronous HTTP request by default.
292
300
 
293
- :param str group_id: (required)
294
- :param RolePermission body: (required)
295
- :param bool propagate:
296
- :param list[union[HeaderFeature,str]] x_accept_feature:
297
- :param bool async_: Perform the request asynchronously
298
- :return: RolePermissionOutput
301
+ :param group_id:
302
+ :type group_id: str
303
+ :param body:
304
+ :type body: RolePermission
305
+ :param propagate:, defaults to false
306
+ :type propagate: bool, optional
307
+ :param x_accept_feature:, defaults to []
308
+ :type x_accept_feature: list[union[HeaderFeature,str]], optional
309
+ :param async_: Perform the request asynchronously
310
+ :type async_: bool, optional
311
+ :rtype: RolePermissionOutput
299
312
  """
300
313
 
301
314
  all_params = ['group_id','body','propagate','x_accept_feature',] # noqa: E501
@@ -386,10 +399,13 @@ class GroupsApi(object):
386
399
  Propagates changes to projects, sessions and acquisitions
387
400
  This method makes a synchronous HTTP request by default.
388
401
 
389
- :param str cid: (required)
390
- :param Tag body: (required)
391
- :param bool async_: Perform the request asynchronously
392
- :return: ModifiedResult
402
+ :param cid:
403
+ :type cid: str
404
+ :param body:
405
+ :type body: Tag
406
+ :param async_: Perform the request asynchronously
407
+ :type async_: bool, optional
408
+ :rtype: ModifiedResult
393
409
  """
394
410
  ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
395
411
  kwargs['_return_http_data_only'] = True
@@ -413,10 +429,13 @@ class GroupsApi(object):
413
429
  Propagates changes to projects, sessions and acquisitions
414
430
  This method makes a synchronous HTTP request by default.
415
431
 
416
- :param str cid: (required)
417
- :param Tag body: (required)
418
- :param bool async_: Perform the request asynchronously
419
- :return: ModifiedResult
432
+ :param cid:
433
+ :type cid: str
434
+ :param body:
435
+ :type body: Tag
436
+ :param async_: Perform the request asynchronously
437
+ :type async_: bool, optional
438
+ :rtype: ModifiedResult
420
439
  """
421
440
 
422
441
  all_params = ['cid','body',] # noqa: E501
@@ -502,10 +521,13 @@ class GroupsApi(object):
502
521
  Add multiple tags to a(n) group
503
522
  This method makes a synchronous HTTP request by default.
504
523
 
505
- :param str cid: (required)
506
- :param list[str] body: (required)
507
- :param bool async_: Perform the request asynchronously
508
- :return: None
524
+ :param cid:
525
+ :type cid: str
526
+ :param body:
527
+ :type body: list[str]
528
+ :param async_: Perform the request asynchronously
529
+ :type async_: bool, optional
530
+ :rtype: None
509
531
  """
510
532
  ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
511
533
  kwargs['_return_http_data_only'] = True
@@ -529,10 +551,13 @@ class GroupsApi(object):
529
551
  Add multiple tags to a(n) group
530
552
  This method makes a synchronous HTTP request by default.
531
553
 
532
- :param str cid: (required)
533
- :param list[str] body: (required)
534
- :param bool async_: Perform the request asynchronously
535
- :return: None
554
+ :param cid:
555
+ :type cid: str
556
+ :param body:
557
+ :type body: list[str]
558
+ :param async_: Perform the request asynchronously
559
+ :type async_: bool, optional
560
+ :rtype: None
536
561
  """
537
562
 
538
563
  all_params = ['cid','body',] # noqa: E501
@@ -611,10 +636,13 @@ class GroupsApi(object):
611
636
  Add a group role.
612
637
  This method makes a synchronous HTTP request by default.
613
638
 
614
- :param str group_id: (required)
615
- :param GroupRole body: (required)
616
- :param bool async_: Perform the request asynchronously
617
- :return: RoleOutput
639
+ :param group_id:
640
+ :type group_id: str
641
+ :param body:
642
+ :type body: GroupRole
643
+ :param async_: Perform the request asynchronously
644
+ :type async_: bool, optional
645
+ :rtype: RoleOutput
618
646
  """
619
647
  ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
620
648
  kwargs['_return_http_data_only'] = True
@@ -638,10 +666,13 @@ class GroupsApi(object):
638
666
  Add a group role.
639
667
  This method makes a synchronous HTTP request by default.
640
668
 
641
- :param str group_id: (required)
642
- :param GroupRole body: (required)
643
- :param bool async_: Perform the request asynchronously
644
- :return: RoleOutput
669
+ :param group_id:
670
+ :type group_id: str
671
+ :param body:
672
+ :type body: GroupRole
673
+ :param async_: Perform the request asynchronously
674
+ :type async_: bool, optional
675
+ :rtype: RoleOutput
645
676
  """
646
677
 
647
678
  all_params = ['group_id','body',] # noqa: E501
@@ -727,9 +758,11 @@ class GroupsApi(object):
727
758
  Delete a group.
728
759
  This method makes a synchronous HTTP request by default.
729
760
 
730
- :param str group_id: (required)
731
- :param bool async_: Perform the request asynchronously
732
- :return: DeletedResult
761
+ :param group_id:
762
+ :type group_id: str
763
+ :param async_: Perform the request asynchronously
764
+ :type async_: bool, optional
765
+ :rtype: DeletedResult
733
766
  """
734
767
  ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
735
768
  kwargs['_return_http_data_only'] = True
@@ -753,9 +786,11 @@ class GroupsApi(object):
753
786
  Delete a group.
754
787
  This method makes a synchronous HTTP request by default.
755
788
 
756
- :param str group_id: (required)
757
- :param bool async_: Perform the request asynchronously
758
- :return: DeletedResult
789
+ :param group_id:
790
+ :type group_id: str
791
+ :param async_: Perform the request asynchronously
792
+ :type async_: bool, optional
793
+ :rtype: DeletedResult
759
794
  """
760
795
 
761
796
  all_params = ['group_id',] # noqa: E501
@@ -824,10 +859,13 @@ class GroupsApi(object):
824
859
  Delete a tag
825
860
  This method makes a synchronous HTTP request by default.
826
861
 
827
- :param str cid: (required)
828
- :param str value: The tag to interact with (required)
829
- :param bool async_: Perform the request asynchronously
830
- :return: DeletedResult
862
+ :param cid:
863
+ :type cid: str
864
+ :param value: The tag to interact with
865
+ :type value: str
866
+ :param async_: Perform the request asynchronously
867
+ :type async_: bool, optional
868
+ :rtype: DeletedResult
831
869
  """
832
870
  ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
833
871
  kwargs['_return_http_data_only'] = True
@@ -851,10 +889,13 @@ class GroupsApi(object):
851
889
  Delete a tag
852
890
  This method makes a synchronous HTTP request by default.
853
891
 
854
- :param str cid: (required)
855
- :param str value: The tag to interact with (required)
856
- :param bool async_: Perform the request asynchronously
857
- :return: DeletedResult
892
+ :param cid:
893
+ :type cid: str
894
+ :param value: The tag to interact with
895
+ :type value: str
896
+ :param async_: Perform the request asynchronously
897
+ :type async_: bool, optional
898
+ :rtype: DeletedResult
858
899
  """
859
900
 
860
901
  all_params = ['cid','value',] # noqa: E501
@@ -929,10 +970,13 @@ class GroupsApi(object):
929
970
  Delete multiple tags from a(n) group
930
971
  This method makes a synchronous HTTP request by default.
931
972
 
932
- :param str cid: (required)
933
- :param list[str] body: (required)
934
- :param bool async_: Perform the request asynchronously
935
- :return: None
973
+ :param cid:
974
+ :type cid: str
975
+ :param body:
976
+ :type body: list[str]
977
+ :param async_: Perform the request asynchronously
978
+ :type async_: bool, optional
979
+ :rtype: None
936
980
  """
937
981
  ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
938
982
  kwargs['_return_http_data_only'] = True
@@ -956,10 +1000,13 @@ class GroupsApi(object):
956
1000
  Delete multiple tags from a(n) group
957
1001
  This method makes a synchronous HTTP request by default.
958
1002
 
959
- :param str cid: (required)
960
- :param list[str] body: (required)
961
- :param bool async_: Perform the request asynchronously
962
- :return: None
1003
+ :param cid:
1004
+ :type cid: str
1005
+ :param body:
1006
+ :type body: list[str]
1007
+ :param async_: Perform the request asynchronously
1008
+ :type async_: bool, optional
1009
+ :rtype: None
963
1010
  """
964
1011
 
965
1012
  all_params = ['cid','body',] # noqa: E501
@@ -1038,10 +1085,13 @@ class GroupsApi(object):
1038
1085
  Deletes a permission from the group Args: group_id: the id of the group user_id: The id of the user auth_session: The auth session of the user
1039
1086
  This method makes a synchronous HTTP request by default.
1040
1087
 
1041
- :param str group_id: (required)
1042
- :param str user_id: (required)
1043
- :param bool async_: Perform the request asynchronously
1044
- :return: ModifiedResult
1088
+ :param group_id:
1089
+ :type group_id: str
1090
+ :param user_id:
1091
+ :type user_id: str
1092
+ :param async_: Perform the request asynchronously
1093
+ :type async_: bool, optional
1094
+ :rtype: ModifiedResult
1045
1095
  """
1046
1096
  ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
1047
1097
  kwargs['_return_http_data_only'] = True
@@ -1065,10 +1115,13 @@ class GroupsApi(object):
1065
1115
  Deletes a permission from the group Args: group_id: the id of the group user_id: The id of the user auth_session: The auth session of the user
1066
1116
  This method makes a synchronous HTTP request by default.
1067
1117
 
1068
- :param str group_id: (required)
1069
- :param str user_id: (required)
1070
- :param bool async_: Perform the request asynchronously
1071
- :return: ModifiedResult
1118
+ :param group_id:
1119
+ :type group_id: str
1120
+ :param user_id:
1121
+ :type user_id: str
1122
+ :param async_: Perform the request asynchronously
1123
+ :type async_: bool, optional
1124
+ :rtype: ModifiedResult
1072
1125
  """
1073
1126
 
1074
1127
  all_params = ['group_id','user_id',] # noqa: E501
@@ -1143,12 +1196,17 @@ class GroupsApi(object):
1143
1196
  Delete a permission
1144
1197
  This method makes a synchronous HTTP request by default.
1145
1198
 
1146
- :param str group_id: (required)
1147
- :param str user_id: (required)
1148
- :param bool propagate:
1149
- :param list[union[HeaderFeature,str]] x_accept_feature:
1150
- :param bool async_: Perform the request asynchronously
1151
- :return: ModifiedResult
1199
+ :param group_id:
1200
+ :type group_id: str
1201
+ :param user_id:
1202
+ :type user_id: str
1203
+ :param propagate:, defaults to false
1204
+ :type propagate: bool, optional
1205
+ :param x_accept_feature:, defaults to []
1206
+ :type x_accept_feature: list[union[HeaderFeature,str]], optional
1207
+ :param async_: Perform the request asynchronously
1208
+ :type async_: bool, optional
1209
+ :rtype: ModifiedResult
1152
1210
  """
1153
1211
  ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
1154
1212
  kwargs['_return_http_data_only'] = True
@@ -1172,12 +1230,17 @@ class GroupsApi(object):
1172
1230
  Delete a permission
1173
1231
  This method makes a synchronous HTTP request by default.
1174
1232
 
1175
- :param str group_id: (required)
1176
- :param str user_id: (required)
1177
- :param bool propagate:
1178
- :param list[union[HeaderFeature,str]] x_accept_feature:
1179
- :param bool async_: Perform the request asynchronously
1180
- :return: ModifiedResult
1233
+ :param group_id:
1234
+ :type group_id: str
1235
+ :param user_id:
1236
+ :type user_id: str
1237
+ :param propagate:, defaults to false
1238
+ :type propagate: bool, optional
1239
+ :param x_accept_feature:, defaults to []
1240
+ :type x_accept_feature: list[union[HeaderFeature,str]], optional
1241
+ :param async_: Perform the request asynchronously
1242
+ :type async_: bool, optional
1243
+ :rtype: ModifiedResult
1181
1244
  """
1182
1245
 
1183
1246
  all_params = ['group_id','user_id','propagate','x_accept_feature',] # noqa: E501
@@ -1257,10 +1320,13 @@ class GroupsApi(object):
1257
1320
  Delete multiple groups by ID list
1258
1321
  This method makes a synchronous HTTP request by default.
1259
1322
 
1260
- :param list[str] body: List of IDs to delete (required)
1261
- :param ContainerDeleteReason delete_reason:
1262
- :param bool async_: Perform the request asynchronously
1263
- :return: DeletedResult
1323
+ :param body: List of IDs to delete
1324
+ :type body: list[str]
1325
+ :param delete_reason:
1326
+ :type delete_reason: ContainerDeleteReason, optional
1327
+ :param async_: Perform the request asynchronously
1328
+ :type async_: bool, optional
1329
+ :rtype: DeletedResult
1264
1330
  """
1265
1331
  ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
1266
1332
  kwargs['_return_http_data_only'] = True
@@ -1284,10 +1350,13 @@ class GroupsApi(object):
1284
1350
  Delete multiple groups by ID list
1285
1351
  This method makes a synchronous HTTP request by default.
1286
1352
 
1287
- :param list[str] body: List of IDs to delete (required)
1288
- :param ContainerDeleteReason delete_reason:
1289
- :param bool async_: Perform the request asynchronously
1290
- :return: DeletedResult
1353
+ :param body: List of IDs to delete
1354
+ :type body: list[str]
1355
+ :param delete_reason:
1356
+ :type delete_reason: ContainerDeleteReason, optional
1357
+ :param async_: Perform the request asynchronously
1358
+ :type async_: bool, optional
1359
+ :rtype: DeletedResult
1291
1360
  """
1292
1361
 
1293
1362
  all_params = ['body','delete_reason',] # noqa: E501
@@ -1362,9 +1431,11 @@ class GroupsApi(object):
1362
1431
  Gets all group roles
1363
1432
  This method makes a synchronous HTTP request by default.
1364
1433
 
1365
- :param str group_id: (required)
1366
- :param bool async_: Perform the request asynchronously
1367
- :return: list[RoleOutput]
1434
+ :param group_id:
1435
+ :type group_id: str
1436
+ :param async_: Perform the request asynchronously
1437
+ :type async_: bool, optional
1438
+ :rtype: list[RoleOutput]
1368
1439
  """
1369
1440
  ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
1370
1441
  kwargs['_return_http_data_only'] = True
@@ -1388,9 +1459,11 @@ class GroupsApi(object):
1388
1459
  Gets all group roles
1389
1460
  This method makes a synchronous HTTP request by default.
1390
1461
 
1391
- :param str group_id: (required)
1392
- :param bool async_: Perform the request asynchronously
1393
- :return: list[RoleOutput]
1462
+ :param group_id:
1463
+ :type group_id: str
1464
+ :param async_: Perform the request asynchronously
1465
+ :type async_: bool, optional
1466
+ :rtype: list[RoleOutput]
1394
1467
  """
1395
1468
 
1396
1469
  all_params = ['group_id',] # noqa: E501
@@ -1459,16 +1532,25 @@ class GroupsApi(object):
1459
1532
  Find all groups.
1460
1533
  This method makes a synchronous HTTP request by default.
1461
1534
 
1462
- :param bool exhaustive: Set to return a complete list regardless of permissions
1463
- :param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
1464
- :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
1465
- :param int limit: The maximum number of entries to return.
1466
- :param int skip: The number of entries to skip.
1467
- :param int page: The page number (i.e. skip limit*page entries)
1468
- :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
1469
- :param list[union[HeaderFeature,str]] x_accept_feature:
1470
- :param bool async_: Perform the request asynchronously
1471
- :return: union[Page,list[GroupOutput]]
1535
+ :param exhaustive: Set to return a complete list regardless of permissions, defaults to false
1536
+ :type exhaustive: bool, optional
1537
+ :param filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
1538
+ :type filter: str, optional
1539
+ :param sort: The sort fields and order. (e.g. label:asc,created:desc)
1540
+ :type sort: str, optional
1541
+ :param limit: The maximum number of entries to return.
1542
+ :type limit: int, optional
1543
+ :param skip: The number of entries to skip., defaults to 0
1544
+ :type skip: int, optional
1545
+ :param page: The page number (i.e. skip limit*page entries)
1546
+ :type page: int, optional
1547
+ :param after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
1548
+ :type after_id: str, optional
1549
+ :param x_accept_feature:, defaults to []
1550
+ :type x_accept_feature: list[union[HeaderFeature,str]], optional
1551
+ :param async_: Perform the request asynchronously
1552
+ :type async_: bool, optional
1553
+ :rtype: union[Page,list[GroupOutput]]
1472
1554
  """
1473
1555
  ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
1474
1556
  kwargs['_return_http_data_only'] = True
@@ -1492,16 +1574,25 @@ class GroupsApi(object):
1492
1574
  Find all groups.
1493
1575
  This method makes a synchronous HTTP request by default.
1494
1576
 
1495
- :param bool exhaustive: Set to return a complete list regardless of permissions
1496
- :param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
1497
- :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
1498
- :param int limit: The maximum number of entries to return.
1499
- :param int skip: The number of entries to skip.
1500
- :param int page: The page number (i.e. skip limit*page entries)
1501
- :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
1502
- :param list[union[HeaderFeature,str]] x_accept_feature:
1503
- :param bool async_: Perform the request asynchronously
1504
- :return: union[Page,list[GroupOutput]]
1577
+ :param exhaustive: Set to return a complete list regardless of permissions, defaults to false
1578
+ :type exhaustive: bool, optional
1579
+ :param filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
1580
+ :type filter: str, optional
1581
+ :param sort: The sort fields and order. (e.g. label:asc,created:desc)
1582
+ :type sort: str, optional
1583
+ :param limit: The maximum number of entries to return.
1584
+ :type limit: int, optional
1585
+ :param skip: The number of entries to skip., defaults to 0
1586
+ :type skip: int, optional
1587
+ :param page: The page number (i.e. skip limit*page entries)
1588
+ :type page: int, optional
1589
+ :param after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
1590
+ :type after_id: str, optional
1591
+ :param x_accept_feature:, defaults to []
1592
+ :type x_accept_feature: list[union[HeaderFeature,str]], optional
1593
+ :param async_: Perform the request asynchronously
1594
+ :type async_: bool, optional
1595
+ :rtype: union[Page,list[GroupOutput]]
1505
1596
  """
1506
1597
 
1507
1598
  all_params = ['exhaustive','filter','sort','limit','skip','page','after_id','x_accept_feature',] # noqa: E501
@@ -1581,9 +1672,11 @@ class GroupsApi(object):
1581
1672
  Get a group by ID.
1582
1673
  This method makes a synchronous HTTP request by default.
1583
1674
 
1584
- :param str group_id: (required)
1585
- :param bool async_: Perform the request asynchronously
1586
- :return: GroupOutput
1675
+ :param group_id:
1676
+ :type group_id: str
1677
+ :param async_: Perform the request asynchronously
1678
+ :type async_: bool, optional
1679
+ :rtype: GroupOutput
1587
1680
  """
1588
1681
  ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
1589
1682
  kwargs['_return_http_data_only'] = True
@@ -1607,9 +1700,11 @@ class GroupsApi(object):
1607
1700
  Get a group by ID.
1608
1701
  This method makes a synchronous HTTP request by default.
1609
1702
 
1610
- :param str group_id: (required)
1611
- :param bool async_: Perform the request asynchronously
1612
- :return: GroupOutput
1703
+ :param group_id:
1704
+ :type group_id: str
1705
+ :param async_: Perform the request asynchronously
1706
+ :type async_: bool, optional
1707
+ :rtype: GroupOutput
1613
1708
  """
1614
1709
 
1615
1710
  all_params = ['group_id',] # noqa: E501
@@ -1678,18 +1773,29 @@ class GroupsApi(object):
1678
1773
  Get projects for a group
1679
1774
  This method makes a synchronous HTTP request by default.
1680
1775
 
1681
- :param str group_id: (required)
1682
- :param bool exhaustive:
1683
- :param bool include_all_info: Include all info in returned objects
1684
- :param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
1685
- :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
1686
- :param int limit: The maximum number of entries to return.
1687
- :param int skip: The number of entries to skip.
1688
- :param int page: The page number (i.e. skip limit*page entries)
1689
- :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
1690
- :param list[str] x_accept_feature:
1691
- :param bool async_: Perform the request asynchronously
1692
- :return: union[Page,list[ProjectListOutput]]
1776
+ :param group_id:
1777
+ :type group_id: str
1778
+ :param exhaustive:, defaults to false
1779
+ :type exhaustive: bool, optional
1780
+ :param include_all_info: Include all info in returned objects, defaults to false
1781
+ :type include_all_info: bool, optional
1782
+ :param filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
1783
+ :type filter: str, optional
1784
+ :param sort: The sort fields and order. (e.g. label:asc,created:desc)
1785
+ :type sort: str, optional
1786
+ :param limit: The maximum number of entries to return.
1787
+ :type limit: int, optional
1788
+ :param skip: The number of entries to skip., defaults to 0
1789
+ :type skip: int, optional
1790
+ :param page: The page number (i.e. skip limit*page entries)
1791
+ :type page: int, optional
1792
+ :param after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
1793
+ :type after_id: str, optional
1794
+ :param x_accept_feature:, defaults to []
1795
+ :type x_accept_feature: list[str], optional
1796
+ :param async_: Perform the request asynchronously
1797
+ :type async_: bool, optional
1798
+ :rtype: union[Page,list[ProjectListOutput]]
1693
1799
  """
1694
1800
  ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
1695
1801
  kwargs['_return_http_data_only'] = True
@@ -1713,18 +1819,29 @@ class GroupsApi(object):
1713
1819
  Get projects for a group
1714
1820
  This method makes a synchronous HTTP request by default.
1715
1821
 
1716
- :param str group_id: (required)
1717
- :param bool exhaustive:
1718
- :param bool include_all_info: Include all info in returned objects
1719
- :param str filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
1720
- :param str sort: The sort fields and order. (e.g. label:asc,created:desc)
1721
- :param int limit: The maximum number of entries to return.
1722
- :param int skip: The number of entries to skip.
1723
- :param int page: The page number (i.e. skip limit*page entries)
1724
- :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
1725
- :param list[str] x_accept_feature:
1726
- :param bool async_: Perform the request asynchronously
1727
- :return: union[Page,list[ProjectListOutput]]
1822
+ :param group_id:
1823
+ :type group_id: str
1824
+ :param exhaustive:, defaults to false
1825
+ :type exhaustive: bool, optional
1826
+ :param include_all_info: Include all info in returned objects, defaults to false
1827
+ :type include_all_info: bool, optional
1828
+ :param filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
1829
+ :type filter: str, optional
1830
+ :param sort: The sort fields and order. (e.g. label:asc,created:desc)
1831
+ :type sort: str, optional
1832
+ :param limit: The maximum number of entries to return.
1833
+ :type limit: int, optional
1834
+ :param skip: The number of entries to skip., defaults to 0
1835
+ :type skip: int, optional
1836
+ :param page: The page number (i.e. skip limit*page entries)
1837
+ :type page: int, optional
1838
+ :param after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
1839
+ :type after_id: str, optional
1840
+ :param x_accept_feature:, defaults to []
1841
+ :type x_accept_feature: list[str], optional
1842
+ :param async_: Perform the request asynchronously
1843
+ :type async_: bool, optional
1844
+ :rtype: union[Page,list[ProjectListOutput]]
1728
1845
  """
1729
1846
 
1730
1847
  all_params = ['group_id','exhaustive','include_all_info','filter','sort','limit','skip','page','after_id','x_accept_feature',] # noqa: E501
@@ -1812,10 +1929,13 @@ class GroupsApi(object):
1812
1929
  Get a group role.
1813
1930
  This method makes a synchronous HTTP request by default.
1814
1931
 
1815
- :param str group_id: (required)
1816
- :param str role_id: (required)
1817
- :param bool async_: Perform the request asynchronously
1818
- :return: RoleOutput
1932
+ :param group_id:
1933
+ :type group_id: str
1934
+ :param role_id:
1935
+ :type role_id: str
1936
+ :param async_: Perform the request asynchronously
1937
+ :type async_: bool, optional
1938
+ :rtype: RoleOutput
1819
1939
  """
1820
1940
  ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
1821
1941
  kwargs['_return_http_data_only'] = True
@@ -1839,10 +1959,13 @@ class GroupsApi(object):
1839
1959
  Get a group role.
1840
1960
  This method makes a synchronous HTTP request by default.
1841
1961
 
1842
- :param str group_id: (required)
1843
- :param str role_id: (required)
1844
- :param bool async_: Perform the request asynchronously
1845
- :return: RoleOutput
1962
+ :param group_id:
1963
+ :type group_id: str
1964
+ :param role_id:
1965
+ :type role_id: str
1966
+ :param async_: Perform the request asynchronously
1967
+ :type async_: bool, optional
1968
+ :rtype: RoleOutput
1846
1969
  """
1847
1970
 
1848
1971
  all_params = ['group_id','role_id',] # noqa: E501
@@ -1917,10 +2040,13 @@ class GroupsApi(object):
1917
2040
  Get the value of a tag, by name
1918
2041
  This method makes a synchronous HTTP request by default.
1919
2042
 
1920
- :param str cid: (required)
1921
- :param str value: The tag to interact with (required)
1922
- :param bool async_: Perform the request asynchronously
1923
- :return: str
2043
+ :param cid:
2044
+ :type cid: str
2045
+ :param value: The tag to interact with
2046
+ :type value: str
2047
+ :param async_: Perform the request asynchronously
2048
+ :type async_: bool, optional
2049
+ :rtype: str
1924
2050
  """
1925
2051
  ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
1926
2052
  kwargs['_return_http_data_only'] = True
@@ -1944,10 +2070,13 @@ class GroupsApi(object):
1944
2070
  Get the value of a tag, by name
1945
2071
  This method makes a synchronous HTTP request by default.
1946
2072
 
1947
- :param str cid: (required)
1948
- :param str value: The tag to interact with (required)
1949
- :param bool async_: Perform the request asynchronously
1950
- :return: str
2073
+ :param cid:
2074
+ :type cid: str
2075
+ :param value: The tag to interact with
2076
+ :type value: str
2077
+ :param async_: Perform the request asynchronously
2078
+ :type async_: bool, optional
2079
+ :rtype: str
1951
2080
  """
1952
2081
 
1953
2082
  all_params = ['cid','value',] # noqa: E501
@@ -2022,10 +2151,13 @@ class GroupsApi(object):
2022
2151
  List a user's permissions for this group
2023
2152
  This method makes a synchronous HTTP request by default.
2024
2153
 
2025
- :param str group_id: (required)
2026
- :param str user_id: (required)
2027
- :param bool async_: Perform the request asynchronously
2028
- :return: AccessPermissionOutput
2154
+ :param group_id:
2155
+ :type group_id: str
2156
+ :param user_id:
2157
+ :type user_id: str
2158
+ :param async_: Perform the request asynchronously
2159
+ :type async_: bool, optional
2160
+ :rtype: AccessPermissionOutput
2029
2161
  """
2030
2162
  ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
2031
2163
  kwargs['_return_http_data_only'] = True
@@ -2049,10 +2181,13 @@ class GroupsApi(object):
2049
2181
  List a user's permissions for this group
2050
2182
  This method makes a synchronous HTTP request by default.
2051
2183
 
2052
- :param str group_id: (required)
2053
- :param str user_id: (required)
2054
- :param bool async_: Perform the request asynchronously
2055
- :return: AccessPermissionOutput
2184
+ :param group_id:
2185
+ :type group_id: str
2186
+ :param user_id:
2187
+ :type user_id: str
2188
+ :param async_: Perform the request asynchronously
2189
+ :type async_: bool, optional
2190
+ :rtype: AccessPermissionOutput
2056
2191
  """
2057
2192
 
2058
2193
  all_params = ['group_id','user_id',] # noqa: E501
@@ -2127,10 +2262,13 @@ class GroupsApi(object):
2127
2262
  List a user's permissions for this group.
2128
2263
  This method makes a synchronous HTTP request by default.
2129
2264
 
2130
- :param str group_id: (required)
2131
- :param str user_id: (required)
2132
- :param bool async_: Perform the request asynchronously
2133
- :return: RolePermissionOutput
2265
+ :param group_id:
2266
+ :type group_id: str
2267
+ :param user_id:
2268
+ :type user_id: str
2269
+ :param async_: Perform the request asynchronously
2270
+ :type async_: bool, optional
2271
+ :rtype: RolePermissionOutput
2134
2272
  """
2135
2273
  ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
2136
2274
  kwargs['_return_http_data_only'] = True
@@ -2154,10 +2292,13 @@ class GroupsApi(object):
2154
2292
  List a user's permissions for this group.
2155
2293
  This method makes a synchronous HTTP request by default.
2156
2294
 
2157
- :param str group_id: (required)
2158
- :param str user_id: (required)
2159
- :param bool async_: Perform the request asynchronously
2160
- :return: RolePermissionOutput
2295
+ :param group_id:
2296
+ :type group_id: str
2297
+ :param user_id:
2298
+ :type user_id: str
2299
+ :param async_: Perform the request asynchronously
2300
+ :type async_: bool, optional
2301
+ :rtype: RolePermissionOutput
2161
2302
  """
2162
2303
 
2163
2304
  all_params = ['group_id','user_id',] # noqa: E501
@@ -2232,10 +2373,13 @@ class GroupsApi(object):
2232
2373
  Modify a group.
2233
2374
  This method makes a synchronous HTTP request by default.
2234
2375
 
2235
- :param str group_id: (required)
2236
- :param GroupUpdate body: (required)
2237
- :param bool async_: Perform the request asynchronously
2238
- :return: ModifiedResult
2376
+ :param group_id:
2377
+ :type group_id: str
2378
+ :param body:
2379
+ :type body: GroupUpdate
2380
+ :param async_: Perform the request asynchronously
2381
+ :type async_: bool, optional
2382
+ :rtype: ModifiedResult
2239
2383
  """
2240
2384
  ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
2241
2385
  kwargs['_return_http_data_only'] = True
@@ -2259,10 +2403,13 @@ class GroupsApi(object):
2259
2403
  Modify a group.
2260
2404
  This method makes a synchronous HTTP request by default.
2261
2405
 
2262
- :param str group_id: (required)
2263
- :param GroupUpdate body: (required)
2264
- :param bool async_: Perform the request asynchronously
2265
- :return: ModifiedResult
2406
+ :param group_id:
2407
+ :type group_id: str
2408
+ :param body:
2409
+ :type body: GroupUpdate
2410
+ :param async_: Perform the request asynchronously
2411
+ :type async_: bool, optional
2412
+ :rtype: ModifiedResult
2266
2413
  """
2267
2414
 
2268
2415
  all_params = ['group_id','body',] # noqa: E501
@@ -2348,11 +2495,15 @@ class GroupsApi(object):
2348
2495
  Update a user's permission for this group.
2349
2496
  This method makes a synchronous HTTP request by default.
2350
2497
 
2351
- :param str group_id: (required)
2352
- :param str user_id: (required)
2353
- :param AccessPermissionUpdate body: (required)
2354
- :param bool async_: Perform the request asynchronously
2355
- :return: AccessPermissionOutput
2498
+ :param group_id:
2499
+ :type group_id: str
2500
+ :param user_id:
2501
+ :type user_id: str
2502
+ :param body:
2503
+ :type body: AccessPermissionUpdate
2504
+ :param async_: Perform the request asynchronously
2505
+ :type async_: bool, optional
2506
+ :rtype: AccessPermissionOutput
2356
2507
  """
2357
2508
  ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
2358
2509
  kwargs['_return_http_data_only'] = True
@@ -2376,11 +2527,15 @@ class GroupsApi(object):
2376
2527
  Update a user's permission for this group.
2377
2528
  This method makes a synchronous HTTP request by default.
2378
2529
 
2379
- :param str group_id: (required)
2380
- :param str user_id: (required)
2381
- :param AccessPermissionUpdate body: (required)
2382
- :param bool async_: Perform the request asynchronously
2383
- :return: AccessPermissionOutput
2530
+ :param group_id:
2531
+ :type group_id: str
2532
+ :param user_id:
2533
+ :type user_id: str
2534
+ :param body:
2535
+ :type body: AccessPermissionUpdate
2536
+ :param async_: Perform the request asynchronously
2537
+ :type async_: bool, optional
2538
+ :rtype: AccessPermissionOutput
2384
2539
  """
2385
2540
 
2386
2541
  all_params = ['group_id','user_id','body',] # noqa: E501
@@ -2472,13 +2627,19 @@ class GroupsApi(object):
2472
2627
  Update a user's permission for this group.
2473
2628
  This method makes a synchronous HTTP request by default.
2474
2629
 
2475
- :param str group_id: (required)
2476
- :param str user_id: (required)
2477
- :param RolePermissionUpdate body: (required)
2478
- :param bool propagate:
2479
- :param list[union[HeaderFeature,str]] x_accept_feature:
2480
- :param bool async_: Perform the request asynchronously
2481
- :return: RolePermissionOutput
2630
+ :param group_id:
2631
+ :type group_id: str
2632
+ :param user_id:
2633
+ :type user_id: str
2634
+ :param body:
2635
+ :type body: RolePermissionUpdate
2636
+ :param propagate:, defaults to false
2637
+ :type propagate: bool, optional
2638
+ :param x_accept_feature:, defaults to []
2639
+ :type x_accept_feature: list[union[HeaderFeature,str]], optional
2640
+ :param async_: Perform the request asynchronously
2641
+ :type async_: bool, optional
2642
+ :rtype: RolePermissionOutput
2482
2643
  """
2483
2644
  ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
2484
2645
  kwargs['_return_http_data_only'] = True
@@ -2502,13 +2663,19 @@ class GroupsApi(object):
2502
2663
  Update a user's permission for this group.
2503
2664
  This method makes a synchronous HTTP request by default.
2504
2665
 
2505
- :param str group_id: (required)
2506
- :param str user_id: (required)
2507
- :param RolePermissionUpdate body: (required)
2508
- :param bool propagate:
2509
- :param list[union[HeaderFeature,str]] x_accept_feature:
2510
- :param bool async_: Perform the request asynchronously
2511
- :return: RolePermissionOutput
2666
+ :param group_id:
2667
+ :type group_id: str
2668
+ :param user_id:
2669
+ :type user_id: str
2670
+ :param body:
2671
+ :type body: RolePermissionUpdate
2672
+ :param propagate:, defaults to false
2673
+ :type propagate: bool, optional
2674
+ :param x_accept_feature:, defaults to []
2675
+ :type x_accept_feature: list[union[HeaderFeature,str]], optional
2676
+ :param async_: Perform the request asynchronously
2677
+ :type async_: bool, optional
2678
+ :rtype: RolePermissionOutput
2512
2679
  """
2513
2680
 
2514
2681
  all_params = ['group_id','user_id','body','propagate','x_accept_feature',] # noqa: E501
@@ -2605,10 +2772,13 @@ class GroupsApi(object):
2605
2772
  Delete a group role.
2606
2773
  This method makes a synchronous HTTP request by default.
2607
2774
 
2608
- :param str group_id: (required)
2609
- :param str role_id: (required)
2610
- :param bool async_: Perform the request asynchronously
2611
- :return: None
2775
+ :param group_id:
2776
+ :type group_id: str
2777
+ :param role_id:
2778
+ :type role_id: str
2779
+ :param async_: Perform the request asynchronously
2780
+ :type async_: bool, optional
2781
+ :rtype: None
2612
2782
  """
2613
2783
  ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
2614
2784
  kwargs['_return_http_data_only'] = True
@@ -2632,10 +2802,13 @@ class GroupsApi(object):
2632
2802
  Delete a group role.
2633
2803
  This method makes a synchronous HTTP request by default.
2634
2804
 
2635
- :param str group_id: (required)
2636
- :param str role_id: (required)
2637
- :param bool async_: Perform the request asynchronously
2638
- :return: None
2805
+ :param group_id:
2806
+ :type group_id: str
2807
+ :param role_id:
2808
+ :type role_id: str
2809
+ :param async_: Perform the request asynchronously
2810
+ :type async_: bool, optional
2811
+ :rtype: None
2639
2812
  """
2640
2813
 
2641
2814
  all_params = ['group_id','role_id',] # noqa: E501
@@ -2710,11 +2883,15 @@ class GroupsApi(object):
2710
2883
  Rename a tag
2711
2884
  This method makes a synchronous HTTP request by default.
2712
2885
 
2713
- :param str cid: (required)
2714
- :param str value: The tag to interact with (required)
2715
- :param Tag body: (required)
2716
- :param bool async_: Perform the request asynchronously
2717
- :return: str
2886
+ :param cid:
2887
+ :type cid: str
2888
+ :param value: The tag to interact with
2889
+ :type value: str
2890
+ :param body:
2891
+ :type body: Tag
2892
+ :param async_: Perform the request asynchronously
2893
+ :type async_: bool, optional
2894
+ :rtype: str
2718
2895
  """
2719
2896
  ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
2720
2897
  kwargs['_return_http_data_only'] = True
@@ -2738,11 +2915,15 @@ class GroupsApi(object):
2738
2915
  Rename a tag
2739
2916
  This method makes a synchronous HTTP request by default.
2740
2917
 
2741
- :param str cid: (required)
2742
- :param str value: The tag to interact with (required)
2743
- :param Tag body: (required)
2744
- :param bool async_: Perform the request asynchronously
2745
- :return: str
2918
+ :param cid:
2919
+ :type cid: str
2920
+ :param value: The tag to interact with
2921
+ :type value: str
2922
+ :param body:
2923
+ :type body: Tag
2924
+ :param async_: Perform the request asynchronously
2925
+ :type async_: bool, optional
2926
+ :rtype: str
2746
2927
  """
2747
2928
 
2748
2929
  all_params = ['cid','value','body',] # noqa: E501