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/api/containers_api.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
|
|
|
@@ -37,12 +30,15 @@ class ContainersApi(object):
|
|
|
37
30
|
When query param \"job\" is \"true\", send JSON to create an analysis and job. Otherwise, multipart/form-data to upload files and create an analysis.
|
|
38
31
|
This method makes a synchronous HTTP request by default.
|
|
39
32
|
|
|
40
|
-
:param
|
|
41
|
-
:
|
|
42
|
-
:param
|
|
43
|
-
:
|
|
44
|
-
:param
|
|
45
|
-
:
|
|
33
|
+
:param cid:
|
|
34
|
+
:type cid: str
|
|
35
|
+
:param body:
|
|
36
|
+
:type body: union[AdhocAnalysisInput,JobAnalysisInput]
|
|
37
|
+
:param job: returns job_id instead of analysis.id, defaults to false
|
|
38
|
+
:type job: bool, optional
|
|
39
|
+
:param async_: Perform the request asynchronously
|
|
40
|
+
:type async_: bool, optional
|
|
41
|
+
:rtype: InsertedId
|
|
46
42
|
"""
|
|
47
43
|
ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
|
|
48
44
|
kwargs['_return_http_data_only'] = True
|
|
@@ -66,15 +62,18 @@ class ContainersApi(object):
|
|
|
66
62
|
When query param \"job\" is \"true\", send JSON to create an analysis and job. Otherwise, multipart/form-data to upload files and create an analysis.
|
|
67
63
|
This method makes a synchronous HTTP request by default.
|
|
68
64
|
|
|
69
|
-
:param
|
|
70
|
-
:
|
|
71
|
-
:param
|
|
72
|
-
:
|
|
73
|
-
:param
|
|
74
|
-
:
|
|
65
|
+
:param cid:
|
|
66
|
+
:type cid: str
|
|
67
|
+
:param body:
|
|
68
|
+
:type body: union[AdhocAnalysisInput,JobAnalysisInput]
|
|
69
|
+
:param job: returns job_id instead of analysis.id, defaults to false
|
|
70
|
+
:type job: bool, optional
|
|
71
|
+
:param async_: Perform the request asynchronously
|
|
72
|
+
:type async_: bool, optional
|
|
73
|
+
:rtype: InsertedId
|
|
75
74
|
"""
|
|
76
75
|
|
|
77
|
-
all_params = ['cid','body','job',
|
|
76
|
+
all_params = ['cid','body','job',] # noqa: E501
|
|
78
77
|
all_params.append('async_')
|
|
79
78
|
all_params.append('_return_http_data_only')
|
|
80
79
|
all_params.append('_preload_content')
|
|
@@ -107,8 +106,6 @@ class ContainersApi(object):
|
|
|
107
106
|
path_params['cid'] = params['cid'] # noqa: E501
|
|
108
107
|
|
|
109
108
|
query_params = []
|
|
110
|
-
if 'job' in params:
|
|
111
|
-
query_params.append(('job', params['job'])) # noqa: E501
|
|
112
109
|
if 'job' in params:
|
|
113
110
|
query_params.append(('job', params['job'])) # noqa: E501
|
|
114
111
|
else:
|
|
@@ -163,11 +160,15 @@ class ContainersApi(object):
|
|
|
163
160
|
Add a note to a(n) container analysis.
|
|
164
161
|
This method makes a synchronous HTTP request by default.
|
|
165
162
|
|
|
166
|
-
:param
|
|
167
|
-
:
|
|
168
|
-
:param
|
|
169
|
-
:
|
|
170
|
-
:
|
|
163
|
+
:param container_id: 24-char hex id
|
|
164
|
+
:type container_id: str
|
|
165
|
+
:param analysis_id: 24-char hex analysis id
|
|
166
|
+
:type analysis_id: str
|
|
167
|
+
:param body:
|
|
168
|
+
:type body: NoteInput
|
|
169
|
+
:param async_: Perform the request asynchronously
|
|
170
|
+
:type async_: bool, optional
|
|
171
|
+
:rtype: Note
|
|
171
172
|
"""
|
|
172
173
|
ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
|
|
173
174
|
kwargs['_return_http_data_only'] = True
|
|
@@ -191,11 +192,15 @@ class ContainersApi(object):
|
|
|
191
192
|
Add a note to a(n) container analysis.
|
|
192
193
|
This method makes a synchronous HTTP request by default.
|
|
193
194
|
|
|
194
|
-
:param
|
|
195
|
-
:
|
|
196
|
-
:param
|
|
197
|
-
:
|
|
198
|
-
:
|
|
195
|
+
:param container_id: 24-char hex id
|
|
196
|
+
:type container_id: str
|
|
197
|
+
:param analysis_id: 24-char hex analysis id
|
|
198
|
+
:type analysis_id: str
|
|
199
|
+
:param body:
|
|
200
|
+
:type body: NoteInput
|
|
201
|
+
:param async_: Perform the request asynchronously
|
|
202
|
+
:type async_: bool, optional
|
|
203
|
+
:rtype: Note
|
|
199
204
|
"""
|
|
200
205
|
|
|
201
206
|
all_params = ['container_id','analysis_id','body',] # noqa: E501
|
|
@@ -287,10 +292,13 @@ class ContainersApi(object):
|
|
|
287
292
|
Add a note to a(n) container.
|
|
288
293
|
This method makes a synchronous HTTP request by default.
|
|
289
294
|
|
|
290
|
-
:param
|
|
291
|
-
:
|
|
292
|
-
:param
|
|
293
|
-
:
|
|
295
|
+
:param container_id:
|
|
296
|
+
:type container_id: str
|
|
297
|
+
:param body:
|
|
298
|
+
:type body: NoteInput
|
|
299
|
+
:param async_: Perform the request asynchronously
|
|
300
|
+
:type async_: bool, optional
|
|
301
|
+
:rtype: Note
|
|
294
302
|
"""
|
|
295
303
|
ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
|
|
296
304
|
kwargs['_return_http_data_only'] = True
|
|
@@ -314,10 +322,13 @@ class ContainersApi(object):
|
|
|
314
322
|
Add a note to a(n) container.
|
|
315
323
|
This method makes a synchronous HTTP request by default.
|
|
316
324
|
|
|
317
|
-
:param
|
|
318
|
-
:
|
|
319
|
-
:param
|
|
320
|
-
:
|
|
325
|
+
:param container_id:
|
|
326
|
+
:type container_id: str
|
|
327
|
+
:param body:
|
|
328
|
+
:type body: NoteInput
|
|
329
|
+
:param async_: Perform the request asynchronously
|
|
330
|
+
:type async_: bool, optional
|
|
331
|
+
:rtype: Note
|
|
321
332
|
"""
|
|
322
333
|
|
|
323
334
|
all_params = ['container_id','body',] # noqa: E501
|
|
@@ -403,10 +414,13 @@ class ContainersApi(object):
|
|
|
403
414
|
Propagates changes to projects, sessions and acquisitions
|
|
404
415
|
This method makes a synchronous HTTP request by default.
|
|
405
416
|
|
|
406
|
-
:param
|
|
407
|
-
:
|
|
408
|
-
:param
|
|
409
|
-
:
|
|
417
|
+
:param cid:
|
|
418
|
+
:type cid: str
|
|
419
|
+
:param body:
|
|
420
|
+
:type body: Tag
|
|
421
|
+
:param async_: Perform the request asynchronously
|
|
422
|
+
:type async_: bool, optional
|
|
423
|
+
:rtype: ModifiedResult
|
|
410
424
|
"""
|
|
411
425
|
ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
|
|
412
426
|
kwargs['_return_http_data_only'] = True
|
|
@@ -430,10 +444,13 @@ class ContainersApi(object):
|
|
|
430
444
|
Propagates changes to projects, sessions and acquisitions
|
|
431
445
|
This method makes a synchronous HTTP request by default.
|
|
432
446
|
|
|
433
|
-
:param
|
|
434
|
-
:
|
|
435
|
-
:param
|
|
436
|
-
:
|
|
447
|
+
:param cid:
|
|
448
|
+
:type cid: str
|
|
449
|
+
:param body:
|
|
450
|
+
:type body: Tag
|
|
451
|
+
:param async_: Perform the request asynchronously
|
|
452
|
+
:type async_: bool, optional
|
|
453
|
+
:rtype: ModifiedResult
|
|
437
454
|
"""
|
|
438
455
|
|
|
439
456
|
all_params = ['cid','body',] # noqa: E501
|
|
@@ -519,10 +536,13 @@ class ContainersApi(object):
|
|
|
519
536
|
Add multiple tags to a(n) container
|
|
520
537
|
This method makes a synchronous HTTP request by default.
|
|
521
538
|
|
|
522
|
-
:param
|
|
523
|
-
:
|
|
524
|
-
:param
|
|
525
|
-
:
|
|
539
|
+
:param cid:
|
|
540
|
+
:type cid: str
|
|
541
|
+
:param body:
|
|
542
|
+
:type body: list[str]
|
|
543
|
+
:param async_: Perform the request asynchronously
|
|
544
|
+
:type async_: bool, optional
|
|
545
|
+
:rtype: None
|
|
526
546
|
"""
|
|
527
547
|
ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
|
|
528
548
|
kwargs['_return_http_data_only'] = True
|
|
@@ -546,10 +566,13 @@ class ContainersApi(object):
|
|
|
546
566
|
Add multiple tags to a(n) container
|
|
547
567
|
This method makes a synchronous HTTP request by default.
|
|
548
568
|
|
|
549
|
-
:param
|
|
550
|
-
:
|
|
551
|
-
:param
|
|
552
|
-
:
|
|
569
|
+
:param cid:
|
|
570
|
+
:type cid: str
|
|
571
|
+
:param body:
|
|
572
|
+
:type body: list[str]
|
|
573
|
+
:param async_: Perform the request asynchronously
|
|
574
|
+
:type async_: bool, optional
|
|
575
|
+
:rtype: None
|
|
553
576
|
"""
|
|
554
577
|
|
|
555
578
|
all_params = ['cid','body',] # noqa: E501
|
|
@@ -628,10 +651,13 @@ class ContainersApi(object):
|
|
|
628
651
|
Create container view
|
|
629
652
|
This method makes a synchronous HTTP request by default.
|
|
630
653
|
|
|
631
|
-
:param
|
|
632
|
-
:
|
|
633
|
-
:param
|
|
634
|
-
:
|
|
654
|
+
:param container_id:
|
|
655
|
+
:type container_id: str
|
|
656
|
+
:param body:
|
|
657
|
+
:type body: ContainerIdViewInput
|
|
658
|
+
:param async_: Perform the request asynchronously
|
|
659
|
+
:type async_: bool, optional
|
|
660
|
+
:rtype: ViewIdOutput
|
|
635
661
|
"""
|
|
636
662
|
ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
|
|
637
663
|
kwargs['_return_http_data_only'] = True
|
|
@@ -655,10 +681,13 @@ class ContainersApi(object):
|
|
|
655
681
|
Create container view
|
|
656
682
|
This method makes a synchronous HTTP request by default.
|
|
657
683
|
|
|
658
|
-
:param
|
|
659
|
-
:
|
|
660
|
-
:param
|
|
661
|
-
:
|
|
684
|
+
:param container_id:
|
|
685
|
+
:type container_id: str
|
|
686
|
+
:param body:
|
|
687
|
+
:type body: ContainerIdViewInput
|
|
688
|
+
:param async_: Perform the request asynchronously
|
|
689
|
+
:type async_: bool, optional
|
|
690
|
+
:rtype: ViewIdOutput
|
|
662
691
|
"""
|
|
663
692
|
|
|
664
693
|
all_params = ['container_id','body',] # noqa: E501
|
|
@@ -744,10 +773,13 @@ class ContainersApi(object):
|
|
|
744
773
|
Delete Container
|
|
745
774
|
This method makes a synchronous HTTP request by default.
|
|
746
775
|
|
|
747
|
-
:param
|
|
748
|
-
:
|
|
749
|
-
:param
|
|
750
|
-
:
|
|
776
|
+
:param container_id:
|
|
777
|
+
:type container_id: str
|
|
778
|
+
:param delete_reason:
|
|
779
|
+
:type delete_reason: ContainerDeleteReason, optional
|
|
780
|
+
:param async_: Perform the request asynchronously
|
|
781
|
+
:type async_: bool, optional
|
|
782
|
+
:rtype: DeletedResult
|
|
751
783
|
"""
|
|
752
784
|
ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
|
|
753
785
|
kwargs['_return_http_data_only'] = True
|
|
@@ -771,10 +803,13 @@ class ContainersApi(object):
|
|
|
771
803
|
Delete Container
|
|
772
804
|
This method makes a synchronous HTTP request by default.
|
|
773
805
|
|
|
774
|
-
:param
|
|
775
|
-
:
|
|
776
|
-
:param
|
|
777
|
-
:
|
|
806
|
+
:param container_id:
|
|
807
|
+
:type container_id: str
|
|
808
|
+
:param delete_reason:
|
|
809
|
+
:type delete_reason: ContainerDeleteReason, optional
|
|
810
|
+
:param async_: Perform the request asynchronously
|
|
811
|
+
:type async_: bool, optional
|
|
812
|
+
:rtype: DeletedResult
|
|
778
813
|
"""
|
|
779
814
|
|
|
780
815
|
all_params = ['container_id','delete_reason',] # noqa: E501
|
|
@@ -845,11 +880,15 @@ class ContainersApi(object):
|
|
|
845
880
|
Delete an analysis for a container.
|
|
846
881
|
This method makes a synchronous HTTP request by default.
|
|
847
882
|
|
|
848
|
-
:param
|
|
849
|
-
:
|
|
850
|
-
:param
|
|
851
|
-
:
|
|
852
|
-
:
|
|
883
|
+
:param cid:
|
|
884
|
+
:type cid: str
|
|
885
|
+
:param analysis_id:
|
|
886
|
+
:type analysis_id: str
|
|
887
|
+
:param delete_reason: Provide a reason for the deletion
|
|
888
|
+
:type delete_reason: ContainerDeleteReason, optional
|
|
889
|
+
:param async_: Perform the request asynchronously
|
|
890
|
+
:type async_: bool, optional
|
|
891
|
+
:rtype: DeletedResult
|
|
853
892
|
"""
|
|
854
893
|
ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
|
|
855
894
|
kwargs['_return_http_data_only'] = True
|
|
@@ -873,11 +912,15 @@ class ContainersApi(object):
|
|
|
873
912
|
Delete an analysis for a container.
|
|
874
913
|
This method makes a synchronous HTTP request by default.
|
|
875
914
|
|
|
876
|
-
:param
|
|
877
|
-
:
|
|
878
|
-
:param
|
|
879
|
-
:
|
|
880
|
-
:
|
|
915
|
+
:param cid:
|
|
916
|
+
:type cid: str
|
|
917
|
+
:param analysis_id:
|
|
918
|
+
:type analysis_id: str
|
|
919
|
+
:param delete_reason: Provide a reason for the deletion
|
|
920
|
+
:type delete_reason: ContainerDeleteReason, optional
|
|
921
|
+
:param async_: Perform the request asynchronously
|
|
922
|
+
:type async_: bool, optional
|
|
923
|
+
:rtype: DeletedResult
|
|
881
924
|
"""
|
|
882
925
|
|
|
883
926
|
all_params = ['cid','analysis_id','delete_reason',] # noqa: E501
|
|
@@ -954,11 +997,15 @@ class ContainersApi(object):
|
|
|
954
997
|
Remove a note from a(n) container analysis.
|
|
955
998
|
This method makes a synchronous HTTP request by default.
|
|
956
999
|
|
|
957
|
-
:param
|
|
958
|
-
:
|
|
959
|
-
:param
|
|
960
|
-
:
|
|
961
|
-
:
|
|
1000
|
+
:param cid: 24-char hex id
|
|
1001
|
+
:type cid: str
|
|
1002
|
+
:param analysis_id: 24-char hex analysis id
|
|
1003
|
+
:type analysis_id: str
|
|
1004
|
+
:param note_id: 24-char hex note id
|
|
1005
|
+
:type note_id: str
|
|
1006
|
+
:param async_: Perform the request asynchronously
|
|
1007
|
+
:type async_: bool, optional
|
|
1008
|
+
:rtype: DeletedResult
|
|
962
1009
|
"""
|
|
963
1010
|
ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
|
|
964
1011
|
kwargs['_return_http_data_only'] = True
|
|
@@ -982,11 +1029,15 @@ class ContainersApi(object):
|
|
|
982
1029
|
Remove a note from a(n) container analysis.
|
|
983
1030
|
This method makes a synchronous HTTP request by default.
|
|
984
1031
|
|
|
985
|
-
:param
|
|
986
|
-
:
|
|
987
|
-
:param
|
|
988
|
-
:
|
|
989
|
-
:
|
|
1032
|
+
:param cid: 24-char hex id
|
|
1033
|
+
:type cid: str
|
|
1034
|
+
:param analysis_id: 24-char hex analysis id
|
|
1035
|
+
:type analysis_id: str
|
|
1036
|
+
:param note_id: 24-char hex note id
|
|
1037
|
+
:type note_id: str
|
|
1038
|
+
:param async_: Perform the request asynchronously
|
|
1039
|
+
:type async_: bool, optional
|
|
1040
|
+
:rtype: DeletedResult
|
|
990
1041
|
"""
|
|
991
1042
|
|
|
992
1043
|
all_params = ['cid','analysis_id','note_id',] # noqa: E501
|
|
@@ -1067,12 +1118,17 @@ class ContainersApi(object):
|
|
|
1067
1118
|
A user with read-write or higher permissions on the container may delete files that were uploaded by users or were the output of jobs. (Specifically, files whose `origin.type` is either `job` or `user`.) <br/> A user with admin permissions on the container may delete any file.
|
|
1068
1119
|
This method makes a synchronous HTTP request by default.
|
|
1069
1120
|
|
|
1070
|
-
:param
|
|
1071
|
-
:
|
|
1072
|
-
:param
|
|
1073
|
-
:
|
|
1074
|
-
:param
|
|
1075
|
-
:
|
|
1121
|
+
:param cid:
|
|
1122
|
+
:type cid: str
|
|
1123
|
+
:param filename:
|
|
1124
|
+
:type filename: str
|
|
1125
|
+
:param delete_reason: A reason for deletion when audit-trail is enabled
|
|
1126
|
+
:type delete_reason: ContainerDeleteReason, optional
|
|
1127
|
+
:param force: Force deletion of the file even if some checks fail. Deprecated, will be removed in a future release., defaults to false
|
|
1128
|
+
:type force: bool, optional
|
|
1129
|
+
:param async_: Perform the request asynchronously
|
|
1130
|
+
:type async_: bool, optional
|
|
1131
|
+
:rtype: DeletedResult
|
|
1076
1132
|
"""
|
|
1077
1133
|
ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
|
|
1078
1134
|
kwargs['_return_http_data_only'] = True
|
|
@@ -1096,12 +1152,17 @@ class ContainersApi(object):
|
|
|
1096
1152
|
A user with read-write or higher permissions on the container may delete files that were uploaded by users or were the output of jobs. (Specifically, files whose `origin.type` is either `job` or `user`.) <br/> A user with admin permissions on the container may delete any file.
|
|
1097
1153
|
This method makes a synchronous HTTP request by default.
|
|
1098
1154
|
|
|
1099
|
-
:param
|
|
1100
|
-
:
|
|
1101
|
-
:param
|
|
1102
|
-
:
|
|
1103
|
-
:param
|
|
1104
|
-
:
|
|
1155
|
+
:param cid:
|
|
1156
|
+
:type cid: str
|
|
1157
|
+
:param filename:
|
|
1158
|
+
:type filename: str
|
|
1159
|
+
:param delete_reason: A reason for deletion when audit-trail is enabled
|
|
1160
|
+
:type delete_reason: ContainerDeleteReason, optional
|
|
1161
|
+
:param force: Force deletion of the file even if some checks fail. Deprecated, will be removed in a future release., defaults to false
|
|
1162
|
+
:type force: bool, optional
|
|
1163
|
+
:param async_: Perform the request asynchronously
|
|
1164
|
+
:type async_: bool, optional
|
|
1165
|
+
:rtype: DeletedResult
|
|
1105
1166
|
"""
|
|
1106
1167
|
|
|
1107
1168
|
all_params = ['cid','filename','delete_reason','force',] # noqa: E501
|
|
@@ -1180,10 +1241,13 @@ class ContainersApi(object):
|
|
|
1180
1241
|
Remove a note from a(n) container
|
|
1181
1242
|
This method makes a synchronous HTTP request by default.
|
|
1182
1243
|
|
|
1183
|
-
:param
|
|
1184
|
-
:
|
|
1185
|
-
:param
|
|
1186
|
-
:
|
|
1244
|
+
:param cid:
|
|
1245
|
+
:type cid: str
|
|
1246
|
+
:param note_id:
|
|
1247
|
+
:type note_id: str
|
|
1248
|
+
:param async_: Perform the request asynchronously
|
|
1249
|
+
:type async_: bool, optional
|
|
1250
|
+
:rtype: DeletedResult
|
|
1187
1251
|
"""
|
|
1188
1252
|
ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
|
|
1189
1253
|
kwargs['_return_http_data_only'] = True
|
|
@@ -1207,10 +1271,13 @@ class ContainersApi(object):
|
|
|
1207
1271
|
Remove a note from a(n) container
|
|
1208
1272
|
This method makes a synchronous HTTP request by default.
|
|
1209
1273
|
|
|
1210
|
-
:param
|
|
1211
|
-
:
|
|
1212
|
-
:param
|
|
1213
|
-
:
|
|
1274
|
+
:param cid:
|
|
1275
|
+
:type cid: str
|
|
1276
|
+
:param note_id:
|
|
1277
|
+
:type note_id: str
|
|
1278
|
+
:param async_: Perform the request asynchronously
|
|
1279
|
+
:type async_: bool, optional
|
|
1280
|
+
:rtype: DeletedResult
|
|
1214
1281
|
"""
|
|
1215
1282
|
|
|
1216
1283
|
all_params = ['cid','note_id',] # noqa: E501
|
|
@@ -1285,10 +1352,13 @@ class ContainersApi(object):
|
|
|
1285
1352
|
Delete a tag
|
|
1286
1353
|
This method makes a synchronous HTTP request by default.
|
|
1287
1354
|
|
|
1288
|
-
:param
|
|
1289
|
-
:
|
|
1290
|
-
:param
|
|
1291
|
-
:
|
|
1355
|
+
:param cid:
|
|
1356
|
+
:type cid: str
|
|
1357
|
+
:param value: The tag to interact with
|
|
1358
|
+
:type value: str
|
|
1359
|
+
:param async_: Perform the request asynchronously
|
|
1360
|
+
:type async_: bool, optional
|
|
1361
|
+
:rtype: DeletedResult
|
|
1292
1362
|
"""
|
|
1293
1363
|
ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
|
|
1294
1364
|
kwargs['_return_http_data_only'] = True
|
|
@@ -1312,10 +1382,13 @@ class ContainersApi(object):
|
|
|
1312
1382
|
Delete a tag
|
|
1313
1383
|
This method makes a synchronous HTTP request by default.
|
|
1314
1384
|
|
|
1315
|
-
:param
|
|
1316
|
-
:
|
|
1317
|
-
:param
|
|
1318
|
-
:
|
|
1385
|
+
:param cid:
|
|
1386
|
+
:type cid: str
|
|
1387
|
+
:param value: The tag to interact with
|
|
1388
|
+
:type value: str
|
|
1389
|
+
:param async_: Perform the request asynchronously
|
|
1390
|
+
:type async_: bool, optional
|
|
1391
|
+
:rtype: DeletedResult
|
|
1319
1392
|
"""
|
|
1320
1393
|
|
|
1321
1394
|
all_params = ['cid','value',] # noqa: E501
|
|
@@ -1390,10 +1463,13 @@ class ContainersApi(object):
|
|
|
1390
1463
|
Delete multiple tags from a(n) container
|
|
1391
1464
|
This method makes a synchronous HTTP request by default.
|
|
1392
1465
|
|
|
1393
|
-
:param
|
|
1394
|
-
:
|
|
1395
|
-
:param
|
|
1396
|
-
:
|
|
1466
|
+
:param cid:
|
|
1467
|
+
:type cid: str
|
|
1468
|
+
:param body:
|
|
1469
|
+
:type body: list[str]
|
|
1470
|
+
:param async_: Perform the request asynchronously
|
|
1471
|
+
:type async_: bool, optional
|
|
1472
|
+
:rtype: None
|
|
1397
1473
|
"""
|
|
1398
1474
|
ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
|
|
1399
1475
|
kwargs['_return_http_data_only'] = True
|
|
@@ -1417,10 +1493,13 @@ class ContainersApi(object):
|
|
|
1417
1493
|
Delete multiple tags from a(n) container
|
|
1418
1494
|
This method makes a synchronous HTTP request by default.
|
|
1419
1495
|
|
|
1420
|
-
:param
|
|
1421
|
-
:
|
|
1422
|
-
:param
|
|
1423
|
-
:
|
|
1496
|
+
:param cid:
|
|
1497
|
+
:type cid: str
|
|
1498
|
+
:param body:
|
|
1499
|
+
:type body: list[str]
|
|
1500
|
+
:param async_: Perform the request asynchronously
|
|
1501
|
+
:type async_: bool, optional
|
|
1502
|
+
:rtype: None
|
|
1424
1503
|
"""
|
|
1425
1504
|
|
|
1426
1505
|
all_params = ['cid','body',] # noqa: E501
|
|
@@ -1499,18 +1578,29 @@ class ContainersApi(object):
|
|
|
1499
1578
|
Files can be downloaded directly from this endpoint with a valid \"Authorization\" header or via a ticket id. To generate a ticket: - Make a request with an empty \"ticket\" parameter and a valid \"Authorization\" header. The server will respond with a generated ticket id. - Make another request with the received ticket id in the \"ticket\" parameter. A valid \"Authorization\" header is no longer required. When \"view\" is true, [RFC7233](https://tools.ietf.org/html/rfc7233) range request headers are supported. When virus_scan feature is enabled the quarantined files only can be downloaded using signed urls otherwise it will return with a HTTP 400 response.
|
|
1500
1579
|
This method makes a synchronous HTTP request by default.
|
|
1501
1580
|
|
|
1502
|
-
:param
|
|
1503
|
-
:
|
|
1504
|
-
:param
|
|
1505
|
-
:
|
|
1506
|
-
:param
|
|
1507
|
-
:
|
|
1508
|
-
:param
|
|
1509
|
-
:
|
|
1510
|
-
:param
|
|
1511
|
-
:
|
|
1512
|
-
:param
|
|
1513
|
-
:
|
|
1581
|
+
:param container_id: 24-character hex ID
|
|
1582
|
+
:type container_id: str
|
|
1583
|
+
:param file_name: output file name
|
|
1584
|
+
:type file_name: str
|
|
1585
|
+
:param info: If the file is a zipfile, return a json response of zipfile member information, defaults to false
|
|
1586
|
+
:type info: bool, optional
|
|
1587
|
+
:param member: The filename of a zipfile member to download rather than the entire file
|
|
1588
|
+
:type member: str, optional
|
|
1589
|
+
:param view: If true, the proper \"Content-Type\" header based on the file's mimetype is set on response If false, the \"Content-Type\" header is set to \"application/octet-stream\" , defaults to false
|
|
1590
|
+
:type view: bool, optional
|
|
1591
|
+
:param version: version of the file to download
|
|
1592
|
+
:type version: int, optional
|
|
1593
|
+
:param hash: file hash for comparison
|
|
1594
|
+
:type hash: str, optional
|
|
1595
|
+
:param range: byte ranges to return
|
|
1596
|
+
:type range: str, optional
|
|
1597
|
+
:param x_accept_feature: redirect header, defaults to []
|
|
1598
|
+
:type x_accept_feature: list[str], optional
|
|
1599
|
+
:param dest_file: Destination file path
|
|
1600
|
+
:type dest_file: str
|
|
1601
|
+
:param async_: Perform the request asynchronously
|
|
1602
|
+
:type async_: bool, optional
|
|
1603
|
+
:rtype: union[DownloadTicketStub,ZipfileInfo]
|
|
1514
1604
|
"""
|
|
1515
1605
|
ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
|
|
1516
1606
|
kwargs['_return_http_data_only'] = True
|
|
@@ -1533,17 +1623,27 @@ class ContainersApi(object):
|
|
|
1533
1623
|
Files can be downloaded directly from this endpoint with a valid \"Authorization\" header or via a ticket id. To generate a ticket: - Make a request with an empty \"ticket\" parameter and a valid \"Authorization\" header. The server will respond with a generated ticket id. - Make another request with the received ticket id in the \"ticket\" parameter. A valid \"Authorization\" header is no longer required. When \"view\" is true, [RFC7233](https://tools.ietf.org/html/rfc7233) range request headers are supported. When virus_scan feature is enabled the quarantined files only can be downloaded using signed urls otherwise it will return with a HTTP 400 response.
|
|
1534
1624
|
This method makes a synchronous HTTP request by default.
|
|
1535
1625
|
|
|
1536
|
-
:param
|
|
1537
|
-
:
|
|
1538
|
-
:param
|
|
1539
|
-
:
|
|
1540
|
-
:param
|
|
1541
|
-
:
|
|
1542
|
-
:param
|
|
1543
|
-
:
|
|
1544
|
-
:param
|
|
1545
|
-
:
|
|
1546
|
-
:
|
|
1626
|
+
:param container_id: 24-character hex ID
|
|
1627
|
+
:type container_id: str
|
|
1628
|
+
:param file_name: output file name
|
|
1629
|
+
:type file_name: str
|
|
1630
|
+
:param info: If the file is a zipfile, return a json response of zipfile member information, defaults to false
|
|
1631
|
+
:type info: bool, optional
|
|
1632
|
+
:param member: The filename of a zipfile member to download rather than the entire file
|
|
1633
|
+
:type member: str, optional
|
|
1634
|
+
:param view: If true, the proper \"Content-Type\" header based on the file's mimetype is set on response If false, the \"Content-Type\" header is set to \"application/octet-stream\" , defaults to false
|
|
1635
|
+
:type view: bool, optional
|
|
1636
|
+
:param version: version of the file to download
|
|
1637
|
+
:type version: int, optional
|
|
1638
|
+
:param hash: file hash for comparison
|
|
1639
|
+
:type hash: str, optional
|
|
1640
|
+
:param range: byte ranges to return
|
|
1641
|
+
:type range: str, optional
|
|
1642
|
+
:param x_accept_feature: redirect header, defaults to []
|
|
1643
|
+
:type x_accept_feature: list[str], optional
|
|
1644
|
+
:param async_: Perform the request asynchronously
|
|
1645
|
+
:type async_: bool, optional
|
|
1646
|
+
:rtype: union[DownloadTicketStub,ZipfileInfo]
|
|
1547
1647
|
"""
|
|
1548
1648
|
|
|
1549
1649
|
all_params = ['container_id','file_name','info','member','view','version','hash','range','x_accept_feature',] # noqa: E501
|
|
@@ -1633,18 +1733,29 @@ class ContainersApi(object):
|
|
|
1633
1733
|
Does not work on files whose names contain a forward slash.
|
|
1634
1734
|
This method makes a synchronous HTTP request by default.
|
|
1635
1735
|
|
|
1636
|
-
:param
|
|
1637
|
-
:
|
|
1638
|
-
:param
|
|
1639
|
-
:
|
|
1640
|
-
:param
|
|
1641
|
-
:
|
|
1642
|
-
:param
|
|
1643
|
-
:
|
|
1644
|
-
:param
|
|
1645
|
-
:
|
|
1646
|
-
:param
|
|
1647
|
-
:
|
|
1736
|
+
:param container_id: 24-character hex ID
|
|
1737
|
+
:type container_id: str
|
|
1738
|
+
:param file_name: output file name
|
|
1739
|
+
:type file_name: str
|
|
1740
|
+
:param ticket: The generated ticket id for the download, or present but empty to generate a ticket id
|
|
1741
|
+
:type ticket: str, optional
|
|
1742
|
+
:param info: If the file is a zipfile, return a json response of zipfile member information, defaults to false
|
|
1743
|
+
:type info: bool, optional
|
|
1744
|
+
:param member: The filename of a zipfile member to download rather than the entire file
|
|
1745
|
+
:type member: str, optional
|
|
1746
|
+
:param view: If true, the proper \"Content-Type\" header based on the file's mimetype is set on response If false, the \"Content-Type\" header is set to \"application/octet-stream\" , defaults to false
|
|
1747
|
+
:type view: bool, optional
|
|
1748
|
+
:param version: version of the file to download
|
|
1749
|
+
:type version: int, optional
|
|
1750
|
+
:param hash: file hash for comparison
|
|
1751
|
+
:type hash: str, optional
|
|
1752
|
+
:param range: byte ranges to return
|
|
1753
|
+
:type range: str, optional
|
|
1754
|
+
:param x_accept_feature: redirect header, defaults to []
|
|
1755
|
+
:type x_accept_feature: list[str], optional
|
|
1756
|
+
:param async_: Perform the request asynchronously
|
|
1757
|
+
:type async_: bool, optional
|
|
1758
|
+
:rtype: FileZipInfo
|
|
1648
1759
|
"""
|
|
1649
1760
|
ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
|
|
1650
1761
|
kwargs['_return_http_data_only'] = True
|
|
@@ -1668,18 +1779,29 @@ class ContainersApi(object):
|
|
|
1668
1779
|
Does not work on files whose names contain a forward slash.
|
|
1669
1780
|
This method makes a synchronous HTTP request by default.
|
|
1670
1781
|
|
|
1671
|
-
:param
|
|
1672
|
-
:
|
|
1673
|
-
:param
|
|
1674
|
-
:
|
|
1675
|
-
:param
|
|
1676
|
-
:
|
|
1677
|
-
:param
|
|
1678
|
-
:
|
|
1679
|
-
:param
|
|
1680
|
-
:
|
|
1681
|
-
:param
|
|
1682
|
-
:
|
|
1782
|
+
:param container_id: 24-character hex ID
|
|
1783
|
+
:type container_id: str
|
|
1784
|
+
:param file_name: output file name
|
|
1785
|
+
:type file_name: str
|
|
1786
|
+
:param ticket: The generated ticket id for the download, or present but empty to generate a ticket id
|
|
1787
|
+
:type ticket: str, optional
|
|
1788
|
+
:param info: If the file is a zipfile, return a json response of zipfile member information, defaults to false
|
|
1789
|
+
:type info: bool, optional
|
|
1790
|
+
:param member: The filename of a zipfile member to download rather than the entire file
|
|
1791
|
+
:type member: str, optional
|
|
1792
|
+
:param view: If true, the proper \"Content-Type\" header based on the file's mimetype is set on response If false, the \"Content-Type\" header is set to \"application/octet-stream\" , defaults to false
|
|
1793
|
+
:type view: bool, optional
|
|
1794
|
+
:param version: version of the file to download
|
|
1795
|
+
:type version: int, optional
|
|
1796
|
+
:param hash: file hash for comparison
|
|
1797
|
+
:type hash: str, optional
|
|
1798
|
+
:param range: byte ranges to return
|
|
1799
|
+
:type range: str, optional
|
|
1800
|
+
:param x_accept_feature: redirect header, defaults to []
|
|
1801
|
+
:type x_accept_feature: list[str], optional
|
|
1802
|
+
:param async_: Perform the request asynchronously
|
|
1803
|
+
:type async_: bool, optional
|
|
1804
|
+
:rtype: FileZipInfo
|
|
1683
1805
|
"""
|
|
1684
1806
|
|
|
1685
1807
|
all_params = ['container_id','file_name','ticket','info','member','view','version','hash','range','x_accept_feature',] # noqa: E501
|
|
@@ -1772,18 +1894,29 @@ class ContainersApi(object):
|
|
|
1772
1894
|
|
|
1773
1895
|
This method makes a synchronous HTTP request by default.
|
|
1774
1896
|
|
|
1775
|
-
:param
|
|
1776
|
-
:
|
|
1777
|
-
:param
|
|
1778
|
-
:
|
|
1779
|
-
:param
|
|
1780
|
-
:
|
|
1781
|
-
:param
|
|
1782
|
-
:
|
|
1783
|
-
:param
|
|
1784
|
-
:
|
|
1785
|
-
:param
|
|
1786
|
-
:
|
|
1897
|
+
:param container_id: 24-character hex ID
|
|
1898
|
+
:type container_id: str
|
|
1899
|
+
:param file_name: output file name
|
|
1900
|
+
:type file_name: str
|
|
1901
|
+
:param ticket: The generated ticket id for the download, or present but empty to generate a ticket id
|
|
1902
|
+
:type ticket: str, optional
|
|
1903
|
+
:param info: If the file is a zipfile, return a json response of zipfile member information, defaults to false
|
|
1904
|
+
:type info: bool, optional
|
|
1905
|
+
:param member: The filename of a zipfile member to download rather than the entire file
|
|
1906
|
+
:type member: str, optional
|
|
1907
|
+
:param view: If true, the proper \"Content-Type\" header based on the file's mimetype is set on response If false, the \"Content-Type\" header is set to \"application/octet-stream\" , defaults to false
|
|
1908
|
+
:type view: bool, optional
|
|
1909
|
+
:param version: version of the file to download
|
|
1910
|
+
:type version: int, optional
|
|
1911
|
+
:param hash: file hash for comparison
|
|
1912
|
+
:type hash: str, optional
|
|
1913
|
+
:param range: byte ranges to return
|
|
1914
|
+
:type range: str, optional
|
|
1915
|
+
:param x_accept_feature: redirect header, defaults to []
|
|
1916
|
+
:type x_accept_feature: list[str], optional
|
|
1917
|
+
:param async_: Perform the request asynchronously
|
|
1918
|
+
:type async_: bool, optional
|
|
1919
|
+
:rtype: union[DownloadTicketStub,ZipfileInfo]
|
|
1787
1920
|
"""
|
|
1788
1921
|
ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
|
|
1789
1922
|
kwargs['_return_http_data_only'] = True
|
|
@@ -1806,18 +1939,29 @@ class ContainersApi(object):
|
|
|
1806
1939
|
|
|
1807
1940
|
This method makes a synchronous HTTP request by default.
|
|
1808
1941
|
|
|
1809
|
-
:param
|
|
1810
|
-
:
|
|
1811
|
-
:param
|
|
1812
|
-
:
|
|
1813
|
-
:param
|
|
1814
|
-
:
|
|
1815
|
-
:param
|
|
1816
|
-
:
|
|
1817
|
-
:param
|
|
1818
|
-
:
|
|
1819
|
-
:param
|
|
1820
|
-
:
|
|
1942
|
+
:param container_id: 24-character hex ID
|
|
1943
|
+
:type container_id: str
|
|
1944
|
+
:param file_name: output file name
|
|
1945
|
+
:type file_name: str
|
|
1946
|
+
:param ticket: The generated ticket id for the download, or present but empty to generate a ticket id
|
|
1947
|
+
:type ticket: str, optional
|
|
1948
|
+
:param info: If the file is a zipfile, return a json response of zipfile member information, defaults to false
|
|
1949
|
+
:type info: bool, optional
|
|
1950
|
+
:param member: The filename of a zipfile member to download rather than the entire file
|
|
1951
|
+
:type member: str, optional
|
|
1952
|
+
:param view: If true, the proper \"Content-Type\" header based on the file's mimetype is set on response If false, the \"Content-Type\" header is set to \"application/octet-stream\" , defaults to false
|
|
1953
|
+
:type view: bool, optional
|
|
1954
|
+
:param version: version of the file to download
|
|
1955
|
+
:type version: int, optional
|
|
1956
|
+
:param hash: file hash for comparison
|
|
1957
|
+
:type hash: str, optional
|
|
1958
|
+
:param range: byte ranges to return
|
|
1959
|
+
:type range: str, optional
|
|
1960
|
+
:param x_accept_feature: redirect header, defaults to []
|
|
1961
|
+
:type x_accept_feature: list[str], optional
|
|
1962
|
+
:param async_: Perform the request asynchronously
|
|
1963
|
+
:type async_: bool, optional
|
|
1964
|
+
:rtype: union[DownloadTicketStub,ZipfileInfo]
|
|
1821
1965
|
"""
|
|
1822
1966
|
|
|
1823
1967
|
all_params = ['container_id','file_name','ticket','info','member','view','version','hash','range','x_accept_feature',] # noqa: E501
|
|
@@ -1909,17 +2053,27 @@ class ContainersApi(object):
|
|
|
1909
2053
|
If \"ticket\" query param is included and not empty, download inputs. If \"ticket\" query param is included and empty, create a ticket for matching inputs in the analysis. If no \"ticket\" query param is included, inputs will be downloaded directly.
|
|
1910
2054
|
This method makes a synchronous HTTP request by default.
|
|
1911
2055
|
|
|
1912
|
-
:param
|
|
1913
|
-
:
|
|
1914
|
-
:param
|
|
1915
|
-
:
|
|
1916
|
-
:param
|
|
1917
|
-
:
|
|
1918
|
-
:param
|
|
1919
|
-
:
|
|
1920
|
-
:param
|
|
1921
|
-
:
|
|
1922
|
-
:
|
|
2056
|
+
:param container_id: 24-character hex ID
|
|
2057
|
+
:type container_id: str
|
|
2058
|
+
:param analysis_id: 24-char hex analysis id
|
|
2059
|
+
:type analysis_id: str
|
|
2060
|
+
:param filename: filename to download (get tar of all if empty)
|
|
2061
|
+
:type filename: str
|
|
2062
|
+
:param info: get file info only, defaults to false
|
|
2063
|
+
:type info: bool, optional
|
|
2064
|
+
:param member: get zipfile member
|
|
2065
|
+
:type member: str, optional
|
|
2066
|
+
:param view: feature flag for view/download, defaults to false
|
|
2067
|
+
:type view: bool, optional
|
|
2068
|
+
:param range: byte ranges to return
|
|
2069
|
+
:type range: str, optional
|
|
2070
|
+
:param x_accept_feature: redirect header, defaults to []
|
|
2071
|
+
:type x_accept_feature: list[str], optional
|
|
2072
|
+
:param dest_file: Destination file path
|
|
2073
|
+
:type dest_file: str
|
|
2074
|
+
:param async_: Perform the request asynchronously
|
|
2075
|
+
:type async_: bool, optional
|
|
2076
|
+
:rtype: union[DownloadTicketStub,ZipfileInfo]
|
|
1923
2077
|
"""
|
|
1924
2078
|
ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
|
|
1925
2079
|
kwargs['_return_http_data_only'] = True
|
|
@@ -1942,16 +2096,25 @@ class ContainersApi(object):
|
|
|
1942
2096
|
If \"ticket\" query param is included and not empty, download inputs. If \"ticket\" query param is included and empty, create a ticket for matching inputs in the analysis. If no \"ticket\" query param is included, inputs will be downloaded directly.
|
|
1943
2097
|
This method makes a synchronous HTTP request by default.
|
|
1944
2098
|
|
|
1945
|
-
:param
|
|
1946
|
-
:
|
|
1947
|
-
:param
|
|
1948
|
-
:
|
|
1949
|
-
:param
|
|
1950
|
-
:
|
|
1951
|
-
:param
|
|
1952
|
-
:
|
|
1953
|
-
:param
|
|
1954
|
-
:
|
|
2099
|
+
:param container_id: 24-character hex ID
|
|
2100
|
+
:type container_id: str
|
|
2101
|
+
:param analysis_id: 24-char hex analysis id
|
|
2102
|
+
:type analysis_id: str
|
|
2103
|
+
:param filename: filename to download (get tar of all if empty)
|
|
2104
|
+
:type filename: str
|
|
2105
|
+
:param info: get file info only, defaults to false
|
|
2106
|
+
:type info: bool, optional
|
|
2107
|
+
:param member: get zipfile member
|
|
2108
|
+
:type member: str, optional
|
|
2109
|
+
:param view: feature flag for view/download, defaults to false
|
|
2110
|
+
:type view: bool, optional
|
|
2111
|
+
:param range: byte ranges to return
|
|
2112
|
+
:type range: str, optional
|
|
2113
|
+
:param x_accept_feature: redirect header, defaults to []
|
|
2114
|
+
:type x_accept_feature: list[str], optional
|
|
2115
|
+
:param async_: Perform the request asynchronously
|
|
2116
|
+
:type async_: bool, optional
|
|
2117
|
+
:rtype: union[DownloadTicketStub,ZipfileInfo]
|
|
1955
2118
|
"""
|
|
1956
2119
|
|
|
1957
2120
|
all_params = ['container_id','analysis_id','filename','info','member','view','range','x_accept_feature',] # noqa: E501
|
|
@@ -2043,17 +2206,27 @@ class ContainersApi(object):
|
|
|
2043
2206
|
Does not work on files whose names contain a forward slash.
|
|
2044
2207
|
This method makes a synchronous HTTP request by default.
|
|
2045
2208
|
|
|
2046
|
-
:param
|
|
2047
|
-
:
|
|
2048
|
-
:param
|
|
2049
|
-
:
|
|
2050
|
-
:param
|
|
2051
|
-
:
|
|
2052
|
-
:param
|
|
2053
|
-
:
|
|
2054
|
-
:param
|
|
2055
|
-
:
|
|
2056
|
-
:
|
|
2209
|
+
:param container_id: 24-character hex ID
|
|
2210
|
+
:type container_id: str
|
|
2211
|
+
:param analysis_id: 24-char hex analysis id
|
|
2212
|
+
:type analysis_id: str
|
|
2213
|
+
:param filename: filename to download (get tar of all if empty)
|
|
2214
|
+
:type filename: str
|
|
2215
|
+
:param ticket: 24-char hex ticket id
|
|
2216
|
+
:type ticket: str, optional
|
|
2217
|
+
:param info: get file info only, defaults to false
|
|
2218
|
+
:type info: bool, optional
|
|
2219
|
+
:param member: get zipfile member
|
|
2220
|
+
:type member: str, optional
|
|
2221
|
+
:param view: feature flag for view/download, defaults to false
|
|
2222
|
+
:type view: bool, optional
|
|
2223
|
+
:param range: byte ranges to return
|
|
2224
|
+
:type range: str, optional
|
|
2225
|
+
:param x_accept_feature: redirect header, defaults to []
|
|
2226
|
+
:type x_accept_feature: list[str], optional
|
|
2227
|
+
:param async_: Perform the request asynchronously
|
|
2228
|
+
:type async_: bool, optional
|
|
2229
|
+
:rtype: FileZipInfo
|
|
2057
2230
|
"""
|
|
2058
2231
|
ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
|
|
2059
2232
|
kwargs['_return_http_data_only'] = True
|
|
@@ -2077,17 +2250,27 @@ class ContainersApi(object):
|
|
|
2077
2250
|
Does not work on files whose names contain a forward slash.
|
|
2078
2251
|
This method makes a synchronous HTTP request by default.
|
|
2079
2252
|
|
|
2080
|
-
:param
|
|
2081
|
-
:
|
|
2082
|
-
:param
|
|
2083
|
-
:
|
|
2084
|
-
:param
|
|
2085
|
-
:
|
|
2086
|
-
:param
|
|
2087
|
-
:
|
|
2088
|
-
:param
|
|
2089
|
-
:
|
|
2090
|
-
:
|
|
2253
|
+
:param container_id: 24-character hex ID
|
|
2254
|
+
:type container_id: str
|
|
2255
|
+
:param analysis_id: 24-char hex analysis id
|
|
2256
|
+
:type analysis_id: str
|
|
2257
|
+
:param filename: filename to download (get tar of all if empty)
|
|
2258
|
+
:type filename: str
|
|
2259
|
+
:param ticket: 24-char hex ticket id
|
|
2260
|
+
:type ticket: str, optional
|
|
2261
|
+
:param info: get file info only, defaults to false
|
|
2262
|
+
:type info: bool, optional
|
|
2263
|
+
:param member: get zipfile member
|
|
2264
|
+
:type member: str, optional
|
|
2265
|
+
:param view: feature flag for view/download, defaults to false
|
|
2266
|
+
:type view: bool, optional
|
|
2267
|
+
:param range: byte ranges to return
|
|
2268
|
+
:type range: str, optional
|
|
2269
|
+
:param x_accept_feature: redirect header, defaults to []
|
|
2270
|
+
:type x_accept_feature: list[str], optional
|
|
2271
|
+
:param async_: Perform the request asynchronously
|
|
2272
|
+
:type async_: bool, optional
|
|
2273
|
+
:rtype: FileZipInfo
|
|
2091
2274
|
"""
|
|
2092
2275
|
|
|
2093
2276
|
all_params = ['container_id','analysis_id','filename','ticket','info','member','view','range','x_accept_feature',] # noqa: E501
|
|
@@ -2182,17 +2365,27 @@ class ContainersApi(object):
|
|
|
2182
2365
|
|
|
2183
2366
|
This method makes a synchronous HTTP request by default.
|
|
2184
2367
|
|
|
2185
|
-
:param
|
|
2186
|
-
:
|
|
2187
|
-
:param
|
|
2188
|
-
:
|
|
2189
|
-
:param
|
|
2190
|
-
:
|
|
2191
|
-
:param
|
|
2192
|
-
:
|
|
2193
|
-
:param
|
|
2194
|
-
:
|
|
2195
|
-
:
|
|
2368
|
+
:param container_id: 24-character hex ID
|
|
2369
|
+
:type container_id: str
|
|
2370
|
+
:param analysis_id: 24-char hex analysis id
|
|
2371
|
+
:type analysis_id: str
|
|
2372
|
+
:param filename: filename to download (get tar of all if empty)
|
|
2373
|
+
:type filename: str
|
|
2374
|
+
:param ticket: 24-char hex ticket id
|
|
2375
|
+
:type ticket: str, optional
|
|
2376
|
+
:param info: get file info only, defaults to false
|
|
2377
|
+
:type info: bool, optional
|
|
2378
|
+
:param member: get zipfile member
|
|
2379
|
+
:type member: str, optional
|
|
2380
|
+
:param view: feature flag for view/download, defaults to false
|
|
2381
|
+
:type view: bool, optional
|
|
2382
|
+
:param range: byte ranges to return
|
|
2383
|
+
:type range: str, optional
|
|
2384
|
+
:param x_accept_feature: redirect header, defaults to []
|
|
2385
|
+
:type x_accept_feature: list[str], optional
|
|
2386
|
+
:param async_: Perform the request asynchronously
|
|
2387
|
+
:type async_: bool, optional
|
|
2388
|
+
:rtype: union[DownloadTicketStub,ZipfileInfo]
|
|
2196
2389
|
"""
|
|
2197
2390
|
ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
|
|
2198
2391
|
kwargs['_return_http_data_only'] = True
|
|
@@ -2215,17 +2408,27 @@ class ContainersApi(object):
|
|
|
2215
2408
|
|
|
2216
2409
|
This method makes a synchronous HTTP request by default.
|
|
2217
2410
|
|
|
2218
|
-
:param
|
|
2219
|
-
:
|
|
2220
|
-
:param
|
|
2221
|
-
:
|
|
2222
|
-
:param
|
|
2223
|
-
:
|
|
2224
|
-
:param
|
|
2225
|
-
:
|
|
2226
|
-
:param
|
|
2227
|
-
:
|
|
2228
|
-
:
|
|
2411
|
+
:param container_id: 24-character hex ID
|
|
2412
|
+
:type container_id: str
|
|
2413
|
+
:param analysis_id: 24-char hex analysis id
|
|
2414
|
+
:type analysis_id: str
|
|
2415
|
+
:param filename: filename to download (get tar of all if empty)
|
|
2416
|
+
:type filename: str
|
|
2417
|
+
:param ticket: 24-char hex ticket id
|
|
2418
|
+
:type ticket: str, optional
|
|
2419
|
+
:param info: get file info only, defaults to false
|
|
2420
|
+
:type info: bool, optional
|
|
2421
|
+
:param member: get zipfile member
|
|
2422
|
+
:type member: str, optional
|
|
2423
|
+
:param view: feature flag for view/download, defaults to false
|
|
2424
|
+
:type view: bool, optional
|
|
2425
|
+
:param range: byte ranges to return
|
|
2426
|
+
:type range: str, optional
|
|
2427
|
+
:param x_accept_feature: redirect header, defaults to []
|
|
2428
|
+
:type x_accept_feature: list[str], optional
|
|
2429
|
+
:param async_: Perform the request asynchronously
|
|
2430
|
+
:type async_: bool, optional
|
|
2431
|
+
:rtype: union[DownloadTicketStub,ZipfileInfo]
|
|
2229
2432
|
"""
|
|
2230
2433
|
|
|
2231
2434
|
all_params = ['container_id','analysis_id','filename','ticket','info','member','view','range','x_accept_feature',] # noqa: E501
|
|
@@ -2319,17 +2522,27 @@ class ContainersApi(object):
|
|
|
2319
2522
|
If \"ticket\" query param is included and not empty, download outputs. If \"ticket\" query param is included and empty, create a ticket for matching outputs in the analysis. If no \"ticket\" query param is included, outputs will be downloaded directly.
|
|
2320
2523
|
This method makes a synchronous HTTP request by default.
|
|
2321
2524
|
|
|
2322
|
-
:param
|
|
2323
|
-
:
|
|
2324
|
-
:param
|
|
2325
|
-
:
|
|
2326
|
-
:param
|
|
2327
|
-
:
|
|
2328
|
-
:param
|
|
2329
|
-
:
|
|
2330
|
-
:param
|
|
2331
|
-
:
|
|
2332
|
-
:
|
|
2525
|
+
:param container_id: 24-character hex ID
|
|
2526
|
+
:type container_id: str
|
|
2527
|
+
:param analysis_id: 24-char hex analysis id
|
|
2528
|
+
:type analysis_id: str
|
|
2529
|
+
:param filename: filename to download (get tar of all if empty)
|
|
2530
|
+
:type filename: str
|
|
2531
|
+
:param info: If the file is a zipfile, return a json response of zipfile member information, defaults to false
|
|
2532
|
+
:type info: bool, optional
|
|
2533
|
+
:param member: The filename of a zipfile member to download rather than the entire file
|
|
2534
|
+
:type member: str, optional
|
|
2535
|
+
:param view: feature flag for view/download, defaults to false
|
|
2536
|
+
:type view: bool, optional
|
|
2537
|
+
:param range: byte ranges to return
|
|
2538
|
+
:type range: str, optional
|
|
2539
|
+
:param x_accept_feature: redirect header, defaults to []
|
|
2540
|
+
:type x_accept_feature: list[str], optional
|
|
2541
|
+
:param dest_file: Destination file path
|
|
2542
|
+
:type dest_file: str
|
|
2543
|
+
:param async_: Perform the request asynchronously
|
|
2544
|
+
:type async_: bool, optional
|
|
2545
|
+
:rtype: union[DownloadTicketStub,ZipfileInfo]
|
|
2333
2546
|
"""
|
|
2334
2547
|
ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
|
|
2335
2548
|
kwargs['_return_http_data_only'] = True
|
|
@@ -2352,16 +2565,25 @@ class ContainersApi(object):
|
|
|
2352
2565
|
If \"ticket\" query param is included and not empty, download outputs. If \"ticket\" query param is included and empty, create a ticket for matching outputs in the analysis. If no \"ticket\" query param is included, outputs will be downloaded directly.
|
|
2353
2566
|
This method makes a synchronous HTTP request by default.
|
|
2354
2567
|
|
|
2355
|
-
:param
|
|
2356
|
-
:
|
|
2357
|
-
:param
|
|
2358
|
-
:
|
|
2359
|
-
:param
|
|
2360
|
-
:
|
|
2361
|
-
:param
|
|
2362
|
-
:
|
|
2363
|
-
:param
|
|
2364
|
-
:
|
|
2568
|
+
:param container_id: 24-character hex ID
|
|
2569
|
+
:type container_id: str
|
|
2570
|
+
:param analysis_id: 24-char hex analysis id
|
|
2571
|
+
:type analysis_id: str
|
|
2572
|
+
:param filename: filename to download (get tar of all if empty)
|
|
2573
|
+
:type filename: str
|
|
2574
|
+
:param info: If the file is a zipfile, return a json response of zipfile member information, defaults to false
|
|
2575
|
+
:type info: bool, optional
|
|
2576
|
+
:param member: The filename of a zipfile member to download rather than the entire file
|
|
2577
|
+
:type member: str, optional
|
|
2578
|
+
:param view: feature flag for view/download, defaults to false
|
|
2579
|
+
:type view: bool, optional
|
|
2580
|
+
:param range: byte ranges to return
|
|
2581
|
+
:type range: str, optional
|
|
2582
|
+
:param x_accept_feature: redirect header, defaults to []
|
|
2583
|
+
:type x_accept_feature: list[str], optional
|
|
2584
|
+
:param async_: Perform the request asynchronously
|
|
2585
|
+
:type async_: bool, optional
|
|
2586
|
+
:rtype: union[DownloadTicketStub,ZipfileInfo]
|
|
2365
2587
|
"""
|
|
2366
2588
|
|
|
2367
2589
|
all_params = ['container_id','analysis_id','filename','info','member','view','range','x_accept_feature',] # noqa: E501
|
|
@@ -2453,17 +2675,27 @@ class ContainersApi(object):
|
|
|
2453
2675
|
Does not work on files whose names contain a forward slash.
|
|
2454
2676
|
This method makes a synchronous HTTP request by default.
|
|
2455
2677
|
|
|
2456
|
-
:param
|
|
2457
|
-
:
|
|
2458
|
-
:param
|
|
2459
|
-
:
|
|
2460
|
-
:param
|
|
2461
|
-
:
|
|
2462
|
-
:param
|
|
2463
|
-
:
|
|
2464
|
-
:param
|
|
2465
|
-
:
|
|
2466
|
-
:
|
|
2678
|
+
:param container_id: 24-character hex ID
|
|
2679
|
+
:type container_id: str
|
|
2680
|
+
:param analysis_id: 24-char hex analysis id
|
|
2681
|
+
:type analysis_id: str
|
|
2682
|
+
:param filename: filename to download (get tar of all if empty)
|
|
2683
|
+
:type filename: str
|
|
2684
|
+
:param ticket: ticket id of the outputs to download
|
|
2685
|
+
:type ticket: str, optional
|
|
2686
|
+
:param info: If the file is a zipfile, return a json response of zipfile member information, defaults to false
|
|
2687
|
+
:type info: bool, optional
|
|
2688
|
+
:param member: The filename of a zipfile member to download rather than the entire file
|
|
2689
|
+
:type member: str, optional
|
|
2690
|
+
:param view: feature flag for view/download, defaults to false
|
|
2691
|
+
:type view: bool, optional
|
|
2692
|
+
:param range: byte ranges to return
|
|
2693
|
+
:type range: str, optional
|
|
2694
|
+
:param x_accept_feature: redirect header, defaults to []
|
|
2695
|
+
:type x_accept_feature: list[str], optional
|
|
2696
|
+
:param async_: Perform the request asynchronously
|
|
2697
|
+
:type async_: bool, optional
|
|
2698
|
+
:rtype: FileZipInfo
|
|
2467
2699
|
"""
|
|
2468
2700
|
ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
|
|
2469
2701
|
kwargs['_return_http_data_only'] = True
|
|
@@ -2487,17 +2719,27 @@ class ContainersApi(object):
|
|
|
2487
2719
|
Does not work on files whose names contain a forward slash.
|
|
2488
2720
|
This method makes a synchronous HTTP request by default.
|
|
2489
2721
|
|
|
2490
|
-
:param
|
|
2491
|
-
:
|
|
2492
|
-
:param
|
|
2493
|
-
:
|
|
2494
|
-
:param
|
|
2495
|
-
:
|
|
2496
|
-
:param
|
|
2497
|
-
:
|
|
2498
|
-
:param
|
|
2499
|
-
:
|
|
2500
|
-
:
|
|
2722
|
+
:param container_id: 24-character hex ID
|
|
2723
|
+
:type container_id: str
|
|
2724
|
+
:param analysis_id: 24-char hex analysis id
|
|
2725
|
+
:type analysis_id: str
|
|
2726
|
+
:param filename: filename to download (get tar of all if empty)
|
|
2727
|
+
:type filename: str
|
|
2728
|
+
:param ticket: ticket id of the outputs to download
|
|
2729
|
+
:type ticket: str, optional
|
|
2730
|
+
:param info: If the file is a zipfile, return a json response of zipfile member information, defaults to false
|
|
2731
|
+
:type info: bool, optional
|
|
2732
|
+
:param member: The filename of a zipfile member to download rather than the entire file
|
|
2733
|
+
:type member: str, optional
|
|
2734
|
+
:param view: feature flag for view/download, defaults to false
|
|
2735
|
+
:type view: bool, optional
|
|
2736
|
+
:param range: byte ranges to return
|
|
2737
|
+
:type range: str, optional
|
|
2738
|
+
:param x_accept_feature: redirect header, defaults to []
|
|
2739
|
+
:type x_accept_feature: list[str], optional
|
|
2740
|
+
:param async_: Perform the request asynchronously
|
|
2741
|
+
:type async_: bool, optional
|
|
2742
|
+
:rtype: FileZipInfo
|
|
2501
2743
|
"""
|
|
2502
2744
|
|
|
2503
2745
|
all_params = ['container_id','analysis_id','filename','ticket','info','member','view','range','x_accept_feature',] # noqa: E501
|
|
@@ -2592,17 +2834,27 @@ class ContainersApi(object):
|
|
|
2592
2834
|
|
|
2593
2835
|
This method makes a synchronous HTTP request by default.
|
|
2594
2836
|
|
|
2595
|
-
:param
|
|
2596
|
-
:
|
|
2597
|
-
:param
|
|
2598
|
-
:
|
|
2599
|
-
:param
|
|
2600
|
-
:
|
|
2601
|
-
:param
|
|
2602
|
-
:
|
|
2603
|
-
:param
|
|
2604
|
-
:
|
|
2605
|
-
:
|
|
2837
|
+
:param container_id: 24-character hex ID
|
|
2838
|
+
:type container_id: str
|
|
2839
|
+
:param analysis_id: 24-char hex analysis id
|
|
2840
|
+
:type analysis_id: str
|
|
2841
|
+
:param filename: filename to download (get tar of all if empty)
|
|
2842
|
+
:type filename: str
|
|
2843
|
+
:param ticket: ticket id of the outputs to download
|
|
2844
|
+
:type ticket: str, optional
|
|
2845
|
+
:param info: If the file is a zipfile, return a json response of zipfile member information, defaults to false
|
|
2846
|
+
:type info: bool, optional
|
|
2847
|
+
:param member: The filename of a zipfile member to download rather than the entire file
|
|
2848
|
+
:type member: str, optional
|
|
2849
|
+
:param view: feature flag for view/download, defaults to false
|
|
2850
|
+
:type view: bool, optional
|
|
2851
|
+
:param range: byte ranges to return
|
|
2852
|
+
:type range: str, optional
|
|
2853
|
+
:param x_accept_feature: redirect header, defaults to []
|
|
2854
|
+
:type x_accept_feature: list[str], optional
|
|
2855
|
+
:param async_: Perform the request asynchronously
|
|
2856
|
+
:type async_: bool, optional
|
|
2857
|
+
:rtype: union[DownloadTicketStub,ZipfileInfo]
|
|
2606
2858
|
"""
|
|
2607
2859
|
ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
|
|
2608
2860
|
kwargs['_return_http_data_only'] = True
|
|
@@ -2625,17 +2877,27 @@ class ContainersApi(object):
|
|
|
2625
2877
|
|
|
2626
2878
|
This method makes a synchronous HTTP request by default.
|
|
2627
2879
|
|
|
2628
|
-
:param
|
|
2629
|
-
:
|
|
2630
|
-
:param
|
|
2631
|
-
:
|
|
2632
|
-
:param
|
|
2633
|
-
:
|
|
2634
|
-
:param
|
|
2635
|
-
:
|
|
2636
|
-
:param
|
|
2637
|
-
:
|
|
2638
|
-
:
|
|
2880
|
+
:param container_id: 24-character hex ID
|
|
2881
|
+
:type container_id: str
|
|
2882
|
+
:param analysis_id: 24-char hex analysis id
|
|
2883
|
+
:type analysis_id: str
|
|
2884
|
+
:param filename: filename to download (get tar of all if empty)
|
|
2885
|
+
:type filename: str
|
|
2886
|
+
:param ticket: ticket id of the outputs to download
|
|
2887
|
+
:type ticket: str, optional
|
|
2888
|
+
:param info: If the file is a zipfile, return a json response of zipfile member information, defaults to false
|
|
2889
|
+
:type info: bool, optional
|
|
2890
|
+
:param member: The filename of a zipfile member to download rather than the entire file
|
|
2891
|
+
:type member: str, optional
|
|
2892
|
+
:param view: feature flag for view/download, defaults to false
|
|
2893
|
+
:type view: bool, optional
|
|
2894
|
+
:param range: byte ranges to return
|
|
2895
|
+
:type range: str, optional
|
|
2896
|
+
:param x_accept_feature: redirect header, defaults to []
|
|
2897
|
+
:type x_accept_feature: list[str], optional
|
|
2898
|
+
:param async_: Perform the request asynchronously
|
|
2899
|
+
:type async_: bool, optional
|
|
2900
|
+
:rtype: union[DownloadTicketStub,ZipfileInfo]
|
|
2639
2901
|
"""
|
|
2640
2902
|
|
|
2641
2903
|
all_params = ['container_id','analysis_id','filename','ticket','info','member','view','range','x_accept_feature',] # noqa: E501
|
|
@@ -2729,11 +2991,15 @@ class ContainersApi(object):
|
|
|
2729
2991
|
Find Container by ID
|
|
2730
2992
|
This method makes a synchronous HTTP request by default.
|
|
2731
2993
|
|
|
2732
|
-
:param
|
|
2733
|
-
:
|
|
2734
|
-
:param
|
|
2735
|
-
:
|
|
2736
|
-
:
|
|
2994
|
+
:param container_id:
|
|
2995
|
+
:type container_id: str
|
|
2996
|
+
:param join:
|
|
2997
|
+
:type join: JoinType, optional
|
|
2998
|
+
:param join_avatars:, defaults to false
|
|
2999
|
+
:type join_avatars: bool, optional
|
|
3000
|
+
:param async_: Perform the request asynchronously
|
|
3001
|
+
:type async_: bool, optional
|
|
3002
|
+
:rtype: union[GroupContainerOutput,ProjectContainerOutput,SubjectContainerOutput,SessionContainerOutput,AcquisitionContainerOutput,AnalysisContainerOutput,CollectionContainerOutput]
|
|
2737
3003
|
"""
|
|
2738
3004
|
ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
|
|
2739
3005
|
kwargs['_return_http_data_only'] = True
|
|
@@ -2757,11 +3023,15 @@ class ContainersApi(object):
|
|
|
2757
3023
|
Find Container by ID
|
|
2758
3024
|
This method makes a synchronous HTTP request by default.
|
|
2759
3025
|
|
|
2760
|
-
:param
|
|
2761
|
-
:
|
|
2762
|
-
:param
|
|
2763
|
-
:
|
|
2764
|
-
:
|
|
3026
|
+
:param container_id:
|
|
3027
|
+
:type container_id: str
|
|
3028
|
+
:param join:
|
|
3029
|
+
:type join: JoinType, optional
|
|
3030
|
+
:param join_avatars:, defaults to false
|
|
3031
|
+
:type join_avatars: bool, optional
|
|
3032
|
+
:param async_: Perform the request asynchronously
|
|
3033
|
+
:type async_: bool, optional
|
|
3034
|
+
:rtype: union[GroupContainerOutput,ProjectContainerOutput,SubjectContainerOutput,SessionContainerOutput,AcquisitionContainerOutput,AnalysisContainerOutput,CollectionContainerOutput]
|
|
2765
3035
|
"""
|
|
2766
3036
|
|
|
2767
3037
|
all_params = ['container_id','join','join_avatars',] # noqa: E501
|
|
@@ -2834,20 +3104,33 @@ class ContainersApi(object):
|
|
|
2834
3104
|
Returns analyses that directly belong to this resource.
|
|
2835
3105
|
This method makes a synchronous HTTP request by default.
|
|
2836
3106
|
|
|
2837
|
-
:param
|
|
2838
|
-
:
|
|
2839
|
-
:param
|
|
2840
|
-
:
|
|
2841
|
-
:param
|
|
2842
|
-
:
|
|
2843
|
-
:param
|
|
2844
|
-
:
|
|
2845
|
-
:param
|
|
2846
|
-
:
|
|
2847
|
-
:param
|
|
2848
|
-
:
|
|
2849
|
-
:param
|
|
2850
|
-
:
|
|
3107
|
+
:param cid:
|
|
3108
|
+
:type cid: str
|
|
3109
|
+
:param inflate_job:, defaults to false
|
|
3110
|
+
:type inflate_job: bool, optional
|
|
3111
|
+
:param join_avatars:, defaults to false
|
|
3112
|
+
:type join_avatars: bool, optional
|
|
3113
|
+
:param join:
|
|
3114
|
+
:type join: JoinType, optional
|
|
3115
|
+
:param include_all_info: Include all info in returned objects, defaults to false
|
|
3116
|
+
:type include_all_info: bool, optional
|
|
3117
|
+
:param filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
3118
|
+
:type filter: str, optional
|
|
3119
|
+
:param sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
3120
|
+
:type sort: str, optional
|
|
3121
|
+
:param limit: The maximum number of entries to return.
|
|
3122
|
+
:type limit: int, optional
|
|
3123
|
+
:param skip: The number of entries to skip., defaults to 0
|
|
3124
|
+
:type skip: int, optional
|
|
3125
|
+
:param page: The page number (i.e. skip limit*page entries)
|
|
3126
|
+
:type page: int, optional
|
|
3127
|
+
:param after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
3128
|
+
:type after_id: str, optional
|
|
3129
|
+
:param x_accept_feature:, defaults to []
|
|
3130
|
+
:type x_accept_feature: list[str], optional
|
|
3131
|
+
:param async_: Perform the request asynchronously
|
|
3132
|
+
:type async_: bool, optional
|
|
3133
|
+
:rtype: union[Page,list[union[AnalysisListOutput,AnalysisListOutputInflatedJob]]]
|
|
2851
3134
|
"""
|
|
2852
3135
|
ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
|
|
2853
3136
|
kwargs['_return_http_data_only'] = True
|
|
@@ -2871,20 +3154,33 @@ class ContainersApi(object):
|
|
|
2871
3154
|
Returns analyses that directly belong to this resource.
|
|
2872
3155
|
This method makes a synchronous HTTP request by default.
|
|
2873
3156
|
|
|
2874
|
-
:param
|
|
2875
|
-
:
|
|
2876
|
-
:param
|
|
2877
|
-
:
|
|
2878
|
-
:param
|
|
2879
|
-
:
|
|
2880
|
-
:param
|
|
2881
|
-
:
|
|
2882
|
-
:param
|
|
2883
|
-
:
|
|
2884
|
-
:param
|
|
2885
|
-
:
|
|
2886
|
-
:param
|
|
2887
|
-
:
|
|
3157
|
+
:param cid:
|
|
3158
|
+
:type cid: str
|
|
3159
|
+
:param inflate_job:, defaults to false
|
|
3160
|
+
:type inflate_job: bool, optional
|
|
3161
|
+
:param join_avatars:, defaults to false
|
|
3162
|
+
:type join_avatars: bool, optional
|
|
3163
|
+
:param join:
|
|
3164
|
+
:type join: JoinType, optional
|
|
3165
|
+
:param include_all_info: Include all info in returned objects, defaults to false
|
|
3166
|
+
:type include_all_info: bool, optional
|
|
3167
|
+
:param filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
3168
|
+
:type filter: str, optional
|
|
3169
|
+
:param sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
3170
|
+
:type sort: str, optional
|
|
3171
|
+
:param limit: The maximum number of entries to return.
|
|
3172
|
+
:type limit: int, optional
|
|
3173
|
+
:param skip: The number of entries to skip., defaults to 0
|
|
3174
|
+
:type skip: int, optional
|
|
3175
|
+
:param page: The page number (i.e. skip limit*page entries)
|
|
3176
|
+
:type page: int, optional
|
|
3177
|
+
:param after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
3178
|
+
:type after_id: str, optional
|
|
3179
|
+
:param x_accept_feature:, defaults to []
|
|
3180
|
+
:type x_accept_feature: list[str], optional
|
|
3181
|
+
:param async_: Perform the request asynchronously
|
|
3182
|
+
:type async_: bool, optional
|
|
3183
|
+
:rtype: union[Page,list[union[AnalysisListOutput,AnalysisListOutputInflatedJob]]]
|
|
2888
3184
|
"""
|
|
2889
3185
|
|
|
2890
3186
|
all_params = ['cid','inflate_job','join_avatars','join','include_all_info','filter','sort','limit','skip','page','after_id','x_accept_feature',] # noqa: E501
|
|
@@ -2976,13 +3272,19 @@ class ContainersApi(object):
|
|
|
2976
3272
|
Get an analysis.
|
|
2977
3273
|
This method makes a synchronous HTTP request by default.
|
|
2978
3274
|
|
|
2979
|
-
:param
|
|
2980
|
-
:
|
|
2981
|
-
:param
|
|
2982
|
-
:
|
|
2983
|
-
:param
|
|
2984
|
-
:
|
|
2985
|
-
:
|
|
3275
|
+
:param cid:
|
|
3276
|
+
:type cid: str
|
|
3277
|
+
:param analysis_id:
|
|
3278
|
+
:type analysis_id: str
|
|
3279
|
+
:param inflate_job: Return job as an object instead of an id, defaults to false
|
|
3280
|
+
:type inflate_job: bool, optional
|
|
3281
|
+
:param join_avatars:, defaults to false
|
|
3282
|
+
:type join_avatars: bool, optional
|
|
3283
|
+
:param join:
|
|
3284
|
+
:type join: JoinType, optional
|
|
3285
|
+
:param async_: Perform the request asynchronously
|
|
3286
|
+
:type async_: bool, optional
|
|
3287
|
+
:rtype: union[AnalysisOutputInflatedJob,AnalysisOutput]
|
|
2986
3288
|
"""
|
|
2987
3289
|
ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
|
|
2988
3290
|
kwargs['_return_http_data_only'] = True
|
|
@@ -3006,13 +3308,19 @@ class ContainersApi(object):
|
|
|
3006
3308
|
Get an analysis.
|
|
3007
3309
|
This method makes a synchronous HTTP request by default.
|
|
3008
3310
|
|
|
3009
|
-
:param
|
|
3010
|
-
:
|
|
3011
|
-
:param
|
|
3012
|
-
:
|
|
3013
|
-
:param
|
|
3014
|
-
:
|
|
3015
|
-
:
|
|
3311
|
+
:param cid:
|
|
3312
|
+
:type cid: str
|
|
3313
|
+
:param analysis_id:
|
|
3314
|
+
:type analysis_id: str
|
|
3315
|
+
:param inflate_job: Return job as an object instead of an id, defaults to false
|
|
3316
|
+
:type inflate_job: bool, optional
|
|
3317
|
+
:param join_avatars:, defaults to false
|
|
3318
|
+
:type join_avatars: bool, optional
|
|
3319
|
+
:param join:
|
|
3320
|
+
:type join: JoinType, optional
|
|
3321
|
+
:param async_: Perform the request asynchronously
|
|
3322
|
+
:type async_: bool, optional
|
|
3323
|
+
:rtype: union[AnalysisOutputInflatedJob,AnalysisOutput]
|
|
3016
3324
|
"""
|
|
3017
3325
|
|
|
3018
3326
|
all_params = ['cid','analysis_id','inflate_job','join_avatars','join',] # noqa: E501
|
|
@@ -3093,10 +3401,13 @@ class ContainersApi(object):
|
|
|
3093
3401
|
Get info for a particular file.
|
|
3094
3402
|
This method makes a synchronous HTTP request by default.
|
|
3095
3403
|
|
|
3096
|
-
:param
|
|
3097
|
-
:
|
|
3098
|
-
:param
|
|
3099
|
-
:
|
|
3404
|
+
:param cid: Container Id
|
|
3405
|
+
:type cid: str
|
|
3406
|
+
:param filename:
|
|
3407
|
+
:type filename: str
|
|
3408
|
+
:param async_: Perform the request asynchronously
|
|
3409
|
+
:type async_: bool, optional
|
|
3410
|
+
:rtype: FileOutput
|
|
3100
3411
|
"""
|
|
3101
3412
|
ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
|
|
3102
3413
|
kwargs['_return_http_data_only'] = True
|
|
@@ -3120,10 +3431,13 @@ class ContainersApi(object):
|
|
|
3120
3431
|
Get info for a particular file.
|
|
3121
3432
|
This method makes a synchronous HTTP request by default.
|
|
3122
3433
|
|
|
3123
|
-
:param
|
|
3124
|
-
:
|
|
3125
|
-
:param
|
|
3126
|
-
:
|
|
3434
|
+
:param cid: Container Id
|
|
3435
|
+
:type cid: str
|
|
3436
|
+
:param filename:
|
|
3437
|
+
:type filename: str
|
|
3438
|
+
:param async_: Perform the request asynchronously
|
|
3439
|
+
:type async_: bool, optional
|
|
3440
|
+
:rtype: FileOutput
|
|
3127
3441
|
"""
|
|
3128
3442
|
|
|
3129
3443
|
all_params = ['cid','filename',] # noqa: E501
|
|
@@ -3198,10 +3512,13 @@ class ContainersApi(object):
|
|
|
3198
3512
|
Get a note of a(n) container
|
|
3199
3513
|
This method makes a synchronous HTTP request by default.
|
|
3200
3514
|
|
|
3201
|
-
:param
|
|
3202
|
-
:
|
|
3203
|
-
:param
|
|
3204
|
-
:
|
|
3515
|
+
:param cid:
|
|
3516
|
+
:type cid: str
|
|
3517
|
+
:param note_id:
|
|
3518
|
+
:type note_id: str
|
|
3519
|
+
:param async_: Perform the request asynchronously
|
|
3520
|
+
:type async_: bool, optional
|
|
3521
|
+
:rtype: Note
|
|
3205
3522
|
"""
|
|
3206
3523
|
ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
|
|
3207
3524
|
kwargs['_return_http_data_only'] = True
|
|
@@ -3225,10 +3542,13 @@ class ContainersApi(object):
|
|
|
3225
3542
|
Get a note of a(n) container
|
|
3226
3543
|
This method makes a synchronous HTTP request by default.
|
|
3227
3544
|
|
|
3228
|
-
:param
|
|
3229
|
-
:
|
|
3230
|
-
:param
|
|
3231
|
-
:
|
|
3545
|
+
:param cid:
|
|
3546
|
+
:type cid: str
|
|
3547
|
+
:param note_id:
|
|
3548
|
+
:type note_id: str
|
|
3549
|
+
:param async_: Perform the request asynchronously
|
|
3550
|
+
:type async_: bool, optional
|
|
3551
|
+
:rtype: Note
|
|
3232
3552
|
"""
|
|
3233
3553
|
|
|
3234
3554
|
all_params = ['cid','note_id',] # noqa: E501
|
|
@@ -3303,10 +3623,13 @@ class ContainersApi(object):
|
|
|
3303
3623
|
Get the value of a tag, by name
|
|
3304
3624
|
This method makes a synchronous HTTP request by default.
|
|
3305
3625
|
|
|
3306
|
-
:param
|
|
3307
|
-
:
|
|
3308
|
-
:param
|
|
3309
|
-
:
|
|
3626
|
+
:param cid:
|
|
3627
|
+
:type cid: str
|
|
3628
|
+
:param value: The tag to interact with
|
|
3629
|
+
:type value: str
|
|
3630
|
+
:param async_: Perform the request asynchronously
|
|
3631
|
+
:type async_: bool, optional
|
|
3632
|
+
:rtype: str
|
|
3310
3633
|
"""
|
|
3311
3634
|
ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
|
|
3312
3635
|
kwargs['_return_http_data_only'] = True
|
|
@@ -3330,10 +3653,13 @@ class ContainersApi(object):
|
|
|
3330
3653
|
Get the value of a tag, by name
|
|
3331
3654
|
This method makes a synchronous HTTP request by default.
|
|
3332
3655
|
|
|
3333
|
-
:param
|
|
3334
|
-
:
|
|
3335
|
-
:param
|
|
3336
|
-
:
|
|
3656
|
+
:param cid:
|
|
3657
|
+
:type cid: str
|
|
3658
|
+
:param value: The tag to interact with
|
|
3659
|
+
:type value: str
|
|
3660
|
+
:param async_: Perform the request asynchronously
|
|
3661
|
+
:type async_: bool, optional
|
|
3662
|
+
:rtype: str
|
|
3337
3663
|
"""
|
|
3338
3664
|
|
|
3339
3665
|
all_params = ['cid','value',] # noqa: E501
|
|
@@ -3408,16 +3734,25 @@ class ContainersApi(object):
|
|
|
3408
3734
|
View all containers
|
|
3409
3735
|
This method makes a synchronous HTTP request by default.
|
|
3410
3736
|
|
|
3411
|
-
:param
|
|
3412
|
-
:
|
|
3413
|
-
:param
|
|
3414
|
-
:
|
|
3415
|
-
:param
|
|
3416
|
-
:
|
|
3417
|
-
:param
|
|
3418
|
-
:
|
|
3419
|
-
:param
|
|
3420
|
-
:
|
|
3737
|
+
:param container_id: The ID of the container, one of user, group or project. Use \"site\" as containerId to save or get a site data view.
|
|
3738
|
+
:type container_id: str
|
|
3739
|
+
:param filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
3740
|
+
:type filter: str, optional
|
|
3741
|
+
:param sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
3742
|
+
:type sort: str, optional
|
|
3743
|
+
:param limit: The maximum number of entries to return.
|
|
3744
|
+
:type limit: int, optional
|
|
3745
|
+
:param skip: The number of entries to skip., defaults to 0
|
|
3746
|
+
:type skip: int, optional
|
|
3747
|
+
:param page: The page number (i.e. skip limit*page entries)
|
|
3748
|
+
:type page: int, optional
|
|
3749
|
+
:param after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
3750
|
+
:type after_id: str, optional
|
|
3751
|
+
:param x_accept_feature:, defaults to []
|
|
3752
|
+
:type x_accept_feature: list[union[HeaderFeature,str]], optional
|
|
3753
|
+
:param async_: Perform the request asynchronously
|
|
3754
|
+
:type async_: bool, optional
|
|
3755
|
+
:rtype: union[Page,list[ViewOutput]]
|
|
3421
3756
|
"""
|
|
3422
3757
|
ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
|
|
3423
3758
|
kwargs['_return_http_data_only'] = True
|
|
@@ -3441,16 +3776,25 @@ class ContainersApi(object):
|
|
|
3441
3776
|
View all containers
|
|
3442
3777
|
This method makes a synchronous HTTP request by default.
|
|
3443
3778
|
|
|
3444
|
-
:param
|
|
3445
|
-
:
|
|
3446
|
-
:param
|
|
3447
|
-
:
|
|
3448
|
-
:param
|
|
3449
|
-
:
|
|
3450
|
-
:param
|
|
3451
|
-
:
|
|
3452
|
-
:param
|
|
3453
|
-
:
|
|
3779
|
+
:param container_id: The ID of the container, one of user, group or project. Use \"site\" as containerId to save or get a site data view.
|
|
3780
|
+
:type container_id: str
|
|
3781
|
+
:param filter: Comma separated filters to apply. Commas not used as separators must be escaped with backslash '\\'. (e.g. label=my-label,created>2018-09-22)
|
|
3782
|
+
:type filter: str, optional
|
|
3783
|
+
:param sort: The sort fields and order. (e.g. label:asc,created:desc)
|
|
3784
|
+
:type sort: str, optional
|
|
3785
|
+
:param limit: The maximum number of entries to return.
|
|
3786
|
+
:type limit: int, optional
|
|
3787
|
+
:param skip: The number of entries to skip., defaults to 0
|
|
3788
|
+
:type skip: int, optional
|
|
3789
|
+
:param page: The page number (i.e. skip limit*page entries)
|
|
3790
|
+
:type page: int, optional
|
|
3791
|
+
:param after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
|
|
3792
|
+
:type after_id: str, optional
|
|
3793
|
+
:param x_accept_feature:, defaults to []
|
|
3794
|
+
:type x_accept_feature: list[union[HeaderFeature,str]], optional
|
|
3795
|
+
:param async_: Perform the request asynchronously
|
|
3796
|
+
:type async_: bool, optional
|
|
3797
|
+
:rtype: union[Page,list[ViewOutput]]
|
|
3454
3798
|
"""
|
|
3455
3799
|
|
|
3456
3800
|
all_params = ['container_id','filter','sort','limit','skip','page','after_id','x_accept_feature',] # noqa: E501
|
|
@@ -3534,10 +3878,13 @@ class ContainersApi(object):
|
|
|
3534
3878
|
Modify Container
|
|
3535
3879
|
This method makes a synchronous HTTP request by default.
|
|
3536
3880
|
|
|
3537
|
-
:param
|
|
3538
|
-
:
|
|
3539
|
-
:param
|
|
3540
|
-
:
|
|
3881
|
+
:param container_id:
|
|
3882
|
+
:type container_id: str
|
|
3883
|
+
:param body:
|
|
3884
|
+
:type body: ContainerUpdate
|
|
3885
|
+
:param async_: Perform the request asynchronously
|
|
3886
|
+
:type async_: bool, optional
|
|
3887
|
+
:rtype: ModifiedResult
|
|
3541
3888
|
"""
|
|
3542
3889
|
ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
|
|
3543
3890
|
kwargs['_return_http_data_only'] = True
|
|
@@ -3561,10 +3908,13 @@ class ContainersApi(object):
|
|
|
3561
3908
|
Modify Container
|
|
3562
3909
|
This method makes a synchronous HTTP request by default.
|
|
3563
3910
|
|
|
3564
|
-
:param
|
|
3565
|
-
:
|
|
3566
|
-
:param
|
|
3567
|
-
:
|
|
3911
|
+
:param container_id:
|
|
3912
|
+
:type container_id: str
|
|
3913
|
+
:param body:
|
|
3914
|
+
:type body: ContainerUpdate
|
|
3915
|
+
:param async_: Perform the request asynchronously
|
|
3916
|
+
:type async_: bool, optional
|
|
3917
|
+
:rtype: ModifiedResult
|
|
3568
3918
|
"""
|
|
3569
3919
|
|
|
3570
3920
|
all_params = ['container_id','body',] # noqa: E501
|
|
@@ -3650,11 +4000,15 @@ class ContainersApi(object):
|
|
|
3650
4000
|
Modify an analysis.
|
|
3651
4001
|
This method makes a synchronous HTTP request by default.
|
|
3652
4002
|
|
|
3653
|
-
:param
|
|
3654
|
-
:
|
|
3655
|
-
:param
|
|
3656
|
-
:
|
|
3657
|
-
:
|
|
4003
|
+
:param cid:
|
|
4004
|
+
:type cid: str
|
|
4005
|
+
:param analysis_id:
|
|
4006
|
+
:type analysis_id: str
|
|
4007
|
+
:param body:
|
|
4008
|
+
:type body: AnalysisModifyInput
|
|
4009
|
+
:param async_: Perform the request asynchronously
|
|
4010
|
+
:type async_: bool, optional
|
|
4011
|
+
:rtype: ModifiedResult
|
|
3658
4012
|
"""
|
|
3659
4013
|
ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
|
|
3660
4014
|
kwargs['_return_http_data_only'] = True
|
|
@@ -3678,11 +4032,15 @@ class ContainersApi(object):
|
|
|
3678
4032
|
Modify an analysis.
|
|
3679
4033
|
This method makes a synchronous HTTP request by default.
|
|
3680
4034
|
|
|
3681
|
-
:param
|
|
3682
|
-
:
|
|
3683
|
-
:param
|
|
3684
|
-
:
|
|
3685
|
-
:
|
|
4035
|
+
:param cid:
|
|
4036
|
+
:type cid: str
|
|
4037
|
+
:param analysis_id:
|
|
4038
|
+
:type analysis_id: str
|
|
4039
|
+
:param body:
|
|
4040
|
+
:type body: AnalysisModifyInput
|
|
4041
|
+
:param async_: Perform the request asynchronously
|
|
4042
|
+
:type async_: bool, optional
|
|
4043
|
+
:rtype: ModifiedResult
|
|
3686
4044
|
"""
|
|
3687
4045
|
|
|
3688
4046
|
all_params = ['cid','analysis_id','body',] # noqa: E501
|
|
@@ -3774,11 +4132,15 @@ class ContainersApi(object):
|
|
|
3774
4132
|
Note: If modifying a file's modality, the current classification will be cleared (except for items in the \"Custom\" list)
|
|
3775
4133
|
This method makes a synchronous HTTP request by default.
|
|
3776
4134
|
|
|
3777
|
-
:param
|
|
3778
|
-
:
|
|
3779
|
-
:param
|
|
3780
|
-
:
|
|
3781
|
-
:
|
|
4135
|
+
:param cid:
|
|
4136
|
+
:type cid: str
|
|
4137
|
+
:param filename:
|
|
4138
|
+
:type filename: str
|
|
4139
|
+
:param body:
|
|
4140
|
+
:type body: FileModifyInput
|
|
4141
|
+
:param async_: Perform the request asynchronously
|
|
4142
|
+
:type async_: bool, optional
|
|
4143
|
+
:rtype: ModifiedResult
|
|
3782
4144
|
"""
|
|
3783
4145
|
ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
|
|
3784
4146
|
kwargs['_return_http_data_only'] = True
|
|
@@ -3802,11 +4164,15 @@ class ContainersApi(object):
|
|
|
3802
4164
|
Note: If modifying a file's modality, the current classification will be cleared (except for items in the \"Custom\" list)
|
|
3803
4165
|
This method makes a synchronous HTTP request by default.
|
|
3804
4166
|
|
|
3805
|
-
:param
|
|
3806
|
-
:
|
|
3807
|
-
:param
|
|
3808
|
-
:
|
|
3809
|
-
:
|
|
4167
|
+
:param cid:
|
|
4168
|
+
:type cid: str
|
|
4169
|
+
:param filename:
|
|
4170
|
+
:type filename: str
|
|
4171
|
+
:param body:
|
|
4172
|
+
:type body: FileModifyInput
|
|
4173
|
+
:param async_: Perform the request asynchronously
|
|
4174
|
+
:type async_: bool, optional
|
|
4175
|
+
:rtype: ModifiedResult
|
|
3810
4176
|
"""
|
|
3811
4177
|
|
|
3812
4178
|
all_params = ['cid','filename','body',] # noqa: E501
|
|
@@ -3898,11 +4264,15 @@ class ContainersApi(object):
|
|
|
3898
4264
|
If replacing a file's classification, the modality can optionally be modified as well.
|
|
3899
4265
|
This method makes a synchronous HTTP request by default.
|
|
3900
4266
|
|
|
3901
|
-
:param
|
|
3902
|
-
:
|
|
3903
|
-
:param
|
|
3904
|
-
:
|
|
3905
|
-
:
|
|
4267
|
+
:param cid:
|
|
4268
|
+
:type cid: str
|
|
4269
|
+
:param filename:
|
|
4270
|
+
:type filename: str
|
|
4271
|
+
:param body:
|
|
4272
|
+
:type body: FileClassificationDelta
|
|
4273
|
+
:param async_: Perform the request asynchronously
|
|
4274
|
+
:type async_: bool, optional
|
|
4275
|
+
:rtype: ModifiedResult
|
|
3906
4276
|
"""
|
|
3907
4277
|
ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
|
|
3908
4278
|
kwargs['_return_http_data_only'] = True
|
|
@@ -3926,11 +4296,15 @@ class ContainersApi(object):
|
|
|
3926
4296
|
If replacing a file's classification, the modality can optionally be modified as well.
|
|
3927
4297
|
This method makes a synchronous HTTP request by default.
|
|
3928
4298
|
|
|
3929
|
-
:param
|
|
3930
|
-
:
|
|
3931
|
-
:param
|
|
3932
|
-
:
|
|
3933
|
-
:
|
|
4299
|
+
:param cid:
|
|
4300
|
+
:type cid: str
|
|
4301
|
+
:param filename:
|
|
4302
|
+
:type filename: str
|
|
4303
|
+
:param body:
|
|
4304
|
+
:type body: FileClassificationDelta
|
|
4305
|
+
:param async_: Perform the request asynchronously
|
|
4306
|
+
:type async_: bool, optional
|
|
4307
|
+
:rtype: ModifiedResult
|
|
3934
4308
|
"""
|
|
3935
4309
|
|
|
3936
4310
|
all_params = ['cid','filename','body',] # noqa: E501
|
|
@@ -4022,11 +4396,15 @@ class ContainersApi(object):
|
|
|
4022
4396
|
Modify and return the file 'info' field
|
|
4023
4397
|
This method makes a synchronous HTTP request by default.
|
|
4024
4398
|
|
|
4025
|
-
:param
|
|
4026
|
-
:
|
|
4027
|
-
:param
|
|
4028
|
-
:
|
|
4029
|
-
:
|
|
4399
|
+
:param cid:
|
|
4400
|
+
:type cid: str
|
|
4401
|
+
:param filename:
|
|
4402
|
+
:type filename: str
|
|
4403
|
+
:param body:
|
|
4404
|
+
:type body: Info
|
|
4405
|
+
:param async_: Perform the request asynchronously
|
|
4406
|
+
:type async_: bool, optional
|
|
4407
|
+
:rtype: ModifiedResult
|
|
4030
4408
|
"""
|
|
4031
4409
|
ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
|
|
4032
4410
|
kwargs['_return_http_data_only'] = True
|
|
@@ -4050,11 +4428,15 @@ class ContainersApi(object):
|
|
|
4050
4428
|
Modify and return the file 'info' field
|
|
4051
4429
|
This method makes a synchronous HTTP request by default.
|
|
4052
4430
|
|
|
4053
|
-
:param
|
|
4054
|
-
:
|
|
4055
|
-
:param
|
|
4056
|
-
:
|
|
4057
|
-
:
|
|
4431
|
+
:param cid:
|
|
4432
|
+
:type cid: str
|
|
4433
|
+
:param filename:
|
|
4434
|
+
:type filename: str
|
|
4435
|
+
:param body:
|
|
4436
|
+
:type body: Info
|
|
4437
|
+
:param async_: Perform the request asynchronously
|
|
4438
|
+
:type async_: bool, optional
|
|
4439
|
+
:rtype: ModifiedResult
|
|
4058
4440
|
"""
|
|
4059
4441
|
|
|
4060
4442
|
all_params = ['cid','filename','body',] # noqa: E501
|
|
@@ -4146,10 +4528,13 @@ class ContainersApi(object):
|
|
|
4146
4528
|
Update or replace info for a(n) container. Keys that contain '$' or '.' will be sanitized in the process of being updated on the container.
|
|
4147
4529
|
This method makes a synchronous HTTP request by default.
|
|
4148
4530
|
|
|
4149
|
-
:param
|
|
4150
|
-
:
|
|
4151
|
-
:param
|
|
4152
|
-
:
|
|
4531
|
+
:param cid:
|
|
4532
|
+
:type cid: str
|
|
4533
|
+
:param body:
|
|
4534
|
+
:type body: Info
|
|
4535
|
+
:param async_: Perform the request asynchronously
|
|
4536
|
+
:type async_: bool, optional
|
|
4537
|
+
:rtype: ModifiedResult
|
|
4153
4538
|
"""
|
|
4154
4539
|
ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
|
|
4155
4540
|
kwargs['_return_http_data_only'] = True
|
|
@@ -4173,10 +4558,13 @@ class ContainersApi(object):
|
|
|
4173
4558
|
Update or replace info for a(n) container. Keys that contain '$' or '.' will be sanitized in the process of being updated on the container.
|
|
4174
4559
|
This method makes a synchronous HTTP request by default.
|
|
4175
4560
|
|
|
4176
|
-
:param
|
|
4177
|
-
:
|
|
4178
|
-
:param
|
|
4179
|
-
:
|
|
4561
|
+
:param cid:
|
|
4562
|
+
:type cid: str
|
|
4563
|
+
:param body:
|
|
4564
|
+
:type body: Info
|
|
4565
|
+
:param async_: Perform the request asynchronously
|
|
4566
|
+
:type async_: bool, optional
|
|
4567
|
+
:rtype: ModifiedResult
|
|
4180
4568
|
"""
|
|
4181
4569
|
|
|
4182
4570
|
all_params = ['cid','body',] # noqa: E501
|
|
@@ -4262,11 +4650,15 @@ class ContainersApi(object):
|
|
|
4262
4650
|
Update a note of a(n) container
|
|
4263
4651
|
This method makes a synchronous HTTP request by default.
|
|
4264
4652
|
|
|
4265
|
-
:param
|
|
4266
|
-
:
|
|
4267
|
-
:param
|
|
4268
|
-
:
|
|
4269
|
-
:
|
|
4653
|
+
:param cid:
|
|
4654
|
+
:type cid: str
|
|
4655
|
+
:param note_id:
|
|
4656
|
+
:type note_id: str
|
|
4657
|
+
:param body:
|
|
4658
|
+
:type body: NoteInput
|
|
4659
|
+
:param async_: Perform the request asynchronously
|
|
4660
|
+
:type async_: bool, optional
|
|
4661
|
+
:rtype: int
|
|
4270
4662
|
"""
|
|
4271
4663
|
ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
|
|
4272
4664
|
kwargs['_return_http_data_only'] = True
|
|
@@ -4290,11 +4682,15 @@ class ContainersApi(object):
|
|
|
4290
4682
|
Update a note of a(n) container
|
|
4291
4683
|
This method makes a synchronous HTTP request by default.
|
|
4292
4684
|
|
|
4293
|
-
:param
|
|
4294
|
-
:
|
|
4295
|
-
:param
|
|
4296
|
-
:
|
|
4297
|
-
:
|
|
4685
|
+
:param cid:
|
|
4686
|
+
:type cid: str
|
|
4687
|
+
:param note_id:
|
|
4688
|
+
:type note_id: str
|
|
4689
|
+
:param body:
|
|
4690
|
+
:type body: NoteInput
|
|
4691
|
+
:param async_: Perform the request asynchronously
|
|
4692
|
+
:type async_: bool, optional
|
|
4693
|
+
:rtype: int
|
|
4298
4694
|
"""
|
|
4299
4695
|
|
|
4300
4696
|
all_params = ['cid','note_id','body',] # noqa: E501
|
|
@@ -4386,11 +4782,15 @@ class ContainersApi(object):
|
|
|
4386
4782
|
Rename a tag
|
|
4387
4783
|
This method makes a synchronous HTTP request by default.
|
|
4388
4784
|
|
|
4389
|
-
:param
|
|
4390
|
-
:
|
|
4391
|
-
:param
|
|
4392
|
-
:
|
|
4393
|
-
:
|
|
4785
|
+
:param cid:
|
|
4786
|
+
:type cid: str
|
|
4787
|
+
:param value: The tag to interact with
|
|
4788
|
+
:type value: str
|
|
4789
|
+
:param body:
|
|
4790
|
+
:type body: Tag
|
|
4791
|
+
:param async_: Perform the request asynchronously
|
|
4792
|
+
:type async_: bool, optional
|
|
4793
|
+
:rtype: str
|
|
4394
4794
|
"""
|
|
4395
4795
|
ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
|
|
4396
4796
|
kwargs['_return_http_data_only'] = True
|
|
@@ -4414,11 +4814,15 @@ class ContainersApi(object):
|
|
|
4414
4814
|
Rename a tag
|
|
4415
4815
|
This method makes a synchronous HTTP request by default.
|
|
4416
4816
|
|
|
4417
|
-
:param
|
|
4418
|
-
:
|
|
4419
|
-
:param
|
|
4420
|
-
:
|
|
4421
|
-
:
|
|
4817
|
+
:param cid:
|
|
4818
|
+
:type cid: str
|
|
4819
|
+
:param value: The tag to interact with
|
|
4820
|
+
:type value: str
|
|
4821
|
+
:param body:
|
|
4822
|
+
:type body: Tag
|
|
4823
|
+
:param async_: Perform the request asynchronously
|
|
4824
|
+
:type async_: bool, optional
|
|
4825
|
+
:rtype: str
|
|
4422
4826
|
"""
|
|
4423
4827
|
|
|
4424
4828
|
all_params = ['cid','value','body',] # noqa: E501
|
|
@@ -4510,18 +4914,29 @@ class ContainersApi(object):
|
|
|
4510
4914
|
Upload a file to a(n) container.
|
|
4511
4915
|
This method makes a synchronous HTTP request by default.
|
|
4512
4916
|
|
|
4513
|
-
:param
|
|
4514
|
-
:
|
|
4515
|
-
:param
|
|
4516
|
-
:
|
|
4517
|
-
:param
|
|
4518
|
-
:
|
|
4519
|
-
:param
|
|
4520
|
-
:
|
|
4521
|
-
:param
|
|
4522
|
-
:
|
|
4523
|
-
:param
|
|
4524
|
-
:
|
|
4917
|
+
:param container_id:
|
|
4918
|
+
:type container_id: str
|
|
4919
|
+
:param file: The file to upload
|
|
4920
|
+
:type file: str
|
|
4921
|
+
:param preserve_metadata:, defaults to false
|
|
4922
|
+
:type preserve_metadata: bool, optional
|
|
4923
|
+
:param ticket:
|
|
4924
|
+
:type ticket: str, optional
|
|
4925
|
+
:param id:
|
|
4926
|
+
:type id: str, optional
|
|
4927
|
+
:param level:
|
|
4928
|
+
:type level: ContainerType, optional
|
|
4929
|
+
:param job:
|
|
4930
|
+
:type job: str, optional
|
|
4931
|
+
:param metadata: Dictionary of file metadata (type, modality, info, etc.)
|
|
4932
|
+
:type metadata: object, optional
|
|
4933
|
+
:param x_accept_feature: redirect header, defaults to []
|
|
4934
|
+
:type x_accept_feature: list[str], optional
|
|
4935
|
+
:param content_type:
|
|
4936
|
+
:type content_type: str, optional
|
|
4937
|
+
:param async_: Perform the request asynchronously
|
|
4938
|
+
:type async_: bool, optional
|
|
4939
|
+
:rtype: union[list[FileOutput],UploadTicketOutput]
|
|
4525
4940
|
"""
|
|
4526
4941
|
ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
|
|
4527
4942
|
kwargs['_return_http_data_only'] = True
|
|
@@ -4545,18 +4960,29 @@ class ContainersApi(object):
|
|
|
4545
4960
|
Upload a file to a(n) container.
|
|
4546
4961
|
This method makes a synchronous HTTP request by default.
|
|
4547
4962
|
|
|
4548
|
-
:param
|
|
4549
|
-
:
|
|
4550
|
-
:param
|
|
4551
|
-
:
|
|
4552
|
-
:param
|
|
4553
|
-
:
|
|
4554
|
-
:param
|
|
4555
|
-
:
|
|
4556
|
-
:param
|
|
4557
|
-
:
|
|
4558
|
-
:param
|
|
4559
|
-
:
|
|
4963
|
+
:param container_id:
|
|
4964
|
+
:type container_id: str
|
|
4965
|
+
:param file: The file to upload
|
|
4966
|
+
:type file: str
|
|
4967
|
+
:param preserve_metadata:, defaults to false
|
|
4968
|
+
:type preserve_metadata: bool, optional
|
|
4969
|
+
:param ticket:
|
|
4970
|
+
:type ticket: str, optional
|
|
4971
|
+
:param id:
|
|
4972
|
+
:type id: str, optional
|
|
4973
|
+
:param level:
|
|
4974
|
+
:type level: ContainerType, optional
|
|
4975
|
+
:param job:
|
|
4976
|
+
:type job: str, optional
|
|
4977
|
+
:param metadata: Dictionary of file metadata (type, modality, info, etc.)
|
|
4978
|
+
:type metadata: object, optional
|
|
4979
|
+
:param x_accept_feature: redirect header, defaults to []
|
|
4980
|
+
:type x_accept_feature: list[str], optional
|
|
4981
|
+
:param content_type:
|
|
4982
|
+
:type content_type: str, optional
|
|
4983
|
+
:param async_: Perform the request asynchronously
|
|
4984
|
+
:type async_: bool, optional
|
|
4985
|
+
:rtype: union[list[FileOutput],UploadTicketOutput]
|
|
4560
4986
|
"""
|
|
4561
4987
|
|
|
4562
4988
|
all_params = ['container_id','file','preserve_metadata','ticket','id','level','job','metadata','x_accept_feature','content_type',] # noqa: E501
|
|
@@ -4652,16 +5078,25 @@ class ContainersApi(object):
|
|
|
4652
5078
|
Upload an output file to an analysis
|
|
4653
5079
|
This method makes a synchronous HTTP request by default.
|
|
4654
5080
|
|
|
4655
|
-
:param
|
|
4656
|
-
:
|
|
4657
|
-
:param
|
|
4658
|
-
:
|
|
4659
|
-
:param
|
|
4660
|
-
:
|
|
4661
|
-
:param
|
|
4662
|
-
:
|
|
4663
|
-
:param
|
|
4664
|
-
:
|
|
5081
|
+
:param cid:
|
|
5082
|
+
:type cid: str
|
|
5083
|
+
:param analysis_id:
|
|
5084
|
+
:type analysis_id: str
|
|
5085
|
+
:param file: The file to upload
|
|
5086
|
+
:type file: str
|
|
5087
|
+
:param ticket:
|
|
5088
|
+
:type ticket: str, optional
|
|
5089
|
+
:param id:
|
|
5090
|
+
:type id: str, optional
|
|
5091
|
+
:param level:
|
|
5092
|
+
:type level: ContainerType, optional
|
|
5093
|
+
:param job:
|
|
5094
|
+
:type job: str, optional
|
|
5095
|
+
:param content_type:
|
|
5096
|
+
:type content_type: str, optional
|
|
5097
|
+
:param async_: Perform the request asynchronously
|
|
5098
|
+
:type async_: bool, optional
|
|
5099
|
+
:rtype: list[FileOutput]
|
|
4665
5100
|
"""
|
|
4666
5101
|
ignore_simplified_return_value = kwargs.pop('_ignore_simplified_return_value', False)
|
|
4667
5102
|
kwargs['_return_http_data_only'] = True
|
|
@@ -4685,16 +5120,25 @@ class ContainersApi(object):
|
|
|
4685
5120
|
Upload an output file to an analysis
|
|
4686
5121
|
This method makes a synchronous HTTP request by default.
|
|
4687
5122
|
|
|
4688
|
-
:param
|
|
4689
|
-
:
|
|
4690
|
-
:param
|
|
4691
|
-
:
|
|
4692
|
-
:param
|
|
4693
|
-
:
|
|
4694
|
-
:param
|
|
4695
|
-
:
|
|
4696
|
-
:param
|
|
4697
|
-
:
|
|
5123
|
+
:param cid:
|
|
5124
|
+
:type cid: str
|
|
5125
|
+
:param analysis_id:
|
|
5126
|
+
:type analysis_id: str
|
|
5127
|
+
:param file: The file to upload
|
|
5128
|
+
:type file: str
|
|
5129
|
+
:param ticket:
|
|
5130
|
+
:type ticket: str, optional
|
|
5131
|
+
:param id:
|
|
5132
|
+
:type id: str, optional
|
|
5133
|
+
:param level:
|
|
5134
|
+
:type level: ContainerType, optional
|
|
5135
|
+
:param job:
|
|
5136
|
+
:type job: str, optional
|
|
5137
|
+
:param content_type:
|
|
5138
|
+
:type content_type: str, optional
|
|
5139
|
+
:param async_: Perform the request asynchronously
|
|
5140
|
+
:type async_: bool, optional
|
|
5141
|
+
:rtype: list[FileOutput]
|
|
4698
5142
|
"""
|
|
4699
5143
|
|
|
4700
5144
|
all_params = ['cid','analysis_id','file','ticket','id','level','job','content_type',] # noqa: E501
|