flywheel-sdk 21.2.0rc0__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 (772) hide show
  1. flywheel/__init__.py +784 -0
  2. flywheel/api/__init__.py +46 -0
  3. flywheel/api/acquisitions_api.py +5014 -0
  4. flywheel/api/analyses_api.py +3848 -0
  5. flywheel/api/audit_trail_api.py +568 -0
  6. flywheel/api/auth_api.py +121 -0
  7. flywheel/api/batch_api.py +630 -0
  8. flywheel/api/bulk_api.py +140 -0
  9. flywheel/api/change_log_api.py +254 -0
  10. flywheel/api/collections_api.py +3913 -0
  11. flywheel/api/config_api.py +299 -0
  12. flywheel/api/container_tasks_api.py +137 -0
  13. flywheel/api/container_type_api.py +137 -0
  14. flywheel/api/containers_api.py +4784 -0
  15. flywheel/api/custom_filters_api.py +466 -0
  16. flywheel/api/data_view_executions_api.py +549 -0
  17. flywheel/api/dataexplorer_api.py +1192 -0
  18. flywheel/api/devices_api.py +1071 -0
  19. flywheel/api/dimse_api.py +814 -0
  20. flywheel/api/download_api.py +261 -0
  21. flywheel/api/files_api.py +1868 -0
  22. flywheel/api/form_responses_api.py +703 -0
  23. flywheel/api/gears_api.py +1875 -0
  24. flywheel/api/groups_api.py +2829 -0
  25. flywheel/api/jobs_api.py +2320 -0
  26. flywheel/api/jupyterlab_servers_api.py +245 -0
  27. flywheel/api/modalities_api.py +562 -0
  28. flywheel/api/packfiles_api.py +121 -0
  29. flywheel/api/projects_api.py +7820 -0
  30. flywheel/api/protocols_api.py +757 -0
  31. flywheel/api/reports_api.py +1057 -0
  32. flywheel/api/resolve_api.py +276 -0
  33. flywheel/api/roles_api.py +563 -0
  34. flywheel/api/sessions_api.py +5296 -0
  35. flywheel/api/site_api.py +1552 -0
  36. flywheel/api/staffing_pools_api.py +677 -0
  37. flywheel/api/subjects_api.py +5349 -0
  38. flywheel/api/tasks_api.py +897 -0
  39. flywheel/api/tree_api.py +266 -0
  40. flywheel/api/uids_api.py +140 -0
  41. flywheel/api/upload_api.py +842 -0
  42. flywheel/api/users_api.py +2142 -0
  43. flywheel/api/views_api.py +1089 -0
  44. flywheel/api_client.py +748 -0
  45. flywheel/client.py +291 -0
  46. flywheel/configuration.py +308 -0
  47. flywheel/drone_login.py +65 -0
  48. flywheel/file_spec.py +67 -0
  49. flywheel/finder.py +168 -0
  50. flywheel/flywheel.py +9867 -0
  51. flywheel/gear_context.py +374 -0
  52. flywheel/models/__init__.py +726 -0
  53. flywheel/models/access_level.py +30 -0
  54. flywheel/models/access_permission.py +197 -0
  55. flywheel/models/access_permission_output.py +192 -0
  56. flywheel/models/access_permission_update.py +166 -0
  57. flywheel/models/access_type.py +54 -0
  58. flywheel/models/accumulator.py +33 -0
  59. flywheel/models/acquisition.py +25 -0
  60. flywheel/models/acquisition_container_output.py +34 -0
  61. flywheel/models/acquisition_copy_input.py +223 -0
  62. flywheel/models/acquisition_input.py +297 -0
  63. flywheel/models/acquisition_list_output.py +767 -0
  64. flywheel/models/acquisition_modify_input.py +299 -0
  65. flywheel/models/acquisition_node.py +35 -0
  66. flywheel/models/acquisition_output.py +767 -0
  67. flywheel/models/acquisition_parents.py +241 -0
  68. flywheel/models/acquisition_template_options.py +275 -0
  69. flywheel/models/acquisition_upsert_input.py +383 -0
  70. flywheel/models/acquisition_upsert_output.py +243 -0
  71. flywheel/models/action.py +91 -0
  72. flywheel/models/adhoc_analysis_input.py +247 -0
  73. flywheel/models/analysis.py +25 -0
  74. flywheel/models/analysis_container_output.py +34 -0
  75. flywheel/models/analysis_files_create_ticket_output.py +241 -0
  76. flywheel/models/analysis_input.py +310 -0
  77. flywheel/models/analysis_input_legacy.py +25 -0
  78. flywheel/models/analysis_list_output.py +680 -0
  79. flywheel/models/analysis_list_output_inflated_job.py +650 -0
  80. flywheel/models/analysis_modify_input.py +191 -0
  81. flywheel/models/analysis_node.py +35 -0
  82. flywheel/models/analysis_output.py +683 -0
  83. flywheel/models/analysis_output_inflated_job.py +674 -0
  84. flywheel/models/analysis_parents.py +270 -0
  85. flywheel/models/analysis_update.py +25 -0
  86. flywheel/models/api_key_input_with_optional_label.py +191 -0
  87. flywheel/models/api_key_output.py +297 -0
  88. flywheel/models/as_storage.py +298 -0
  89. flywheel/models/assignee.py +192 -0
  90. flywheel/models/assignee_type.py +29 -0
  91. flywheel/models/audit_trail_report.py +486 -0
  92. flywheel/models/audit_trail_report_status.py +32 -0
  93. flywheel/models/auth0_auth_out.py +323 -0
  94. flywheel/models/auth0_options_out.py +319 -0
  95. flywheel/models/auth_out.py +357 -0
  96. flywheel/models/auth_session_output.py +272 -0
  97. flywheel/models/avatars.py +218 -0
  98. flywheel/models/aws_creds.py +191 -0
  99. flywheel/models/aws_storage.py +354 -0
  100. flywheel/models/azure_creds.py +190 -0
  101. flywheel/models/base_aet.py +245 -0
  102. flywheel/models/base_compute.py +426 -0
  103. flywheel/models/batch.py +360 -0
  104. flywheel/models/batch_cancel_output.py +36 -0
  105. flywheel/models/batch_create_filters.py +220 -0
  106. flywheel/models/batch_job_analysis_input.py +281 -0
  107. flywheel/models/batch_jobs_proposal_input.py +36 -0
  108. flywheel/models/batch_proposal.py +25 -0
  109. flywheel/models/batch_proposal_detail.py +36 -0
  110. flywheel/models/batch_proposal_input.py +25 -0
  111. flywheel/models/body.py +36 -0
  112. flywheel/models/body_regenerate_key_api_devices_device_id_key_post.py +25 -0
  113. flywheel/models/body_region.py +46 -0
  114. flywheel/models/bookmark.py +189 -0
  115. flywheel/models/bulk_move_input.py +272 -0
  116. flywheel/models/bulk_move_sessions.py +25 -0
  117. flywheel/models/callbacks_virus_scan_input.py +36 -0
  118. flywheel/models/cancelled_batch_output.py +163 -0
  119. flywheel/models/catalog_list_output.py +407 -0
  120. flywheel/models/central_out.py +299 -0
  121. flywheel/models/change.py +379 -0
  122. flywheel/models/change_log_container_type.py +38 -0
  123. flywheel/models/change_log_document.py +245 -0
  124. flywheel/models/change_method.py +33 -0
  125. flywheel/models/classic_batch_job_output.py +352 -0
  126. flywheel/models/classic_batch_job_output_inflated_jobs.py +379 -0
  127. flywheel/models/classic_batch_proposal_input.py +388 -0
  128. flywheel/models/classic_batch_proposal_output.py +471 -0
  129. flywheel/models/classification_add_delete.py +36 -0
  130. flywheel/models/classification_replace.py +36 -0
  131. flywheel/models/classification_update_input.py +36 -0
  132. flywheel/models/cohort.py +29 -0
  133. flywheel/models/collection.py +25 -0
  134. flywheel/models/collection_container_output.py +32 -0
  135. flywheel/models/collection_input.py +217 -0
  136. flywheel/models/collection_input_with_contents.py +248 -0
  137. flywheel/models/collection_node.py +192 -0
  138. flywheel/models/collection_node_level.py +31 -0
  139. flywheel/models/collection_operation.py +193 -0
  140. flywheel/models/collection_operation_type.py +29 -0
  141. flywheel/models/collection_output.py +639 -0
  142. flywheel/models/collection_with_stats.py +637 -0
  143. flywheel/models/column.py +286 -0
  144. flywheel/models/column_type.py +32 -0
  145. flywheel/models/common_classification.py +135 -0
  146. flywheel/models/common_deleted_count.py +25 -0
  147. flywheel/models/common_editions.py +25 -0
  148. flywheel/models/common_info.py +135 -0
  149. flywheel/models/common_join_origins.py +25 -0
  150. flywheel/models/common_key.py +36 -0
  151. flywheel/models/common_modified_count.py +25 -0
  152. flywheel/models/common_object_created.py +36 -0
  153. flywheel/models/common_project_settings.py +25 -0
  154. flywheel/models/common_settings.py +36 -0
  155. flywheel/models/complete_multipart_upload_output.py +189 -0
  156. flywheel/models/complete_s3_multipart_upload_input.py +241 -0
  157. flywheel/models/config_feature_map.py +36 -0
  158. flywheel/models/config_out.py +381 -0
  159. flywheel/models/config_output.py +36 -0
  160. flywheel/models/config_site_config_output.py +36 -0
  161. flywheel/models/config_site_settings.py +36 -0
  162. flywheel/models/config_site_settings_input.py +36 -0
  163. flywheel/models/conflict_types.py +30 -0
  164. flywheel/models/container_delete_reason.py +39 -0
  165. flywheel/models/container_filter.py +193 -0
  166. flywheel/models/container_id_view_input.py +521 -0
  167. flywheel/models/container_id_view_input_execute_and_save.py +308 -0
  168. flywheel/models/container_modify.py +536 -0
  169. flywheel/models/container_new_output.py +25 -0
  170. flywheel/models/container_node_min.py +350 -0
  171. flywheel/models/container_output.py +36 -0
  172. flywheel/models/container_output_with_files.py +283 -0
  173. flywheel/models/container_parents.py +311 -0
  174. flywheel/models/container_pipeline_input.py +536 -0
  175. flywheel/models/container_project_parents.py +25 -0
  176. flywheel/models/container_reference.py +193 -0
  177. flywheel/models/container_reference_with_label.py +219 -0
  178. flywheel/models/container_session_parents.py +25 -0
  179. flywheel/models/container_subject_parents.py +25 -0
  180. flywheel/models/container_type.py +39 -0
  181. flywheel/models/container_uidcheck.py +253 -0
  182. flywheel/models/container_update.py +135 -0
  183. flywheel/models/context_input.py +217 -0
  184. flywheel/models/copy_filter.py +299 -0
  185. flywheel/models/copy_status.py +32 -0
  186. flywheel/models/core_models_api_key_api_key_input.py +190 -0
  187. flywheel/models/core_models_audit_trail_create_report_input.py +273 -0
  188. flywheel/models/core_models_audit_trail_modify_report_input.py +167 -0
  189. flywheel/models/core_models_common_source.py +189 -0
  190. flywheel/models/core_models_jobs_api_key_input.py +191 -0
  191. flywheel/models/core_models_search_parent_type.py +33 -0
  192. flywheel/models/core_workflows_form_responses_models_form_parents.py +163 -0
  193. flywheel/models/core_workflows_form_responses_models_form_response_output.py +440 -0
  194. flywheel/models/core_workflows_reader_models_reader_task_parents.py +295 -0
  195. flywheel/models/creds.py +135 -0
  196. flywheel/models/curator.py +221 -0
  197. flywheel/models/current_user_output.py +707 -0
  198. flywheel/models/custom_field.py +437 -0
  199. flywheel/models/custom_form.py +244 -0
  200. flywheel/models/cvat_info.py +275 -0
  201. flywheel/models/cvat_settings.py +272 -0
  202. flywheel/models/cvat_settings_input.py +272 -0
  203. flywheel/models/cvat_sync_state.py +30 -0
  204. flywheel/models/daily_report_usage.py +565 -0
  205. flywheel/models/data_strategy.py +29 -0
  206. flywheel/models/data_view.py +25 -0
  207. flywheel/models/data_view_analysis_file_spec.py +221 -0
  208. flywheel/models/data_view_analysis_filter_spec.py +221 -0
  209. flywheel/models/data_view_column_alias.py +337 -0
  210. flywheel/models/data_view_column_spec.py +286 -0
  211. flywheel/models/data_view_execution.py +505 -0
  212. flywheel/models/data_view_execution_state.py +31 -0
  213. flywheel/models/data_view_file_spec.py +392 -0
  214. flywheel/models/data_view_group_by.py +166 -0
  215. flywheel/models/data_view_group_by_column.py +194 -0
  216. flywheel/models/data_view_name_filter_spec.py +194 -0
  217. flywheel/models/data_view_output.py +25 -0
  218. flywheel/models/data_view_save_data_view_input.py +25 -0
  219. flywheel/models/data_view_zip_filter_spec.py +223 -0
  220. flywheel/models/default_flywheel_role.py +30 -0
  221. flywheel/models/deid_log_skip_reason.py +29 -0
  222. flywheel/models/delete_by_search_query.py +253 -0
  223. flywheel/models/deleted_file.py +514 -0
  224. flywheel/models/deleted_result.py +194 -0
  225. flywheel/models/deprecated_action.py +29 -0
  226. flywheel/models/destination_container_type.py +30 -0
  227. flywheel/models/device.py +437 -0
  228. flywheel/models/device_admin_update.py +194 -0
  229. flywheel/models/device_create.py +219 -0
  230. flywheel/models/device_self_update.py +272 -0
  231. flywheel/models/device_status.py +36 -0
  232. flywheel/models/device_status_entry.py +221 -0
  233. flywheel/models/device_storage_strategy_update.py +193 -0
  234. flywheel/models/dimse_project_input.py +36 -0
  235. flywheel/models/dimse_project_output.py +36 -0
  236. flywheel/models/dimse_service_input.py +36 -0
  237. flywheel/models/dimse_service_output.py +36 -0
  238. flywheel/models/download.py +249 -0
  239. flywheel/models/download_container_filter.py +167 -0
  240. flywheel/models/download_container_filter_definition.py +222 -0
  241. flywheel/models/download_filter.py +221 -0
  242. flywheel/models/download_filter_definition.py +195 -0
  243. flywheel/models/download_format.py +29 -0
  244. flywheel/models/download_input.py +25 -0
  245. flywheel/models/download_node.py +189 -0
  246. flywheel/models/download_strategy.py +31 -0
  247. flywheel/models/download_ticket.py +36 -0
  248. flywheel/models/download_ticket_stub.py +249 -0
  249. flywheel/models/download_ticket_with_summary.py +36 -0
  250. flywheel/models/e_signature.py +242 -0
  251. flywheel/models/edition.py +169 -0
  252. flywheel/models/egress_device.py +597 -0
  253. flywheel/models/egress_device_page.py +219 -0
  254. flywheel/models/egress_provider.py +408 -0
  255. flywheel/models/egress_provider_id.py +164 -0
  256. flywheel/models/exchange_storage.py +243 -0
  257. flywheel/models/executor_info.py +353 -0
  258. flywheel/models/export_templates.py +195 -0
  259. flywheel/models/features.py +1838 -0
  260. flywheel/models/field_change.py +271 -0
  261. flywheel/models/field_change_log_document.py +245 -0
  262. flywheel/models/field_type.py +37 -0
  263. flywheel/models/file.py +1139 -0
  264. flywheel/models/file_classification_delta.py +245 -0
  265. flywheel/models/file_container_type.py +34 -0
  266. flywheel/models/file_entry.py +740 -0
  267. flywheel/models/file_export_templates.py +272 -0
  268. flywheel/models/file_format.py +33 -0
  269. flywheel/models/file_gear_info.py +215 -0
  270. flywheel/models/file_group.py +29 -0
  271. flywheel/models/file_list_output.py +1115 -0
  272. flywheel/models/file_modify_input.py +191 -0
  273. flywheel/models/file_move_input.py +221 -0
  274. flywheel/models/file_node.py +1138 -0
  275. flywheel/models/file_node_min.py +321 -0
  276. flywheel/models/file_origin.py +283 -0
  277. flywheel/models/file_output.py +1135 -0
  278. flywheel/models/file_parents.py +297 -0
  279. flywheel/models/file_reference.py +221 -0
  280. flywheel/models/file_suggestion.py +241 -0
  281. flywheel/models/file_template_options.py +299 -0
  282. flywheel/models/file_upsert_input.py +612 -0
  283. flywheel/models/file_upsert_origin.py +36 -0
  284. flywheel/models/file_upsert_output.py +1154 -0
  285. flywheel/models/file_version.py +190 -0
  286. flywheel/models/file_version_copy_of.py +273 -0
  287. flywheel/models/file_version_output.py +325 -0
  288. flywheel/models/file_via.py +245 -0
  289. flywheel/models/file_zip_entry.py +25 -0
  290. flywheel/models/file_zip_info.py +25 -0
  291. flywheel/models/filter.py +350 -0
  292. flywheel/models/filter_input.py +218 -0
  293. flywheel/models/filter_values.py +195 -0
  294. flywheel/models/filter_view.py +28 -0
  295. flywheel/models/fixed_file_version_input.py +216 -0
  296. flywheel/models/fixed_input.py +299 -0
  297. flywheel/models/form_definition.py +163 -0
  298. flywheel/models/form_response_base.py +311 -0
  299. flywheel/models/form_response_create.py +193 -0
  300. flywheel/models/gcp_creds.py +397 -0
  301. flywheel/models/gcp_storage.py +298 -0
  302. flywheel/models/gear.py +619 -0
  303. flywheel/models/gear_category.py +32 -0
  304. flywheel/models/gear_config.py +138 -0
  305. flywheel/models/gear_context_input.py +164 -0
  306. flywheel/models/gear_context_lookup.py +25 -0
  307. flywheel/models/gear_context_lookup_item.py +36 -0
  308. flywheel/models/gear_context_value_output.py +272 -0
  309. flywheel/models/gear_context_value_output_unfound.py +164 -0
  310. flywheel/models/gear_custom.py +135 -0
  311. flywheel/models/gear_directive.py +135 -0
  312. flywheel/models/gear_doc.py +25 -0
  313. flywheel/models/gear_document.py +332 -0
  314. flywheel/models/gear_document_input.py +303 -0
  315. flywheel/models/gear_document_legacy_input.py +302 -0
  316. flywheel/models/gear_environment.py +135 -0
  317. flywheel/models/gear_exchange.py +221 -0
  318. flywheel/models/gear_file_input.py +192 -0
  319. flywheel/models/gear_id_output.py +170 -0
  320. flywheel/models/gear_info.py +251 -0
  321. flywheel/models/gear_input_item.py +231 -0
  322. flywheel/models/gear_inputs.py +140 -0
  323. flywheel/models/gear_invocation.py +138 -0
  324. flywheel/models/gear_key_input.py +191 -0
  325. flywheel/models/gear_manifest.py +624 -0
  326. flywheel/models/gear_mixin.py +218 -0
  327. flywheel/models/gear_node.py +355 -0
  328. flywheel/models/gear_output_configuration.py +164 -0
  329. flywheel/models/gear_permissions.py +191 -0
  330. flywheel/models/gear_permissions_input.py +163 -0
  331. flywheel/models/gear_permissions_type.py +29 -0
  332. flywheel/models/gear_return_ticket.py +25 -0
  333. flywheel/models/gear_rule.py +653 -0
  334. flywheel/models/gear_rule_condition.py +219 -0
  335. flywheel/models/gear_rule_condition_type.py +37 -0
  336. flywheel/models/gear_rule_input.py +517 -0
  337. flywheel/models/gear_rule_modify_input.py +492 -0
  338. flywheel/models/gear_rule_output.py +652 -0
  339. flywheel/models/gear_save_submission.py +221 -0
  340. flywheel/models/gear_series.py +298 -0
  341. flywheel/models/gear_series_update.py +163 -0
  342. flywheel/models/gear_suggestion_output.py +301 -0
  343. flywheel/models/gear_ticket.py +245 -0
  344. flywheel/models/gear_ticket_output.py +163 -0
  345. flywheel/models/google_auth_out.py +299 -0
  346. flywheel/models/graph_filter.py +329 -0
  347. flywheel/models/group.py +25 -0
  348. flywheel/models/group_by.py +163 -0
  349. flywheel/models/group_by_column.py +36 -0
  350. flywheel/models/group_container_output.py +33 -0
  351. flywheel/models/group_input.py +248 -0
  352. flywheel/models/group_metadata_input.py +36 -0
  353. flywheel/models/group_node.py +34 -0
  354. flywheel/models/group_output.py +471 -0
  355. flywheel/models/group_report.py +218 -0
  356. flywheel/models/group_role.py +163 -0
  357. flywheel/models/group_settings_output.py +249 -0
  358. flywheel/models/group_update.py +249 -0
  359. flywheel/models/header_feature.py +37 -0
  360. flywheel/models/hierarchy_export_templates.py +272 -0
  361. flywheel/models/http_validation_error.py +167 -0
  362. flywheel/models/info.py +218 -0
  363. flywheel/models/info_add_remove.py +36 -0
  364. flywheel/models/info_container_type.py +35 -0
  365. flywheel/models/info_replace.py +36 -0
  366. flywheel/models/info_update_input.py +36 -0
  367. flywheel/models/ingress_provider.py +299 -0
  368. flywheel/models/ingress_providers.py +272 -0
  369. flywheel/models/ingress_site_settings.py +305 -0
  370. flywheel/models/ingress_update_provider.py +218 -0
  371. flywheel/models/inline_response200.py +163 -0
  372. flywheel/models/inline_response2001.py +171 -0
  373. flywheel/models/inline_response2002.py +163 -0
  374. flywheel/models/inline_response2003.py +36 -0
  375. flywheel/models/inline_response2005.py +25 -0
  376. flywheel/models/input_filter.py +221 -0
  377. flywheel/models/input_job.py +521 -0
  378. flywheel/models/input_job_profile.py +275 -0
  379. flywheel/models/inserted_id.py +163 -0
  380. flywheel/models/job.py +841 -0
  381. flywheel/models/job_analysis_input.py +273 -0
  382. flywheel/models/job_ask.py +301 -0
  383. flywheel/models/job_ask_response.py +195 -0
  384. flywheel/models/job_ask_response_job.py +978 -0
  385. flywheel/models/job_ask_return.py +25 -0
  386. flywheel/models/job_ask_return_criteria.py +245 -0
  387. flywheel/models/job_ask_state.py +25 -0
  388. flywheel/models/job_ask_state_response.py +163 -0
  389. flywheel/models/job_complete.py +220 -0
  390. flywheel/models/job_completion_input.py +25 -0
  391. flywheel/models/job_completion_ticket.py +25 -0
  392. flywheel/models/job_config.py +135 -0
  393. flywheel/models/job_config_input.py +272 -0
  394. flywheel/models/job_config_inputs.py +25 -0
  395. flywheel/models/job_config_output.py +25 -0
  396. flywheel/models/job_container_detail.py +25 -0
  397. flywheel/models/job_destination.py +189 -0
  398. flywheel/models/job_detail.py +925 -0
  399. flywheel/models/job_detail_container.py +190 -0
  400. flywheel/models/job_detail_file_entry.py +194 -0
  401. flywheel/models/job_detail_group.py +190 -0
  402. flywheel/models/job_detail_parent_info.py +303 -0
  403. flywheel/models/job_executor_info.py +369 -0
  404. flywheel/models/job_file_input.py +247 -0
  405. flywheel/models/job_file_input_list_output.py +247 -0
  406. flywheel/models/job_file_object.py +435 -0
  407. flywheel/models/job_file_object_list_output.py +407 -0
  408. flywheel/models/job_gear_match.py +25 -0
  409. flywheel/models/job_inputs_array_item.py +305 -0
  410. flywheel/models/job_inputs_item.py +242 -0
  411. flywheel/models/job_inputs_object.py +138 -0
  412. flywheel/models/job_list_entry.py +25 -0
  413. flywheel/models/job_list_output.py +979 -0
  414. flywheel/models/job_list_output_config.py +220 -0
  415. flywheel/models/job_log.py +189 -0
  416. flywheel/models/job_log_column.py +40 -0
  417. flywheel/models/job_log_record.py +192 -0
  418. flywheel/models/job_modify.py +193 -0
  419. flywheel/models/job_origin.py +190 -0
  420. flywheel/models/job_output.py +1005 -0
  421. flywheel/models/job_output_config.py +247 -0
  422. flywheel/models/job_parents.py +297 -0
  423. flywheel/models/job_priority.py +31 -0
  424. flywheel/models/job_priority_update.py +192 -0
  425. flywheel/models/job_profile.py +427 -0
  426. flywheel/models/job_profile_input.py +25 -0
  427. flywheel/models/job_request.py +221 -0
  428. flywheel/models/job_request_item.py +246 -0
  429. flywheel/models/job_request_item_type.py +31 -0
  430. flywheel/models/job_request_target.py +270 -0
  431. flywheel/models/job_state.py +32 -0
  432. flywheel/models/job_state_counts.py +25 -0
  433. flywheel/models/job_stats_by_state.py +25 -0
  434. flywheel/models/job_ticket_output.py +165 -0
  435. flywheel/models/job_transition_times.py +253 -0
  436. flywheel/models/job_version_info.py +135 -0
  437. flywheel/models/jobs_by_state.py +272 -0
  438. flywheel/models/jobs_list.py +166 -0
  439. flywheel/models/join_origin_device.py +164 -0
  440. flywheel/models/join_origin_job.py +219 -0
  441. flywheel/models/join_origin_user.py +189 -0
  442. flywheel/models/join_origins.py +223 -0
  443. flywheel/models/join_type.py +28 -0
  444. flywheel/models/jupyterhub_workspace.py +163 -0
  445. flywheel/models/jupyterlab_server_modify.py +275 -0
  446. flywheel/models/jupyterlab_server_origin.py +25 -0
  447. flywheel/models/jupyterlab_server_output.py +25 -0
  448. flywheel/models/jupyterlab_server_response.py +415 -0
  449. flywheel/models/jupyterlab_server_update.py +25 -0
  450. flywheel/models/ldap_sync.py +36 -0
  451. flywheel/models/ldap_sync_config.py +163 -0
  452. flywheel/models/ldap_sync_input.py +36 -0
  453. flywheel/models/ldap_sync_status.py +250 -0
  454. flywheel/models/legacy_api_key_output.py +271 -0
  455. flywheel/models/legacy_input.py +244 -0
  456. flywheel/models/legacy_usage_report.py +309 -0
  457. flywheel/models/legacys_usage_project_entry.py +194 -0
  458. flywheel/models/libs_workflows_models_parent_type.py +33 -0
  459. flywheel/models/libs_workflows_models_task_status.py +32 -0
  460. flywheel/models/local_storage.py +217 -0
  461. flywheel/models/location.py +189 -0
  462. flywheel/models/locked.py +219 -0
  463. flywheel/models/master_subject_code_dob_input.py +279 -0
  464. flywheel/models/master_subject_code_input.py +281 -0
  465. flywheel/models/master_subject_code_output.py +166 -0
  466. flywheel/models/matched_acquisition_output.py +518 -0
  467. flywheel/models/mfa_channel.py +30 -0
  468. flywheel/models/mfa_settings.py +167 -0
  469. flywheel/models/mixins.py +794 -0
  470. flywheel/models/ml_set_filter.py +194 -0
  471. flywheel/models/ml_type.py +30 -0
  472. flywheel/models/modality.py +250 -0
  473. flywheel/models/modality_input.py +244 -0
  474. flywheel/models/modality_modify.py +218 -0
  475. flywheel/models/modality_output.py +271 -0
  476. flywheel/models/modified_result.py +190 -0
  477. flywheel/models/modify_user_input.py +466 -0
  478. flywheel/models/move_conflict.py +300 -0
  479. flywheel/models/note.py +391 -0
  480. flywheel/models/note_input.py +165 -0
  481. flywheel/models/optional_input_policy.py +30 -0
  482. flywheel/models/order.py +29 -0
  483. flywheel/models/organ_system.py +64 -0
  484. flywheel/models/origin.py +193 -0
  485. flywheel/models/origin_type.py +35 -0
  486. flywheel/models/orphaned_count.py +163 -0
  487. flywheel/models/output_user_page.py +219 -0
  488. flywheel/models/packfile_cleanup_output.py +166 -0
  489. flywheel/models/packfile_removed_output.py +189 -0
  490. flywheel/models/page.py +216 -0
  491. flywheel/models/page_generic_file_output.py +219 -0
  492. flywheel/models/page_generic_filter.py +219 -0
  493. flywheel/models/page_generic_form_response_output.py +219 -0
  494. flywheel/models/page_generic_protocol.py +244 -0
  495. flywheel/models/page_generic_reader_task_output.py +244 -0
  496. flywheel/models/page_generic_staffing_pool.py +244 -0
  497. flywheel/models/parsed_query_response.py +194 -0
  498. flywheel/models/permission_access_permission.py +25 -0
  499. flywheel/models/premade_jobs_batch_job_output.py +298 -0
  500. flywheel/models/premade_jobs_batch_job_output_inflated_jobs.py +299 -0
  501. flywheel/models/premade_jobs_batch_proposal.py +334 -0
  502. flywheel/models/premade_jobs_batch_proposal_detail.py +166 -0
  503. flywheel/models/premade_jobs_batch_proposal_input.py +166 -0
  504. flywheel/models/project.py +25 -0
  505. flywheel/models/project_acquisition_upsert_input.py +25 -0
  506. flywheel/models/project_acquisition_upsert_output.py +25 -0
  507. flywheel/models/project_aet.py +331 -0
  508. flywheel/models/project_aet_input.py +248 -0
  509. flywheel/models/project_catalog_list_output.py +25 -0
  510. flywheel/models/project_contact.py +194 -0
  511. flywheel/models/project_container_output.py +41 -0
  512. flywheel/models/project_copy_input.py +245 -0
  513. flywheel/models/project_copy_output.py +215 -0
  514. flywheel/models/project_counters.py +346 -0
  515. flywheel/models/project_hierarchy_input.py +278 -0
  516. flywheel/models/project_hierarchy_output.py +222 -0
  517. flywheel/models/project_hierarchy_upsert_input.py +25 -0
  518. flywheel/models/project_hierarchy_upsert_output.py +25 -0
  519. flywheel/models/project_input.py +384 -0
  520. flywheel/models/project_institution.py +194 -0
  521. flywheel/models/project_list_output.py +897 -0
  522. flywheel/models/project_locking_reason.py +32 -0
  523. flywheel/models/project_modify.py +413 -0
  524. flywheel/models/project_node.py +42 -0
  525. flywheel/models/project_output.py +899 -0
  526. flywheel/models/project_parents.py +168 -0
  527. flywheel/models/project_report.py +463 -0
  528. flywheel/models/project_report_list.py +167 -0
  529. flywheel/models/project_session_upsert_input.py +25 -0
  530. flywheel/models/project_session_upsert_output.py +25 -0
  531. flywheel/models/project_settings_input.py +333 -0
  532. flywheel/models/project_settings_output.py +333 -0
  533. flywheel/models/project_settings_sharing.py +327 -0
  534. flywheel/models/project_settings_sharing_input.py +334 -0
  535. flywheel/models/project_settings_workspaces.py +167 -0
  536. flywheel/models/project_settings_workspaces_input.py +167 -0
  537. flywheel/models/project_share_level.py +29 -0
  538. flywheel/models/project_sharing_settings_project_contact.py +25 -0
  539. flywheel/models/project_sharing_settings_project_counters.py +36 -0
  540. flywheel/models/project_sharing_settings_project_institution.py +25 -0
  541. flywheel/models/project_sharing_settings_project_settings_input.py +25 -0
  542. flywheel/models/project_sharing_settings_project_settings_output.py +25 -0
  543. flywheel/models/project_sharing_settings_project_settings_sharing.py +25 -0
  544. flywheel/models/project_sharing_settings_project_settings_sharing_input.py +25 -0
  545. flywheel/models/project_sharing_settings_project_stats.py +36 -0
  546. flywheel/models/project_stats.py +270 -0
  547. flywheel/models/project_subject_upsert_input.py +25 -0
  548. flywheel/models/project_subject_upsert_output.py +25 -0
  549. flywheel/models/project_template.py +195 -0
  550. flywheel/models/project_template_input.py +195 -0
  551. flywheel/models/project_template_list_input.py +166 -0
  552. flywheel/models/project_template_requirement.py +36 -0
  553. flywheel/models/project_template_session_template.py +36 -0
  554. flywheel/models/project_upsert_origin.py +36 -0
  555. flywheel/models/protocol.py +515 -0
  556. flywheel/models/protocol_e_signature_config.py +191 -0
  557. flywheel/models/protocol_input.py +354 -0
  558. flywheel/models/protocol_modify.py +277 -0
  559. flywheel/models/protocol_status.py +30 -0
  560. flywheel/models/provider.py +461 -0
  561. flywheel/models/provider_access_type.py +29 -0
  562. flywheel/models/provider_class.py +29 -0
  563. flywheel/models/provider_deletion_status.py +189 -0
  564. flywheel/models/provider_input.py +25 -0
  565. flywheel/models/provider_links.py +282 -0
  566. flywheel/models/provider_type.py +34 -0
  567. flywheel/models/providers.py +277 -0
  568. flywheel/models/reader_batch_create.py +463 -0
  569. flywheel/models/reader_task.py +725 -0
  570. flywheel/models/reader_task_config.py +189 -0
  571. flywheel/models/reader_task_create.py +543 -0
  572. flywheel/models/reader_task_modify.py +303 -0
  573. flywheel/models/reader_task_output.py +752 -0
  574. flywheel/models/reader_task_parent_details.py +322 -0
  575. flywheel/models/report_access_log_context.py +301 -0
  576. flywheel/models/report_access_log_context_entry.py +194 -0
  577. flywheel/models/report_access_log_context_file_entry.py +165 -0
  578. flywheel/models/report_access_log_entry.py +624 -0
  579. flywheel/models/report_access_log_origin.py +194 -0
  580. flywheel/models/report_availability_list.py +167 -0
  581. flywheel/models/report_daily_usage_entry.py +501 -0
  582. flywheel/models/report_demographics_grid.py +36 -0
  583. flywheel/models/report_ethnicity_grid.py +252 -0
  584. flywheel/models/report_gender_count.py +222 -0
  585. flywheel/models/report_group_report.py +217 -0
  586. flywheel/models/report_legacy_usage_entry.py +36 -0
  587. flywheel/models/report_legacy_usage_project_entry.py +36 -0
  588. flywheel/models/report_project.py +25 -0
  589. flywheel/models/report_site.py +192 -0
  590. flywheel/models/report_time_period.py +193 -0
  591. flywheel/models/report_usage.py +630 -0
  592. flywheel/models/report_usage_entry.py +25 -0
  593. flywheel/models/resolve_input.py +163 -0
  594. flywheel/models/resolve_output.py +194 -0
  595. flywheel/models/resolver_acquisition_node.py +36 -0
  596. flywheel/models/resolver_analysis_node.py +36 -0
  597. flywheel/models/resolver_file_node.py +36 -0
  598. flywheel/models/resolver_gear_node.py +36 -0
  599. flywheel/models/resolver_group_node.py +36 -0
  600. flywheel/models/resolver_input.py +25 -0
  601. flywheel/models/resolver_node.py +182 -0
  602. flywheel/models/resolver_output.py +25 -0
  603. flywheel/models/resolver_project_node.py +36 -0
  604. flywheel/models/resolver_session_node.py +36 -0
  605. flywheel/models/resolver_subject_node.py +36 -0
  606. flywheel/models/role_input.py +192 -0
  607. flywheel/models/role_output.py +273 -0
  608. flywheel/models/role_permission.py +194 -0
  609. flywheel/models/role_permission_output.py +189 -0
  610. flywheel/models/role_permission_update.py +163 -0
  611. flywheel/models/role_type.py +32 -0
  612. flywheel/models/role_update.py +194 -0
  613. flywheel/models/roles_backwards_compatible_role_assignment.py +36 -0
  614. flywheel/models/roles_group_role_pool_input.py +36 -0
  615. flywheel/models/roles_role.py +36 -0
  616. flywheel/models/roles_role_assignment.py +195 -0
  617. flywheel/models/roles_role_input.py +36 -0
  618. flywheel/models/rule.py +467 -0
  619. flywheel/models/rule_any.py +216 -0
  620. flywheel/models/s3_addressing_style.py +29 -0
  621. flywheel/models/s3_compat_storage.py +381 -0
  622. flywheel/models/save_search.py +298 -0
  623. flywheel/models/save_search_input.py +219 -0
  624. flywheel/models/save_search_output.py +301 -0
  625. flywheel/models/save_search_page.py +219 -0
  626. flywheel/models/save_search_parent.py +192 -0
  627. flywheel/models/save_search_update.py +194 -0
  628. flywheel/models/search_acquisition_response.py +252 -0
  629. flywheel/models/search_analysis_response.py +254 -0
  630. flywheel/models/search_collection_response.py +254 -0
  631. flywheel/models/search_file_response.py +312 -0
  632. flywheel/models/search_group_response.py +196 -0
  633. flywheel/models/search_parent_acquisition.py +47 -0
  634. flywheel/models/search_parent_analysis.py +47 -0
  635. flywheel/models/search_parent_collection.py +46 -0
  636. flywheel/models/search_parent_project.py +54 -0
  637. flywheel/models/search_parent_response.py +213 -0
  638. flywheel/models/search_parent_session.py +48 -0
  639. flywheel/models/search_parent_subject.py +48 -0
  640. flywheel/models/search_parse_error.py +252 -0
  641. flywheel/models/search_parse_search_query_result.py +36 -0
  642. flywheel/models/search_project_response.py +196 -0
  643. flywheel/models/search_query.py +337 -0
  644. flywheel/models/search_query_suggestions.py +36 -0
  645. flywheel/models/search_response.py +448 -0
  646. flywheel/models/search_return_type.py +33 -0
  647. flywheel/models/search_save_search.py +36 -0
  648. flywheel/models/search_save_search_input.py +36 -0
  649. flywheel/models/search_save_search_parent.py +36 -0
  650. flywheel/models/search_save_search_update.py +36 -0
  651. flywheel/models/search_session_response.py +252 -0
  652. flywheel/models/search_status.py +166 -0
  653. flywheel/models/search_structured_search_query.py +25 -0
  654. flywheel/models/search_subject_response.py +225 -0
  655. flywheel/models/search_suggestion.py +36 -0
  656. flywheel/models/select_item.py +190 -0
  657. flywheel/models/server_state.py +303 -0
  658. flywheel/models/service_aet.py +301 -0
  659. flywheel/models/service_aet_input.py +276 -0
  660. flywheel/models/session.py +25 -0
  661. flywheel/models/session_container_output.py +35 -0
  662. flywheel/models/session_copy_input.py +253 -0
  663. flywheel/models/session_embedded_subject.py +299 -0
  664. flywheel/models/session_input.py +431 -0
  665. flywheel/models/session_list_output.py +897 -0
  666. flywheel/models/session_metadata_input.py +36 -0
  667. flywheel/models/session_modify.py +464 -0
  668. flywheel/models/session_node.py +36 -0
  669. flywheel/models/session_output.py +897 -0
  670. flywheel/models/session_parents.py +220 -0
  671. flywheel/models/session_template_options.py +221 -0
  672. flywheel/models/session_template_recalc_output.py +165 -0
  673. flywheel/models/session_upsert_input.py +464 -0
  674. flywheel/models/session_upsert_output.py +243 -0
  675. flywheel/models/sharing_filter_options.py +345 -0
  676. flywheel/models/signed_fs_upload_output.py +189 -0
  677. flywheel/models/signed_url_cleanup_input.py +189 -0
  678. flywheel/models/signed_url_upload_input.py +190 -0
  679. flywheel/models/signed_url_upload_output.py +349 -0
  680. flywheel/models/site.py +623 -0
  681. flywheel/models/site_report.py +194 -0
  682. flywheel/models/site_settings.py +385 -0
  683. flywheel/models/sort.py +192 -0
  684. flywheel/models/stable_api_key_input.py +25 -0
  685. flywheel/models/staffing_pool.py +324 -0
  686. flywheel/models/staffing_pool_create.py +216 -0
  687. flywheel/models/staffing_pool_list.py +164 -0
  688. flywheel/models/staffing_pool_modify.py +218 -0
  689. flywheel/models/state.py +32 -0
  690. flywheel/models/static_compute.py +218 -0
  691. flywheel/models/status_transitions.py +245 -0
  692. flywheel/models/status_type.py +31 -0
  693. flywheel/models/status_value.py +31 -0
  694. flywheel/models/storage_strategy.py +30 -0
  695. flywheel/models/storage_strategy_config.py +194 -0
  696. flywheel/models/structured_query.py +165 -0
  697. flywheel/models/structured_query_suggestions.py +196 -0
  698. flywheel/models/structured_query_value_suggestion.py +247 -0
  699. flywheel/models/subject.py +34 -0
  700. flywheel/models/subject_container_output.py +36 -0
  701. flywheel/models/subject_copy_input.py +223 -0
  702. flywheel/models/subject_input.py +627 -0
  703. flywheel/models/subject_modify.py +684 -0
  704. flywheel/models/subject_node.py +37 -0
  705. flywheel/models/subject_output.py +1008 -0
  706. flywheel/models/subject_output_for_list.py +1005 -0
  707. flywheel/models/subject_parents.py +194 -0
  708. flywheel/models/subject_role_permission.py +194 -0
  709. flywheel/models/subject_state.py +30 -0
  710. flywheel/models/subject_template_options.py +191 -0
  711. flywheel/models/subject_upsert_input.py +573 -0
  712. flywheel/models/subject_upsert_output.py +216 -0
  713. flywheel/models/sync_user_input.py +322 -0
  714. flywheel/models/tag.py +165 -0
  715. flywheel/models/task_assign.py +194 -0
  716. flywheel/models/task_facet.py +29 -0
  717. flywheel/models/task_parent_ref.py +245 -0
  718. flywheel/models/task_parent_ref_input.py +219 -0
  719. flywheel/models/task_priority.py +31 -0
  720. flywheel/models/task_submission.py +189 -0
  721. flywheel/models/therapeutic_area.py +60 -0
  722. flywheel/models/transitions.py +272 -0
  723. flywheel/models/tree_container_request_spec.py +281 -0
  724. flywheel/models/tree_graph.py +142 -0
  725. flywheel/models/tree_graph_connection.py +244 -0
  726. flywheel/models/tree_graph_connections.py +142 -0
  727. flywheel/models/tree_graph_node.py +166 -0
  728. flywheel/models/tree_request.py +25 -0
  729. flywheel/models/tree_response_item.py +142 -0
  730. flywheel/models/type_str.py +31 -0
  731. flywheel/models/uid_check_input_acquisitions.py +244 -0
  732. flywheel/models/uid_check_input_sessions.py +244 -0
  733. flywheel/models/uid_check_output.py +191 -0
  734. flywheel/models/upload_complete_s3_multipart_input.py +25 -0
  735. flywheel/models/upload_complete_s3_multipart_output.py +25 -0
  736. flywheel/models/upload_signed_fs_file_upload_output.py +36 -0
  737. flywheel/models/upload_signed_upload_url_input.py +36 -0
  738. flywheel/models/upload_signed_upload_url_output.py +36 -0
  739. flywheel/models/upload_ticket_output.py +215 -0
  740. flywheel/models/upload_token_output.py +163 -0
  741. flywheel/models/upsert_result.py +31 -0
  742. flywheel/models/user.py +760 -0
  743. flywheel/models/user_api_key.py +220 -0
  744. flywheel/models/user_input.py +461 -0
  745. flywheel/models/user_jobs.py +219 -0
  746. flywheel/models/user_jobs_output.py +25 -0
  747. flywheel/models/user_output.py +36 -0
  748. flywheel/models/user_output_id.py +163 -0
  749. flywheel/models/user_preferences.py +135 -0
  750. flywheel/models/user_wechat.py +135 -0
  751. flywheel/models/validation_error.py +215 -0
  752. flywheel/models/validation_rule.py +190 -0
  753. flywheel/models/version.py +363 -0
  754. flywheel/models/version_output.py +25 -0
  755. flywheel/models/view_id_output.py +164 -0
  756. flywheel/models/view_output.py +440 -0
  757. flywheel/models/viewer_app.py +381 -0
  758. flywheel/models/viewer_app_input.py +382 -0
  759. flywheel/models/viewer_app_type.py +29 -0
  760. flywheel/models/virus_scan.py +166 -0
  761. flywheel/models/virus_scan_state.py +30 -0
  762. flywheel/models/work_in_progress_features.py +135 -0
  763. flywheel/models/zipfile_info.py +192 -0
  764. flywheel/models/zipfile_member_info.py +241 -0
  765. flywheel/partial_reader.py +50 -0
  766. flywheel/rest.py +352 -0
  767. flywheel/util.py +95 -0
  768. flywheel/view_builder.py +449 -0
  769. flywheel_sdk-21.2.0rc0.dist-info/METADATA +41 -0
  770. flywheel_sdk-21.2.0rc0.dist-info/RECORD +772 -0
  771. flywheel_sdk-21.2.0rc0.dist-info/WHEEL +4 -0
  772. flywheel_sdk-21.2.0rc0.dist-info/licenses/LICENSE.txt +18 -0
