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