@@ -0,0 +1,1838 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Flywheel
5
+
6
+ No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
7
+
8
+ OpenAPI spec version: 0.0.1
9
+
10
+ Generated by: https://github.com/swagger-api/swagger-codegen.git
11
+ """
12
+
13
+
14
+ ## NOTE: This file is auto generated by the swagger code generator program.
15
+ ## Do not edit the file manually.
16
+
17
+ import pprint
18
+ import re # noqa: F401
19
+ import six
20
+ from typing import TYPE_CHECKING
21
+
22
+ class Features(object):
23
+
24
+ swagger_types = {
25
+ 'api_enabled_gear_rules': 'bool',
26
+ 'auth0': 'bool',
27
+ 'audit_trail': 'bool',
28
+ 'azureml_integration': 'bool',
29
+ 'cold_job_logs': 'bool',
30
+ 'collections': 'bool',
31
+ 'copy_by_reference': 'bool',
32
+ 'core_api': 'bool',
33
+ 'crawler': 'bool',
34
+ 'cvat': 'bool',
35
+ 'data_views_non_21_cfr': 'bool',
36
+ 'default_viewer_apps': 'bool',
37
+ 'deid_log': 'bool',
38
+ 'deid_profile': 'bool',
39
+ 'dimse': 'bool',
40
+ 'elastic_search_primary': 'bool',
41
+ 'exchange': 'bool',
42
+ 'case_uploader': 'bool',
43
+ 'exchange_admin': 'bool',
44
+ 'external_routing': 'bool',
45
+ 'gear_access': 'bool',
46
+ 'google_analytics': 'bool',
47
+ 'healthcare_api': 'bool',
48
+ 'job_ask': 'bool',
49
+ 'job_prioritization': 'bool',
50
+ 'job_tickets': 'bool',
51
+ 'jupyter_integration': 'bool',
52
+ 'jupyterhub_external_storage': 'bool',
53
+ 'ldap_sync': 'bool',
54
+ 'multifactor_auth': 'bool',
55
+ 'multipart_signed_url': 'bool',
56
+ 'multiproject': 'bool',
57
+ 'ohif_multi_subject_view': 'bool',
58
+ 'ohif_meteor': 'bool',
59
+ 'ohif_react': 'bool',
60
+ 'ohif_slice_order': 'str',
61
+ 'ohif_v2_adhoc_indexing': 'bool',
62
+ 'ohif_v3': 'bool',
63
+ 'ohif_v3_default_app': 'bool',
64
+ 'ohif_v3_readonly': 'bool',
65
+ 'project_export': 'bool',
66
+ 'project_import': 'bool',
67
+ 'project_list_uses_stats': 'bool',
68
+ 'project_locking': 'bool',
69
+ 'reader_tasks': 'bool',
70
+ 'rts_sync': 'bool',
71
+ 'sentry_logging': 'bool',
72
+ 'session_templates_non_21_cfr': 'bool',
73
+ 'shared_projects': 'bool',
74
+ 'signed_url': 'bool',
75
+ 'study_task_status': 'bool',
76
+ 'tagging': 'bool',
77
+ 'tags_in_lists': 'bool',
78
+ 'task_manager_data_views': 'bool',
79
+ 'transform_search_fields': 'bool',
80
+ 'unsafe_login': 'bool',
81
+ 'url_access_apps': 'bool',
82
+ 'userpilot': 'bool',
83
+ 'validate_classification': 'bool',
84
+ 'engine_validate_classification': 'bool',
85
+ 'virus_scan': 'bool',
86
+ 'legacy_dicom_uploader': 'bool',
87
+ 'tasks_refactor': 'bool'
88
+ }
89
+
90
+ attribute_map = {
91
+ 'api_enabled_gear_rules': 'api_enabled_gear_rules',
92
+ 'auth0': 'auth0',
93
+ 'audit_trail': 'audit_trail',
94
+ 'azureml_integration': 'azureml_integration',
95
+ 'cold_job_logs': 'cold_job_logs',
96
+ 'collections': 'collections',
97
+ 'copy_by_reference': 'copy_by_reference',
98
+ 'core_api': 'core_api',
99
+ 'crawler': 'crawler',
100
+ 'cvat': 'cvat',
101
+ 'data_views_non_21_cfr': 'data_views_non_21CFR',
102
+ 'default_viewer_apps': 'default_viewer_apps',
103
+ 'deid_log': 'deid_log',
104
+ 'deid_profile': 'deid_profile',
105
+ 'dimse': 'dimse',
106
+ 'elastic_search_primary': 'elastic_search_primary',
107
+ 'exchange': 'exchange',
108
+ 'case_uploader': 'case_uploader',
109
+ 'exchange_admin': 'exchange_admin',
110
+ 'external_routing': 'external_routing',
111
+ 'gear_access': 'gear_access',
112
+ 'google_analytics': 'google_analytics',
113
+ 'healthcare_api': 'healthcare_api',
114
+ 'job_ask': 'job_ask',
115
+ 'job_prioritization': 'job_prioritization',
116
+ 'job_tickets': 'job_tickets',
117
+ 'jupyter_integration': 'jupyter_integration',
118
+ 'jupyterhub_external_storage': 'jupyterhub_external_storage',
119
+ 'ldap_sync': 'ldap_sync',
120
+ 'multifactor_auth': 'multifactor_auth',
121
+ 'multipart_signed_url': 'multipart_signed_url',
122
+ 'multiproject': 'multiproject',
123
+ 'ohif_multi_subject_view': 'ohif_multi_subject_view',
124
+ 'ohif_meteor': 'ohif_meteor',
125
+ 'ohif_react': 'ohif_react',
126
+ 'ohif_slice_order': 'ohif_slice_order',
127
+ 'ohif_v2_adhoc_indexing': 'ohif_v2_adhoc_indexing',
128
+ 'ohif_v3': 'ohif_v3',
129
+ 'ohif_v3_default_app': 'ohif_v3_default_app',
130
+ 'ohif_v3_readonly': 'ohif_v3_readonly',
131
+ 'project_export': 'project_export',
132
+ 'project_import': 'project_import',
133
+ 'project_list_uses_stats': 'project_list_uses_stats',
134
+ 'project_locking': 'project_locking',
135
+ 'reader_tasks': 'reader_tasks',
136
+ 'rts_sync': 'rts_sync',
137
+ 'sentry_logging': 'sentry_logging',
138
+ 'session_templates_non_21_cfr': 'session_templates_non_21CFR',
139
+ 'shared_projects': 'shared_projects',
140
+ 'signed_url': 'signed_url',
141
+ 'study_task_status': 'study_task_status',
142
+ 'tagging': 'tagging',
143
+ 'tags_in_lists': 'tags_in_lists',
144
+ 'task_manager_data_views': 'task_manager_data_views',
145
+ 'transform_search_fields': 'transform_search_fields',
146
+ 'unsafe_login': 'unsafe_login',
147
+ 'url_access_apps': 'url_access_apps',
148
+ 'userpilot': 'userpilot',
149
+ 'validate_classification': 'validate_classification',
150
+ 'engine_validate_classification': 'engine_validate_classification',
151
+ 'virus_scan': 'virus_scan',
152
+ 'legacy_dicom_uploader': 'legacy_dicom_uploader',
153
+ 'tasks_refactor': 'tasks_refactor'
154
+ }
155
+
156
+ rattribute_map = {
157
+ 'api_enabled_gear_rules': 'api_enabled_gear_rules',
158
+ 'auth0': 'auth0',
159
+ 'audit_trail': 'audit_trail',
160
+ 'azureml_integration': 'azureml_integration',
161
+ 'cold_job_logs': 'cold_job_logs',
162
+ 'collections': 'collections',
163
+ 'copy_by_reference': 'copy_by_reference',
164
+ 'core_api': 'core_api',
165
+ 'crawler': 'crawler',
166
+ 'cvat': 'cvat',
167
+ 'data_views_non_21CFR': 'data_views_non_21_cfr',
168
+ 'default_viewer_apps': 'default_viewer_apps',
169
+ 'deid_log': 'deid_log',
170
+ 'deid_profile': 'deid_profile',
171
+ 'dimse': 'dimse',
172
+ 'elastic_search_primary': 'elastic_search_primary',
173
+ 'exchange': 'exchange',
174
+ 'case_uploader': 'case_uploader',
175
+ 'exchange_admin': 'exchange_admin',
176
+ 'external_routing': 'external_routing',
177
+ 'gear_access': 'gear_access',
178
+ 'google_analytics': 'google_analytics',
179
+ 'healthcare_api': 'healthcare_api',
180
+ 'job_ask': 'job_ask',
181
+ 'job_prioritization': 'job_prioritization',
182
+ 'job_tickets': 'job_tickets',
183
+ 'jupyter_integration': 'jupyter_integration',
184
+ 'jupyterhub_external_storage': 'jupyterhub_external_storage',
185
+ 'ldap_sync': 'ldap_sync',
186
+ 'multifactor_auth': 'multifactor_auth',
187
+ 'multipart_signed_url': 'multipart_signed_url',
188
+ 'multiproject': 'multiproject',
189
+ 'ohif_multi_subject_view': 'ohif_multi_subject_view',
190
+ 'ohif_meteor': 'ohif_meteor',
191
+ 'ohif_react': 'ohif_react',
192
+ 'ohif_slice_order': 'ohif_slice_order',
193
+ 'ohif_v2_adhoc_indexing': 'ohif_v2_adhoc_indexing',
194
+ 'ohif_v3': 'ohif_v3',
195
+ 'ohif_v3_default_app': 'ohif_v3_default_app',
196
+ 'ohif_v3_readonly': 'ohif_v3_readonly',
197
+ 'project_export': 'project_export',
198
+ 'project_import': 'project_import',
199
+ 'project_list_uses_stats': 'project_list_uses_stats',
200
+ 'project_locking': 'project_locking',
201
+ 'reader_tasks': 'reader_tasks',
202
+ 'rts_sync': 'rts_sync',
203
+ 'sentry_logging': 'sentry_logging',
204
+ 'session_templates_non_21CFR': 'session_templates_non_21_cfr',
205
+ 'shared_projects': 'shared_projects',
206
+ 'signed_url': 'signed_url',
207
+ 'study_task_status': 'study_task_status',
208
+ 'tagging': 'tagging',
209
+ 'tags_in_lists': 'tags_in_lists',
210
+ 'task_manager_data_views': 'task_manager_data_views',
211
+ 'transform_search_fields': 'transform_search_fields',
212
+ 'unsafe_login': 'unsafe_login',
213
+ 'url_access_apps': 'url_access_apps',
214
+ 'userpilot': 'userpilot',
215
+ 'validate_classification': 'validate_classification',
216
+ 'engine_validate_classification': 'engine_validate_classification',
217
+ 'virus_scan': 'virus_scan',
218
+ 'legacy_dicom_uploader': 'legacy_dicom_uploader',
219
+ 'tasks_refactor': 'tasks_refactor'
220
+ }
221
+
222
+ def __init__(self, api_enabled_gear_rules=True, auth0=None, audit_trail=False, azureml_integration=False, cold_job_logs=False, collections=False, copy_by_reference=True, core_api=True, crawler=False, cvat=False, data_views_non_21_cfr=True, default_viewer_apps=True, deid_log=False, deid_profile=False, dimse=False, elastic_search_primary=False, exchange=False, case_uploader=False, exchange_admin=False, external_routing=False, gear_access=True, google_analytics=True, healthcare_api=False, job_ask=True, job_prioritization=True, job_tickets=True, jupyter_integration=False, jupyterhub_external_storage=True, ldap_sync=False, multifactor_auth=False, multipart_signed_url=True, multiproject=False, ohif_multi_subject_view=False, ohif_meteor=False, ohif_react=False, ohif_slice_order=None, ohif_v2_adhoc_indexing=True, ohif_v3=True, ohif_v3_default_app=False, ohif_v3_readonly=False, project_export=True, project_import=True, project_list_uses_stats=True, project_locking=False, reader_tasks=False, rts_sync=False, sentry_logging=None, session_templates_non_21_cfr=True, shared_projects=False, signed_url=False, study_task_status=False, tagging=False, tags_in_lists=True, task_manager_data_views=True, transform_search_fields=True, unsafe_login=False, url_access_apps=False, userpilot=None, validate_classification=True, engine_validate_classification=False, virus_scan=False, legacy_dicom_uploader=False, tasks_refactor=False): # noqa: E501
223
+ """Features - a model defined in Swagger"""
224
+ super(Features, self).__init__()
225
+
226
+ self._api_enabled_gear_rules = None
227
+ self._auth0 = None
228
+ self._audit_trail = None
229
+ self._azureml_integration = None
230
+ self._cold_job_logs = None
231
+ self._collections = None
232
+ self._copy_by_reference = None
233
+ self._core_api = None
234
+ self._crawler = None
235
+ self._cvat = None
236
+ self._data_views_non_21_cfr = None
237
+ self._default_viewer_apps = None
238
+ self._deid_log = None
239
+ self._deid_profile = None
240
+ self._dimse = None
241
+ self._elastic_search_primary = None
242
+ self._exchange = None
243
+ self._case_uploader = None
244
+ self._exchange_admin = None
245
+ self._external_routing = None
246
+ self._gear_access = None
247
+ self._google_analytics = None
248
+ self._healthcare_api = None
249
+ self._job_ask = None
250
+ self._job_prioritization = None
251
+ self._job_tickets = None
252
+ self._jupyter_integration = None
253
+ self._jupyterhub_external_storage = None
254
+ self._ldap_sync = None
255
+ self._multifactor_auth = None
256
+ self._multipart_signed_url = None
257
+ self._multiproject = None
258
+ self._ohif_multi_subject_view = None
259
+ self._ohif_meteor = None
260
+ self._ohif_react = None
261
+ self._ohif_slice_order = None
262
+ self._ohif_v2_adhoc_indexing = None
263
+ self._ohif_v3 = None
264
+ self._ohif_v3_default_app = None
265
+ self._ohif_v3_readonly = None
266
+ self._project_export = None
267
+ self._project_import = None
268
+ self._project_list_uses_stats = None
269
+ self._project_locking = None
270
+ self._reader_tasks = None
271
+ self._rts_sync = None
272
+ self._sentry_logging = None
273
+ self._session_templates_non_21_cfr = None
274
+ self._shared_projects = None
275
+ self._signed_url = None
276
+ self._study_task_status = None
277
+ self._tagging = None
278
+ self._tags_in_lists = None
279
+ self._task_manager_data_views = None
280
+ self._transform_search_fields = None
281
+ self._unsafe_login = None
282
+ self._url_access_apps = None
283
+ self._userpilot = None
284
+ self._validate_classification = None
285
+ self._engine_validate_classification = None
286
+ self._virus_scan = None
287
+ self._legacy_dicom_uploader = None
288
+ self._tasks_refactor = None
289
+ self.discriminator = None
290
+ self.alt_discriminator = None
291
+
292
+ if api_enabled_gear_rules is not None:
293
+ self.api_enabled_gear_rules = api_enabled_gear_rules
294
+ if auth0 is not None:
295
+ self.auth0 = auth0
296
+ if audit_trail is not None:
297
+ self.audit_trail = audit_trail
298
+ if azureml_integration is not None:
299
+ self.azureml_integration = azureml_integration
300
+ if cold_job_logs is not None:
301
+ self.cold_job_logs = cold_job_logs
302
+ if collections is not None:
303
+ self.collections = collections
304
+ if copy_by_reference is not None:
305
+ self.copy_by_reference = copy_by_reference
306
+ if core_api is not None:
307
+ self.core_api = core_api
308
+ if crawler is not None:
309
+ self.crawler = crawler
310
+ if cvat is not None:
311
+ self.cvat = cvat
312
+ if data_views_non_21_cfr is not None:
313
+ self.data_views_non_21_cfr = data_views_non_21_cfr
314
+ if default_viewer_apps is not None:
315
+ self.default_viewer_apps = default_viewer_apps
316
+ if deid_log is not None:
317
+ self.deid_log = deid_log
318
+ if deid_profile is not None:
319
+ self.deid_profile = deid_profile
320
+ if dimse is not None:
321
+ self.dimse = dimse
322
+ if elastic_search_primary is not None:
323
+ self.elastic_search_primary = elastic_search_primary
324
+ if exchange is not None:
325
+ self.exchange = exchange
326
+ if case_uploader is not None:
327
+ self.case_uploader = case_uploader
328
+ if exchange_admin is not None:
329
+ self.exchange_admin = exchange_admin
330
+ if external_routing is not None:
331
+ self.external_routing = external_routing
332
+ if gear_access is not None:
333
+ self.gear_access = gear_access
334
+ if google_analytics is not None:
335
+ self.google_analytics = google_analytics
336
+ if healthcare_api is not None:
337
+ self.healthcare_api = healthcare_api
338
+ if job_ask is not None:
339
+ self.job_ask = job_ask
340
+ if job_prioritization is not None:
341
+ self.job_prioritization = job_prioritization
342
+ if job_tickets is not None:
343
+ self.job_tickets = job_tickets
344
+ if jupyter_integration is not None:
345
+ self.jupyter_integration = jupyter_integration
346
+ if jupyterhub_external_storage is not None:
347
+ self.jupyterhub_external_storage = jupyterhub_external_storage
348
+ if ldap_sync is not None:
349
+ self.ldap_sync = ldap_sync
350
+ if multifactor_auth is not None:
351
+ self.multifactor_auth = multifactor_auth
352
+ if multipart_signed_url is not None:
353
+ self.multipart_signed_url = multipart_signed_url
354
+ if multiproject is not None:
355
+ self.multiproject = multiproject
356
+ if ohif_multi_subject_view is not None:
357
+ self.ohif_multi_subject_view = ohif_multi_subject_view
358
+ if ohif_meteor is not None:
359
+ self.ohif_meteor = ohif_meteor
360
+ if ohif_react is not None:
361
+ self.ohif_react = ohif_react
362
+ if ohif_slice_order is not None:
363
+ self.ohif_slice_order = ohif_slice_order
364
+ if ohif_v2_adhoc_indexing is not None:
365
+ self.ohif_v2_adhoc_indexing = ohif_v2_adhoc_indexing
366
+ if ohif_v3 is not None:
367
+ self.ohif_v3 = ohif_v3
368
+ if ohif_v3_default_app is not None:
369
+ self.ohif_v3_default_app = ohif_v3_default_app
370
+ if ohif_v3_readonly is not None:
371
+ self.ohif_v3_readonly = ohif_v3_readonly
372
+ if project_export is not None:
373
+ self.project_export = project_export
374
+ if project_import is not None:
375
+ self.project_import = project_import
376
+ if project_list_uses_stats is not None:
377
+ self.project_list_uses_stats = project_list_uses_stats
378
+ if project_locking is not None:
379
+ self.project_locking = project_locking
380
+ if reader_tasks is not None:
381
+ self.reader_tasks = reader_tasks
382
+ if rts_sync is not None:
383
+ self.rts_sync = rts_sync
384
+ if sentry_logging is not None:
385
+ self.sentry_logging = sentry_logging
386
+ if session_templates_non_21_cfr is not None:
387
+ self.session_templates_non_21_cfr = session_templates_non_21_cfr
388
+ if shared_projects is not None:
389
+ self.shared_projects = shared_projects
390
+ if signed_url is not None:
391
+ self.signed_url = signed_url
392
+ if study_task_status is not None:
393
+ self.study_task_status = study_task_status
394
+ if tagging is not None:
395
+ self.tagging = tagging
396
+ if tags_in_lists is not None:
397
+ self.tags_in_lists = tags_in_lists
398
+ if task_manager_data_views is not None:
399
+ self.task_manager_data_views = task_manager_data_views
400
+ if transform_search_fields is not None:
401
+ self.transform_search_fields = transform_search_fields
402
+ if unsafe_login is not None:
403
+ self.unsafe_login = unsafe_login
404
+ if url_access_apps is not None:
405
+ self.url_access_apps = url_access_apps
406
+ if userpilot is not None:
407
+ self.userpilot = userpilot
408
+ if validate_classification is not None:
409
+ self.validate_classification = validate_classification
410
+ if engine_validate_classification is not None:
411
+ self.engine_validate_classification = engine_validate_classification
412
+ if virus_scan is not None:
413
+ self.virus_scan = virus_scan
414
+ if legacy_dicom_uploader is not None:
415
+ self.legacy_dicom_uploader = legacy_dicom_uploader
416
+ if tasks_refactor is not None:
417
+ self.tasks_refactor = tasks_refactor
418
+
419
+ @property
420
+ def api_enabled_gear_rules(self):
421
+ """Gets the api_enabled_gear_rules of this Features.
422
+
423
+
424
+ :return: The api_enabled_gear_rules of this Features.
425
+ :rtype: bool
426
+ """
427
+ return self._api_enabled_gear_rules
428
+
429
+ @api_enabled_gear_rules.setter
430
+ def api_enabled_gear_rules(self, api_enabled_gear_rules):
431
+ """Sets the api_enabled_gear_rules of this Features.
432
+
433
+
434
+ :param api_enabled_gear_rules: The api_enabled_gear_rules of this Features. # noqa: E501
435
+ :type: bool
436
+ """
437
+
438
+ self._api_enabled_gear_rules = api_enabled_gear_rules
439
+
440
+ @property
441
+ def auth0(self):
442
+ """Gets the auth0 of this Features.
443
+
444
+
445
+ :return: The auth0 of this Features.
446
+ :rtype: bool
447
+ """
448
+ return self._auth0
449
+
450
+ @auth0.setter
451
+ def auth0(self, auth0):
452
+ """Sets the auth0 of this Features.
453
+
454
+
455
+ :param auth0: The auth0 of this Features. # noqa: E501
456
+ :type: bool
457
+ """
458
+
459
+ self._auth0 = auth0
460
+
461
+ @property
462
+ def audit_trail(self):
463
+ """Gets the audit_trail of this Features.
464
+
465
+
466
+ :return: The audit_trail of this Features.
467
+ :rtype: bool
468
+ """
469
+ return self._audit_trail
470
+
471
+ @audit_trail.setter
472
+ def audit_trail(self, audit_trail):
473
+ """Sets the audit_trail of this Features.
474
+
475
+
476
+ :param audit_trail: The audit_trail of this Features. # noqa: E501
477
+ :type: bool
478
+ """
479
+
480
+ self._audit_trail = audit_trail
481
+
482
+ @property
483
+ def azureml_integration(self):
484
+ """Gets the azureml_integration of this Features.
485
+
486
+
487
+ :return: The azureml_integration of this Features.
488
+ :rtype: bool
489
+ """
490
+ return self._azureml_integration
491
+
492
+ @azureml_integration.setter
493
+ def azureml_integration(self, azureml_integration):
494
+ """Sets the azureml_integration of this Features.
495
+
496
+
497
+ :param azureml_integration: The azureml_integration of this Features. # noqa: E501
498
+ :type: bool
499
+ """
500
+
501
+ self._azureml_integration = azureml_integration
502
+
503
+ @property
504
+ def cold_job_logs(self):
505
+ """Gets the cold_job_logs of this Features.
506
+
507
+
508
+ :return: The cold_job_logs of this Features.
509
+ :rtype: bool
510
+ """
511
+ return self._cold_job_logs
512
+
513
+ @cold_job_logs.setter
514
+ def cold_job_logs(self, cold_job_logs):
515
+ """Sets the cold_job_logs of this Features.
516
+
517
+
518
+ :param cold_job_logs: The cold_job_logs of this Features. # noqa: E501
519
+ :type: bool
520
+ """
521
+
522
+ self._cold_job_logs = cold_job_logs
523
+
524
+ @property
525
+ def collections(self):
526
+ """Gets the collections of this Features.
527
+
528
+
529
+ :return: The collections of this Features.
530
+ :rtype: bool
531
+ """
532
+ return self._collections
533
+
534
+ @collections.setter
535
+ def collections(self, collections):
536
+ """Sets the collections of this Features.
537
+
538
+
539
+ :param collections: The collections of this Features. # noqa: E501
540
+ :type: bool
541
+ """
542
+
543
+ self._collections = collections
544
+
545
+ @property
546
+ def copy_by_reference(self):
547
+ """Gets the copy_by_reference of this Features.
548
+
549
+
550
+ :return: The copy_by_reference of this Features.
551
+ :rtype: bool
552
+ """
553
+ return self._copy_by_reference
554
+
555
+ @copy_by_reference.setter
556
+ def copy_by_reference(self, copy_by_reference):
557
+ """Sets the copy_by_reference of this Features.
558
+
559
+
560
+ :param copy_by_reference: The copy_by_reference of this Features. # noqa: E501
561
+ :type: bool
562
+ """
563
+
564
+ self._copy_by_reference = copy_by_reference
565
+
566
+ @property
567
+ def core_api(self):
568
+ """Gets the core_api of this Features.
569
+
570
+
571
+ :return: The core_api of this Features.
572
+ :rtype: bool
573
+ """
574
+ return self._core_api
575
+
576
+ @core_api.setter
577
+ def core_api(self, core_api):
578
+ """Sets the core_api of this Features.
579
+
580
+
581
+ :param core_api: The core_api of this Features. # noqa: E501
582
+ :type: bool
583
+ """
584
+
585
+ self._core_api = core_api
586
+
587
+ @property
588
+ def crawler(self):
589
+ """Gets the crawler of this Features.
590
+
591
+
592
+ :return: The crawler of this Features.
593
+ :rtype: bool
594
+ """
595
+ return self._crawler
596
+
597
+ @crawler.setter
598
+ def crawler(self, crawler):
599
+ """Sets the crawler of this Features.
600
+
601
+
602
+ :param crawler: The crawler of this Features. # noqa: E501
603
+ :type: bool
604
+ """
605
+
606
+ self._crawler = crawler
607
+
608
+ @property
609
+ def cvat(self):
610
+ """Gets the cvat of this Features.
611
+
612
+
613
+ :return: The cvat of this Features.
614
+ :rtype: bool
615
+ """
616
+ return self._cvat
617
+
618
+ @cvat.setter
619
+ def cvat(self, cvat):
620
+ """Sets the cvat of this Features.
621
+
622
+
623
+ :param cvat: The cvat of this Features. # noqa: E501
624
+ :type: bool
625
+ """
626
+
627
+ self._cvat = cvat
628
+
629
+ @property
630
+ def data_views_non_21_cfr(self):
631
+ """Gets the data_views_non_21_cfr of this Features.
632
+
633
+
634
+ :return: The data_views_non_21_cfr of this Features.
635
+ :rtype: bool
636
+ """
637
+ return self._data_views_non_21_cfr
638
+
639
+ @data_views_non_21_cfr.setter
640
+ def data_views_non_21_cfr(self, data_views_non_21_cfr):
641
+ """Sets the data_views_non_21_cfr of this Features.
642
+
643
+
644
+ :param data_views_non_21_cfr: The data_views_non_21_cfr of this Features. # noqa: E501
645
+ :type: bool
646
+ """
647
+
648
+ self._data_views_non_21_cfr = data_views_non_21_cfr
649
+
650
+ @property
651
+ def default_viewer_apps(self):
652
+ """Gets the default_viewer_apps of this Features.
653
+
654
+
655
+ :return: The default_viewer_apps of this Features.
656
+ :rtype: bool
657
+ """
658
+ return self._default_viewer_apps
659
+
660
+ @default_viewer_apps.setter
661
+ def default_viewer_apps(self, default_viewer_apps):
662
+ """Sets the default_viewer_apps of this Features.
663
+
664
+
665
+ :param default_viewer_apps: The default_viewer_apps of this Features. # noqa: E501
666
+ :type: bool
667
+ """
668
+
669
+ self._default_viewer_apps = default_viewer_apps
670
+
671
+ @property
672
+ def deid_log(self):
673
+ """Gets the deid_log of this Features.
674
+
675
+
676
+ :return: The deid_log of this Features.
677
+ :rtype: bool
678
+ """
679
+ return self._deid_log
680
+
681
+ @deid_log.setter
682
+ def deid_log(self, deid_log):
683
+ """Sets the deid_log of this Features.
684
+
685
+
686
+ :param deid_log: The deid_log of this Features. # noqa: E501
687
+ :type: bool
688
+ """
689
+
690
+ self._deid_log = deid_log
691
+
692
+ @property
693
+ def deid_profile(self):
694
+ """Gets the deid_profile of this Features.
695
+
696
+
697
+ :return: The deid_profile of this Features.
698
+ :rtype: bool
699
+ """
700
+ return self._deid_profile
701
+
702
+ @deid_profile.setter
703
+ def deid_profile(self, deid_profile):
704
+ """Sets the deid_profile of this Features.
705
+
706
+
707
+ :param deid_profile: The deid_profile of this Features. # noqa: E501
708
+ :type: bool
709
+ """
710
+
711
+ self._deid_profile = deid_profile
712
+
713
+ @property
714
+ def dimse(self):
715
+ """Gets the dimse of this Features.
716
+
717
+
718
+ :return: The dimse of this Features.
719
+ :rtype: bool
720
+ """
721
+ return self._dimse
722
+
723
+ @dimse.setter
724
+ def dimse(self, dimse):
725
+ """Sets the dimse of this Features.
726
+
727
+
728
+ :param dimse: The dimse of this Features. # noqa: E501
729
+ :type: bool
730
+ """
731
+
732
+ self._dimse = dimse
733
+
734
+ @property
735
+ def elastic_search_primary(self):
736
+ """Gets the elastic_search_primary of this Features.
737
+
738
+
739
+ :return: The elastic_search_primary of this Features.
740
+ :rtype: bool
741
+ """
742
+ return self._elastic_search_primary
743
+
744
+ @elastic_search_primary.setter
745
+ def elastic_search_primary(self, elastic_search_primary):
746
+ """Sets the elastic_search_primary of this Features.
747
+
748
+
749
+ :param elastic_search_primary: The elastic_search_primary of this Features. # noqa: E501
750
+ :type: bool
751
+ """
752
+
753
+ self._elastic_search_primary = elastic_search_primary
754
+
755
+ @property
756
+ def exchange(self):
757
+ """Gets the exchange of this Features.
758
+
759
+
760
+ :return: The exchange of this Features.
761
+ :rtype: bool
762
+ """
763
+ return self._exchange
764
+
765
+ @exchange.setter
766
+ def exchange(self, exchange):
767
+ """Sets the exchange of this Features.
768
+
769
+
770
+ :param exchange: The exchange of this Features. # noqa: E501
771
+ :type: bool
772
+ """
773
+
774
+ self._exchange = exchange
775
+
776
+ @property
777
+ def case_uploader(self):
778
+ """Gets the case_uploader of this Features.
779
+
780
+
781
+ :return: The case_uploader of this Features.
782
+ :rtype: bool
783
+ """
784
+ return self._case_uploader
785
+
786
+ @case_uploader.setter
787
+ def case_uploader(self, case_uploader):
788
+ """Sets the case_uploader of this Features.
789
+
790
+
791
+ :param case_uploader: The case_uploader of this Features. # noqa: E501
792
+ :type: bool
793
+ """
794
+
795
+ self._case_uploader = case_uploader
796
+
797
+ @property
798
+ def exchange_admin(self):
799
+ """Gets the exchange_admin of this Features.
800
+
801
+
802
+ :return: The exchange_admin of this Features.
803
+ :rtype: bool
804
+ """
805
+ return self._exchange_admin
806
+
807
+ @exchange_admin.setter
808
+ def exchange_admin(self, exchange_admin):
809
+ """Sets the exchange_admin of this Features.
810
+
811
+
812
+ :param exchange_admin: The exchange_admin of this Features. # noqa: E501
813
+ :type: bool
814
+ """
815
+
816
+ self._exchange_admin = exchange_admin
817
+
818
+ @property
819
+ def external_routing(self):
820
+ """Gets the external_routing of this Features.
821
+
822
+
823
+ :return: The external_routing of this Features.
824
+ :rtype: bool
825
+ """
826
+ return self._external_routing
827
+
828
+ @external_routing.setter
829
+ def external_routing(self, external_routing):
830
+ """Sets the external_routing of this Features.
831
+
832
+
833
+ :param external_routing: The external_routing of this Features. # noqa: E501
834
+ :type: bool
835
+ """
836
+
837
+ self._external_routing = external_routing
838
+
839
+ @property
840
+ def gear_access(self):
841
+ """Gets the gear_access of this Features.
842
+
843
+
844
+ :return: The gear_access of this Features.
845
+ :rtype: bool
846
+ """
847
+ return self._gear_access
848
+
849
+ @gear_access.setter
850
+ def gear_access(self, gear_access):
851
+ """Sets the gear_access of this Features.
852
+
853
+
854
+ :param gear_access: The gear_access of this Features. # noqa: E501
855
+ :type: bool
856
+ """
857
+
858
+ self._gear_access = gear_access
859
+
860
+ @property
861
+ def google_analytics(self):
862
+ """Gets the google_analytics of this Features.
863
+
864
+
865
+ :return: The google_analytics of this Features.
866
+ :rtype: bool
867
+ """
868
+ return self._google_analytics
869
+
870
+ @google_analytics.setter
871
+ def google_analytics(self, google_analytics):
872
+ """Sets the google_analytics of this Features.
873
+
874
+
875
+ :param google_analytics: The google_analytics of this Features. # noqa: E501
876
+ :type: bool
877
+ """
878
+
879
+ self._google_analytics = google_analytics
880
+
881
+ @property
882
+ def healthcare_api(self):
883
+ """Gets the healthcare_api of this Features.
884
+
885
+
886
+ :return: The healthcare_api of this Features.
887
+ :rtype: bool
888
+ """
889
+ return self._healthcare_api
890
+
891
+ @healthcare_api.setter
892
+ def healthcare_api(self, healthcare_api):
893
+ """Sets the healthcare_api of this Features.
894
+
895
+
896
+ :param healthcare_api: The healthcare_api of this Features. # noqa: E501
897
+ :type: bool
898
+ """
899
+
900
+ self._healthcare_api = healthcare_api
901
+
902
+ @property
903
+ def job_ask(self):
904
+ """Gets the job_ask of this Features.
905
+
906
+
907
+ :return: The job_ask of this Features.
908
+ :rtype: bool
909
+ """
910
+ return self._job_ask
911
+
912
+ @job_ask.setter
913
+ def job_ask(self, job_ask):
914
+ """Sets the job_ask of this Features.
915
+
916
+
917
+ :param job_ask: The job_ask of this Features. # noqa: E501
918
+ :type: bool
919
+ """
920
+
921
+ self._job_ask = job_ask
922
+
923
+ @property
924
+ def job_prioritization(self):
925
+ """Gets the job_prioritization of this Features.
926
+
927
+
928
+ :return: The job_prioritization of this Features.
929
+ :rtype: bool
930
+ """
931
+ return self._job_prioritization
932
+
933
+ @job_prioritization.setter
934
+ def job_prioritization(self, job_prioritization):
935
+ """Sets the job_prioritization of this Features.
936
+
937
+
938
+ :param job_prioritization: The job_prioritization of this Features. # noqa: E501
939
+ :type: bool
940
+ """
941
+
942
+ self._job_prioritization = job_prioritization
943
+
944
+ @property
945
+ def job_tickets(self):
946
+ """Gets the job_tickets of this Features.
947
+
948
+
949
+ :return: The job_tickets of this Features.
950
+ :rtype: bool
951
+ """
952
+ return self._job_tickets
953
+
954
+ @job_tickets.setter
955
+ def job_tickets(self, job_tickets):
956
+ """Sets the job_tickets of this Features.
957
+
958
+
959
+ :param job_tickets: The job_tickets of this Features. # noqa: E501
960
+ :type: bool
961
+ """
962
+
963
+ self._job_tickets = job_tickets
964
+
965
+ @property
966
+ def jupyter_integration(self):
967
+ """Gets the jupyter_integration of this Features.
968
+
969
+
970
+ :return: The jupyter_integration of this Features.
971
+ :rtype: bool
972
+ """
973
+ return self._jupyter_integration
974
+
975
+ @jupyter_integration.setter
976
+ def jupyter_integration(self, jupyter_integration):
977
+ """Sets the jupyter_integration of this Features.
978
+
979
+
980
+ :param jupyter_integration: The jupyter_integration of this Features. # noqa: E501
981
+ :type: bool
982
+ """
983
+
984
+ self._jupyter_integration = jupyter_integration
985
+
986
+ @property
987
+ def jupyterhub_external_storage(self):
988
+ """Gets the jupyterhub_external_storage of this Features.
989
+
990
+
991
+ :return: The jupyterhub_external_storage of this Features.
992
+ :rtype: bool
993
+ """
994
+ return self._jupyterhub_external_storage
995
+
996
+ @jupyterhub_external_storage.setter
997
+ def jupyterhub_external_storage(self, jupyterhub_external_storage):
998
+ """Sets the jupyterhub_external_storage of this Features.
999
+
1000
+
1001
+ :param jupyterhub_external_storage: The jupyterhub_external_storage of this Features. # noqa: E501
1002
+ :type: bool
1003
+ """
1004
+
1005
+ self._jupyterhub_external_storage = jupyterhub_external_storage
1006
+
1007
+ @property
1008
+ def ldap_sync(self):
1009
+ """Gets the ldap_sync of this Features.
1010
+
1011
+
1012
+ :return: The ldap_sync of this Features.
1013
+ :rtype: bool
1014
+ """
1015
+ return self._ldap_sync
1016
+
1017
+ @ldap_sync.setter
1018
+ def ldap_sync(self, ldap_sync):
1019
+ """Sets the ldap_sync of this Features.
1020
+
1021
+
1022
+ :param ldap_sync: The ldap_sync of this Features. # noqa: E501
1023
+ :type: bool
1024
+ """
1025
+
1026
+ self._ldap_sync = ldap_sync
1027
+
1028
+ @property
1029
+ def multifactor_auth(self):
1030
+ """Gets the multifactor_auth of this Features.
1031
+
1032
+
1033
+ :return: The multifactor_auth of this Features.
1034
+ :rtype: bool
1035
+ """
1036
+ return self._multifactor_auth
1037
+
1038
+ @multifactor_auth.setter
1039
+ def multifactor_auth(self, multifactor_auth):
1040
+ """Sets the multifactor_auth of this Features.
1041
+
1042
+
1043
+ :param multifactor_auth: The multifactor_auth of this Features. # noqa: E501
1044
+ :type: bool
1045
+ """
1046
+
1047
+ self._multifactor_auth = multifactor_auth
1048
+
1049
+ @property
1050
+ def multipart_signed_url(self):
1051
+ """Gets the multipart_signed_url of this Features.
1052
+
1053
+
1054
+ :return: The multipart_signed_url of this Features.
1055
+ :rtype: bool
1056
+ """
1057
+ return self._multipart_signed_url
1058
+
1059
+ @multipart_signed_url.setter
1060
+ def multipart_signed_url(self, multipart_signed_url):
1061
+ """Sets the multipart_signed_url of this Features.
1062
+
1063
+
1064
+ :param multipart_signed_url: The multipart_signed_url of this Features. # noqa: E501
1065
+ :type: bool
1066
+ """
1067
+
1068
+ self._multipart_signed_url = multipart_signed_url
1069
+
1070
+ @property
1071
+ def multiproject(self):
1072
+ """Gets the multiproject of this Features.
1073
+
1074
+
1075
+ :return: The multiproject of this Features.
1076
+ :rtype: bool
1077
+ """
1078
+ return self._multiproject
1079
+
1080
+ @multiproject.setter
1081
+ def multiproject(self, multiproject):
1082
+ """Sets the multiproject of this Features.
1083
+
1084
+
1085
+ :param multiproject: The multiproject of this Features. # noqa: E501
1086
+ :type: bool
1087
+ """
1088
+
1089
+ self._multiproject = multiproject
1090
+
1091
+ @property
1092
+ def ohif_multi_subject_view(self):
1093
+ """Gets the ohif_multi_subject_view of this Features.
1094
+
1095
+
1096
+ :return: The ohif_multi_subject_view of this Features.
1097
+ :rtype: bool
1098
+ """
1099
+ return self._ohif_multi_subject_view
1100
+
1101
+ @ohif_multi_subject_view.setter
1102
+ def ohif_multi_subject_view(self, ohif_multi_subject_view):
1103
+ """Sets the ohif_multi_subject_view of this Features.
1104
+
1105
+
1106
+ :param ohif_multi_subject_view: The ohif_multi_subject_view of this Features. # noqa: E501
1107
+ :type: bool
1108
+ """
1109
+
1110
+ self._ohif_multi_subject_view = ohif_multi_subject_view
1111
+
1112
+ @property
1113
+ def ohif_meteor(self):
1114
+ """Gets the ohif_meteor of this Features.
1115
+
1116
+
1117
+ :return: The ohif_meteor of this Features.
1118
+ :rtype: bool
1119
+ """
1120
+ return self._ohif_meteor
1121
+
1122
+ @ohif_meteor.setter
1123
+ def ohif_meteor(self, ohif_meteor):
1124
+ """Sets the ohif_meteor of this Features.
1125
+
1126
+
1127
+ :param ohif_meteor: The ohif_meteor of this Features. # noqa: E501
1128
+ :type: bool
1129
+ """
1130
+
1131
+ self._ohif_meteor = ohif_meteor
1132
+
1133
+ @property
1134
+ def ohif_react(self):
1135
+ """Gets the ohif_react of this Features.
1136
+
1137
+
1138
+ :return: The ohif_react of this Features.
1139
+ :rtype: bool
1140
+ """
1141
+ return self._ohif_react
1142
+
1143
+ @ohif_react.setter
1144
+ def ohif_react(self, ohif_react):
1145
+ """Sets the ohif_react of this Features.
1146
+
1147
+
1148
+ :param ohif_react: The ohif_react of this Features. # noqa: E501
1149
+ :type: bool
1150
+ """
1151
+
1152
+ self._ohif_react = ohif_react
1153
+
1154
+ @property
1155
+ def ohif_slice_order(self):
1156
+ """Gets the ohif_slice_order of this Features.
1157
+
1158
+
1159
+ :return: The ohif_slice_order of this Features.
1160
+ :rtype: str
1161
+ """
1162
+ return self._ohif_slice_order
1163
+
1164
+ @ohif_slice_order.setter
1165
+ def ohif_slice_order(self, ohif_slice_order):
1166
+ """Sets the ohif_slice_order of this Features.
1167
+
1168
+
1169
+ :param ohif_slice_order: The ohif_slice_order of this Features. # noqa: E501
1170
+ :type: str
1171
+ """
1172
+
1173
+ self._ohif_slice_order = ohif_slice_order
1174
+
1175
+ @property
1176
+ def ohif_v2_adhoc_indexing(self):
1177
+ """Gets the ohif_v2_adhoc_indexing of this Features.
1178
+
1179
+
1180
+ :return: The ohif_v2_adhoc_indexing of this Features.
1181
+ :rtype: bool
1182
+ """
1183
+ return self._ohif_v2_adhoc_indexing
1184
+
1185
+ @ohif_v2_adhoc_indexing.setter
1186
+ def ohif_v2_adhoc_indexing(self, ohif_v2_adhoc_indexing):
1187
+ """Sets the ohif_v2_adhoc_indexing of this Features.
1188
+
1189
+
1190
+ :param ohif_v2_adhoc_indexing: The ohif_v2_adhoc_indexing of this Features. # noqa: E501
1191
+ :type: bool
1192
+ """
1193
+
1194
+ self._ohif_v2_adhoc_indexing = ohif_v2_adhoc_indexing
1195
+
1196
+ @property
1197
+ def ohif_v3(self):
1198
+ """Gets the ohif_v3 of this Features.
1199
+
1200
+
1201
+ :return: The ohif_v3 of this Features.
1202
+ :rtype: bool
1203
+ """
1204
+ return self._ohif_v3
1205
+
1206
+ @ohif_v3.setter
1207
+ def ohif_v3(self, ohif_v3):
1208
+ """Sets the ohif_v3 of this Features.
1209
+
1210
+
1211
+ :param ohif_v3: The ohif_v3 of this Features. # noqa: E501
1212
+ :type: bool
1213
+ """
1214
+
1215
+ self._ohif_v3 = ohif_v3
1216
+
1217
+ @property
1218
+ def ohif_v3_default_app(self):
1219
+ """Gets the ohif_v3_default_app of this Features.
1220
+
1221
+
1222
+ :return: The ohif_v3_default_app of this Features.
1223
+ :rtype: bool
1224
+ """
1225
+ return self._ohif_v3_default_app
1226
+
1227
+ @ohif_v3_default_app.setter
1228
+ def ohif_v3_default_app(self, ohif_v3_default_app):
1229
+ """Sets the ohif_v3_default_app of this Features.
1230
+
1231
+
1232
+ :param ohif_v3_default_app: The ohif_v3_default_app of this Features. # noqa: E501
1233
+ :type: bool
1234
+ """
1235
+
1236
+ self._ohif_v3_default_app = ohif_v3_default_app
1237
+
1238
+ @property
1239
+ def ohif_v3_readonly(self):
1240
+ """Gets the ohif_v3_readonly of this Features.
1241
+
1242
+
1243
+ :return: The ohif_v3_readonly of this Features.
1244
+ :rtype: bool
1245
+ """
1246
+ return self._ohif_v3_readonly
1247
+
1248
+ @ohif_v3_readonly.setter
1249
+ def ohif_v3_readonly(self, ohif_v3_readonly):
1250
+ """Sets the ohif_v3_readonly of this Features.
1251
+
1252
+
1253
+ :param ohif_v3_readonly: The ohif_v3_readonly of this Features. # noqa: E501
1254
+ :type: bool
1255
+ """
1256
+
1257
+ self._ohif_v3_readonly = ohif_v3_readonly
1258
+
1259
+ @property
1260
+ def project_export(self):
1261
+ """Gets the project_export of this Features.
1262
+
1263
+
1264
+ :return: The project_export of this Features.
1265
+ :rtype: bool
1266
+ """
1267
+ return self._project_export
1268
+
1269
+ @project_export.setter
1270
+ def project_export(self, project_export):
1271
+ """Sets the project_export of this Features.
1272
+
1273
+
1274
+ :param project_export: The project_export of this Features. # noqa: E501
1275
+ :type: bool
1276
+ """
1277
+
1278
+ self._project_export = project_export
1279
+
1280
+ @property
1281
+ def project_import(self):
1282
+ """Gets the project_import of this Features.
1283
+
1284
+
1285
+ :return: The project_import of this Features.
1286
+ :rtype: bool
1287
+ """
1288
+ return self._project_import
1289
+
1290
+ @project_import.setter
1291
+ def project_import(self, project_import):
1292
+ """Sets the project_import of this Features.
1293
+
1294
+
1295
+ :param project_import: The project_import of this Features. # noqa: E501
1296
+ :type: bool
1297
+ """
1298
+
1299
+ self._project_import = project_import
1300
+
1301
+ @property
1302
+ def project_list_uses_stats(self):
1303
+ """Gets the project_list_uses_stats of this Features.
1304
+
1305
+
1306
+ :return: The project_list_uses_stats of this Features.
1307
+ :rtype: bool
1308
+ """
1309
+ return self._project_list_uses_stats
1310
+
1311
+ @project_list_uses_stats.setter
1312
+ def project_list_uses_stats(self, project_list_uses_stats):
1313
+ """Sets the project_list_uses_stats of this Features.
1314
+
1315
+
1316
+ :param project_list_uses_stats: The project_list_uses_stats of this Features. # noqa: E501
1317
+ :type: bool
1318
+ """
1319
+
1320
+ self._project_list_uses_stats = project_list_uses_stats
1321
+
1322
+ @property
1323
+ def project_locking(self):
1324
+ """Gets the project_locking of this Features.
1325
+
1326
+
1327
+ :return: The project_locking of this Features.
1328
+ :rtype: bool
1329
+ """
1330
+ return self._project_locking
1331
+
1332
+ @project_locking.setter
1333
+ def project_locking(self, project_locking):
1334
+ """Sets the project_locking of this Features.
1335
+
1336
+
1337
+ :param project_locking: The project_locking of this Features. # noqa: E501
1338
+ :type: bool
1339
+ """
1340
+
1341
+ self._project_locking = project_locking
1342
+
1343
+ @property
1344
+ def reader_tasks(self):
1345
+ """Gets the reader_tasks of this Features.
1346
+
1347
+
1348
+ :return: The reader_tasks of this Features.
1349
+ :rtype: bool
1350
+ """
1351
+ return self._reader_tasks
1352
+
1353
+ @reader_tasks.setter
1354
+ def reader_tasks(self, reader_tasks):
1355
+ """Sets the reader_tasks of this Features.
1356
+
1357
+
1358
+ :param reader_tasks: The reader_tasks of this Features. # noqa: E501
1359
+ :type: bool
1360
+ """
1361
+
1362
+ self._reader_tasks = reader_tasks
1363
+
1364
+ @property
1365
+ def rts_sync(self):
1366
+ """Gets the rts_sync of this Features.
1367
+
1368
+
1369
+ :return: The rts_sync of this Features.
1370
+ :rtype: bool
1371
+ """
1372
+ return self._rts_sync
1373
+
1374
+ @rts_sync.setter
1375
+ def rts_sync(self, rts_sync):
1376
+ """Sets the rts_sync of this Features.
1377
+
1378
+
1379
+ :param rts_sync: The rts_sync of this Features. # noqa: E501
1380
+ :type: bool
1381
+ """
1382
+
1383
+ self._rts_sync = rts_sync
1384
+
1385
+ @property
1386
+ def sentry_logging(self):
1387
+ """Gets the sentry_logging of this Features.
1388
+
1389
+
1390
+ :return: The sentry_logging of this Features.
1391
+ :rtype: bool
1392
+ """
1393
+ return self._sentry_logging
1394
+
1395
+ @sentry_logging.setter
1396
+ def sentry_logging(self, sentry_logging):
1397
+ """Sets the sentry_logging of this Features.
1398
+
1399
+
1400
+ :param sentry_logging: The sentry_logging of this Features. # noqa: E501
1401
+ :type: bool
1402
+ """
1403
+
1404
+ self._sentry_logging = sentry_logging
1405
+
1406
+ @property
1407
+ def session_templates_non_21_cfr(self):
1408
+ """Gets the session_templates_non_21_cfr of this Features.
1409
+
1410
+
1411
+ :return: The session_templates_non_21_cfr of this Features.
1412
+ :rtype: bool
1413
+ """
1414
+ return self._session_templates_non_21_cfr
1415
+
1416
+ @session_templates_non_21_cfr.setter
1417
+ def session_templates_non_21_cfr(self, session_templates_non_21_cfr):
1418
+ """Sets the session_templates_non_21_cfr of this Features.
1419
+
1420
+
1421
+ :param session_templates_non_21_cfr: The session_templates_non_21_cfr of this Features. # noqa: E501
1422
+ :type: bool
1423
+ """
1424
+
1425
+ self._session_templates_non_21_cfr = session_templates_non_21_cfr
1426
+
1427
+ @property
1428
+ def shared_projects(self):
1429
+ """Gets the shared_projects of this Features.
1430
+
1431
+
1432
+ :return: The shared_projects of this Features.
1433
+ :rtype: bool
1434
+ """
1435
+ return self._shared_projects
1436
+
1437
+ @shared_projects.setter
1438
+ def shared_projects(self, shared_projects):
1439
+ """Sets the shared_projects of this Features.
1440
+
1441
+
1442
+ :param shared_projects: The shared_projects of this Features. # noqa: E501
1443
+ :type: bool
1444
+ """
1445
+
1446
+ self._shared_projects = shared_projects
1447
+
1448
+ @property
1449
+ def signed_url(self):
1450
+ """Gets the signed_url of this Features.
1451
+
1452
+
1453
+ :return: The signed_url of this Features.
1454
+ :rtype: bool
1455
+ """
1456
+ return self._signed_url
1457
+
1458
+ @signed_url.setter
1459
+ def signed_url(self, signed_url):
1460
+ """Sets the signed_url of this Features.
1461
+
1462
+
1463
+ :param signed_url: The signed_url of this Features. # noqa: E501
1464
+ :type: bool
1465
+ """
1466
+
1467
+ self._signed_url = signed_url
1468
+
1469
+ @property
1470
+ def study_task_status(self):
1471
+ """Gets the study_task_status of this Features.
1472
+
1473
+
1474
+ :return: The study_task_status of this Features.
1475
+ :rtype: bool
1476
+ """
1477
+ return self._study_task_status
1478
+
1479
+ @study_task_status.setter
1480
+ def study_task_status(self, study_task_status):
1481
+ """Sets the study_task_status of this Features.
1482
+
1483
+
1484
+ :param study_task_status: The study_task_status of this Features. # noqa: E501
1485
+ :type: bool
1486
+ """
1487
+
1488
+ self._study_task_status = study_task_status
1489
+
1490
+ @property
1491
+ def tagging(self):
1492
+ """Gets the tagging of this Features.
1493
+
1494
+
1495
+ :return: The tagging of this Features.
1496
+ :rtype: bool
1497
+ """
1498
+ return self._tagging
1499
+
1500
+ @tagging.setter
1501
+ def tagging(self, tagging):
1502
+ """Sets the tagging of this Features.
1503
+
1504
+
1505
+ :param tagging: The tagging of this Features. # noqa: E501
1506
+ :type: bool
1507
+ """
1508
+
1509
+ self._tagging = tagging
1510
+
1511
+ @property
1512
+ def tags_in_lists(self):
1513
+ """Gets the tags_in_lists of this Features.
1514
+
1515
+
1516
+ :return: The tags_in_lists of this Features.
1517
+ :rtype: bool
1518
+ """
1519
+ return self._tags_in_lists
1520
+
1521
+ @tags_in_lists.setter
1522
+ def tags_in_lists(self, tags_in_lists):
1523
+ """Sets the tags_in_lists of this Features.
1524
+
1525
+
1526
+ :param tags_in_lists: The tags_in_lists of this Features. # noqa: E501
1527
+ :type: bool
1528
+ """
1529
+
1530
+ self._tags_in_lists = tags_in_lists
1531
+
1532
+ @property
1533
+ def task_manager_data_views(self):
1534
+ """Gets the task_manager_data_views of this Features.
1535
+
1536
+
1537
+ :return: The task_manager_data_views of this Features.
1538
+ :rtype: bool
1539
+ """
1540
+ return self._task_manager_data_views
1541
+
1542
+ @task_manager_data_views.setter
1543
+ def task_manager_data_views(self, task_manager_data_views):
1544
+ """Sets the task_manager_data_views of this Features.
1545
+
1546
+
1547
+ :param task_manager_data_views: The task_manager_data_views of this Features. # noqa: E501
1548
+ :type: bool
1549
+ """
1550
+
1551
+ self._task_manager_data_views = task_manager_data_views
1552
+
1553
+ @property
1554
+ def transform_search_fields(self):
1555
+ """Gets the transform_search_fields of this Features.
1556
+
1557
+
1558
+ :return: The transform_search_fields of this Features.
1559
+ :rtype: bool
1560
+ """
1561
+ return self._transform_search_fields
1562
+
1563
+ @transform_search_fields.setter
1564
+ def transform_search_fields(self, transform_search_fields):
1565
+ """Sets the transform_search_fields of this Features.
1566
+
1567
+
1568
+ :param transform_search_fields: The transform_search_fields of this Features. # noqa: E501
1569
+ :type: bool
1570
+ """
1571
+
1572
+ self._transform_search_fields = transform_search_fields
1573
+
1574
+ @property
1575
+ def unsafe_login(self):
1576
+ """Gets the unsafe_login of this Features.
1577
+
1578
+
1579
+ :return: The unsafe_login of this Features.
1580
+ :rtype: bool
1581
+ """
1582
+ return self._unsafe_login
1583
+
1584
+ @unsafe_login.setter
1585
+ def unsafe_login(self, unsafe_login):
1586
+ """Sets the unsafe_login of this Features.
1587
+
1588
+
1589
+ :param unsafe_login: The unsafe_login of this Features. # noqa: E501
1590
+ :type: bool
1591
+ """
1592
+
1593
+ self._unsafe_login = unsafe_login
1594
+
1595
+ @property
1596
+ def url_access_apps(self):
1597
+ """Gets the url_access_apps of this Features.
1598
+
1599
+
1600
+ :return: The url_access_apps of this Features.
1601
+ :rtype: bool
1602
+ """
1603
+ return self._url_access_apps
1604
+
1605
+ @url_access_apps.setter
1606
+ def url_access_apps(self, url_access_apps):
1607
+ """Sets the url_access_apps of this Features.
1608
+
1609
+
1610
+ :param url_access_apps: The url_access_apps of this Features. # noqa: E501
1611
+ :type: bool
1612
+ """
1613
+
1614
+ self._url_access_apps = url_access_apps
1615
+
1616
+ @property
1617
+ def userpilot(self):
1618
+ """Gets the userpilot of this Features.
1619
+
1620
+
1621
+ :return: The userpilot of this Features.
1622
+ :rtype: bool
1623
+ """
1624
+ return self._userpilot
1625
+
1626
+ @userpilot.setter
1627
+ def userpilot(self, userpilot):
1628
+ """Sets the userpilot of this Features.
1629
+
1630
+
1631
+ :param userpilot: The userpilot of this Features. # noqa: E501
1632
+ :type: bool
1633
+ """
1634
+
1635
+ self._userpilot = userpilot
1636
+
1637
+ @property
1638
+ def validate_classification(self):
1639
+ """Gets the validate_classification of this Features.
1640
+
1641
+
1642
+ :return: The validate_classification of this Features.
1643
+ :rtype: bool
1644
+ """
1645
+ return self._validate_classification
1646
+
1647
+ @validate_classification.setter
1648
+ def validate_classification(self, validate_classification):
1649
+ """Sets the validate_classification of this Features.
1650
+
1651
+
1652
+ :param validate_classification: The validate_classification of this Features. # noqa: E501
1653
+ :type: bool
1654
+ """
1655
+
1656
+ self._validate_classification = validate_classification
1657
+
1658
+ @property
1659
+ def engine_validate_classification(self):
1660
+ """Gets the engine_validate_classification of this Features.
1661
+
1662
+
1663
+ :return: The engine_validate_classification of this Features.
1664
+ :rtype: bool
1665
+ """
1666
+ return self._engine_validate_classification
1667
+
1668
+ @engine_validate_classification.setter
1669
+ def engine_validate_classification(self, engine_validate_classification):
1670
+ """Sets the engine_validate_classification of this Features.
1671
+
1672
+
1673
+ :param engine_validate_classification: The engine_validate_classification of this Features. # noqa: E501
1674
+ :type: bool
1675
+ """
1676
+
1677
+ self._engine_validate_classification = engine_validate_classification
1678
+
1679
+ @property
1680
+ def virus_scan(self):
1681
+ """Gets the virus_scan of this Features.
1682
+
1683
+
1684
+ :return: The virus_scan of this Features.
1685
+ :rtype: bool
1686
+ """
1687
+ return self._virus_scan
1688
+
1689
+ @virus_scan.setter
1690
+ def virus_scan(self, virus_scan):
1691
+ """Sets the virus_scan of this Features.
1692
+
1693
+
1694
+ :param virus_scan: The virus_scan of this Features. # noqa: E501
1695
+ :type: bool
1696
+ """
1697
+
1698
+ self._virus_scan = virus_scan
1699
+
1700
+ @property
1701
+ def legacy_dicom_uploader(self):
1702
+ """Gets the legacy_dicom_uploader of this Features.
1703
+
1704
+
1705
+ :return: The legacy_dicom_uploader of this Features.
1706
+ :rtype: bool
1707
+ """
1708
+ return self._legacy_dicom_uploader
1709
+
1710
+ @legacy_dicom_uploader.setter
1711
+ def legacy_dicom_uploader(self, legacy_dicom_uploader):
1712
+ """Sets the legacy_dicom_uploader of this Features.
1713
+
1714
+
1715
+ :param legacy_dicom_uploader: The legacy_dicom_uploader of this Features. # noqa: E501
1716
+ :type: bool
1717
+ """
1718
+
1719
+ self._legacy_dicom_uploader = legacy_dicom_uploader
1720
+
1721
+ @property
1722
+ def tasks_refactor(self):
1723
+ """Gets the tasks_refactor of this Features.
1724
+
1725
+
1726
+ :return: The tasks_refactor of this Features.
1727
+ :rtype: bool
1728
+ """
1729
+ return self._tasks_refactor
1730
+
1731
+ @tasks_refactor.setter
1732
+ def tasks_refactor(self, tasks_refactor):
1733
+ """Sets the tasks_refactor of this Features.
1734
+
1735
+
1736
+ :param tasks_refactor: The tasks_refactor of this Features. # noqa: E501
1737
+ :type: bool
1738
+ """
1739
+
1740
+ self._tasks_refactor = tasks_refactor
1741
+
1742
+
1743
+ @staticmethod
1744
+ def positional_to_model(value):
1745
+ """Converts a positional argument to a model value"""
1746
+ return value
1747
+
1748
+ def return_value(self):
1749
+ """Unwraps return value from model"""
1750
+ return self
1751
+
1752
+ def to_dict(self):
1753
+ """Returns the model properties as a dict"""
1754
+ result = {}
1755
+
1756
+ for attr, _ in six.iteritems(self.swagger_types):
1757
+ value = getattr(self, attr)
1758
+ if isinstance(value, list):
1759
+ result[attr] = list(map(
1760
+ lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
1761
+ value
1762
+ ))
1763
+ elif hasattr(value, "to_dict"):
1764
+ result[attr] = value.to_dict()
1765
+ elif isinstance(value, dict):
1766
+ result[attr] = dict(map(
1767
+ lambda item: (item[0], item[1].to_dict())
1768
+ if hasattr(item[1], "to_dict") else item,
1769
+ value.items()
1770
+ ))
1771
+ else:
1772
+ result[attr] = value
1773
+
1774
+ return result
1775
+
1776
+ def to_str(self):
1777
+ """Returns the string representation of the model"""
1778
+ return pprint.pformat(self.to_dict())
1779
+
1780
+ def __repr__(self):
1781
+ """For `print` and `pprint`"""
1782
+ return self.to_str()
1783
+
1784
+ def __eq__(self, other):
1785
+ """Returns true if both objects are equal"""
1786
+ if not isinstance(other, Features):
1787
+ return False
1788
+
1789
+ return self.__dict__ == other.__dict__
1790
+
1791
+ def __ne__(self, other):
1792
+ """Returns true if both objects are not equal"""
1793
+ return not self == other
1794
+
1795
+ # Container emulation
1796
+ def __getitem__(self, key):
1797
+ """Returns the value of key"""
1798
+ key = self._map_key(key)
1799
+ return getattr(self, key)
1800
+
1801
+ def __setitem__(self, key, value):
1802
+ """Sets the value of key"""
1803
+ key = self._map_key(key)
1804
+ setattr(self, key, value)
1805
+
1806
+ def __contains__(self, key):
1807
+ """Checks if the given value is a key in this object"""
1808
+ key = self._map_key(key, raise_on_error=False)
1809
+ return key is not None
1810
+
1811
+ def keys(self):
1812
+ """Returns the list of json properties in the object"""
1813
+ return self.__class__.rattribute_map.keys()
1814
+
1815
+ def values(self):
1816
+ """Returns the list of values in the object"""
1817
+ for key in self.__class__.attribute_map.keys():
1818
+ yield getattr(self, key)
1819
+
1820
+ def items(self):
1821
+ """Returns the list of json property to value mapping"""
1822
+ for key, prop in self.__class__.rattribute_map.items():
1823
+ yield key, getattr(self, prop)
1824
+
1825
+ def get(self, key, default=None):
1826
+ """Get the value of the provided json property, or default"""
1827
+ key = self._map_key(key, raise_on_error=False)
1828
+ if key:
1829
+ return getattr(self, key, default)
1830
+ return default
1831
+
1832
+ def _map_key(self, key, raise_on_error=True):
1833
+ result = self.__class__.rattribute_map.get(key)
1834
+ if result is None:
1835
+ if raise_on_error:
1836
+ raise AttributeError('Invalid attribute name: {}'.format(key))
1837
+ return None
1838
+ return '_' + result