Py4HEAppE 2.2.0__tar.gz → 2.4.0__tar.gz
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.
- {py4heappe-2.2.0 → py4heappe-2.4.0}/.gitignore +1 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/.gitlab/stages/.generation.yml +2 -2
- {py4heappe-2.2.0 → py4heappe-2.4.0}/CHANGELOG.md +8 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/PKG-INFO +9 -7
- {py4heappe-2.2.0 → py4heappe-2.4.0}/README.md +8 -6
- {py4heappe-2.2.0 → py4heappe-2.4.0}/Tools/APIWrapperGen/Templates/python/README.mustache +7 -7
- py4heappe-2.4.0/Tools/APIWrapperGen/Templates/python/__init__api.mustache +7 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/Tools/APIWrapperGen/Templates/python/__init__package.mustache +1 -1
- {py4heappe-2.2.0 → py4heappe-2.4.0}/Tools/APIWrapperGen/Templates/python/api.mustache +35 -33
- {py4heappe-2.2.0 → py4heappe-2.4.0}/Tools/APIWrapperGen/Templates/python/api_client.mustache +13 -19
- {py4heappe-2.2.0 → py4heappe-2.4.0}/Tools/APIWrapperGen/Templates/python/api_doc.mustache +15 -11
- {py4heappe-2.2.0 → py4heappe-2.4.0}/Tools/APIWrapperGen/Templates/python/api_test.mustache +2 -2
- {py4heappe-2.2.0 → py4heappe-2.4.0}/Tools/APIWrapperGen/Templates/python/configuration.mustache +15 -16
- {py4heappe-2.2.0 → py4heappe-2.4.0}/Tools/APIWrapperGen/Templates/python/model.mustache +47 -45
- {py4heappe-2.2.0 → py4heappe-2.4.0}/Tools/APIWrapperGen/Templates/python/model_test.mustache +1 -1
- {py4heappe-2.2.0 → py4heappe-2.4.0}/Tools/APIWrapperGen/Templates/python/rest.mustache +0 -5
- {py4heappe-2.2.0 → py4heappe-2.4.0}/Tools/APIWrapperGen/Templates/python/setup.mustache +1 -7
- {py4heappe-2.2.0 → py4heappe-2.4.0}/Tools/APIWrapperGen/Templates/python/tox.mustache +0 -5
- {py4heappe-2.2.0 → py4heappe-2.4.0}/Tools/APIWrapperGen/Templates/python/travis.mustache +0 -1
- py4heappe-2.4.0/Tools/APIWrapperGen/config.json +4 -0
- py4heappe-2.4.0/Tools/APIWrapperGen/swagger.json +16561 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/pyproject.toml +1 -1
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/Py4HEAppE.egg-info/PKG-INFO +9 -7
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/Py4HEAppE.egg-info/SOURCES.txt +212 -1
- py4heappe-2.4.0/src/py4heappe/heappe_v6/cli/__init__.py +1 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/cli/auth.py +153 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/cli/command_template.py +404 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/cli/configuration.py +74 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/cli/information.py +182 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/cli/job_management.py +350 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/cli/report.py +186 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/__init__.py +214 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/api/__init__.py +13 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/api/cluster_information_api.py +430 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/api/data_transfer_api.py +498 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/api/file_transfer_api.py +498 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/api/health_api.py +118 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/api/job_management_api.py +870 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/api/job_reporting_api.py +715 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/api/management_api.py +7846 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/api/user_and_limitation_management_api.py +765 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/api_client.py +632 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/base/__init__.py +1 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/base/exceptions.py +41 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/base/logger.py +11 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/base/utils.py +77 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/configuration.py +254 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/__init__.py +201 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/accounting_ext.py +252 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/accounting_state_ext.py +250 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/accounting_state_type_ext.py +93 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/adaptor_user_ext.py +250 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/adaptor_user_group_ext.py +222 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/adaptor_user_role_ext.py +142 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/adaptor_user_type_ext.py +91 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/authenticate_lexis_token_model.py +110 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/authenticate_user_digital_signature_model.py +110 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/authenticate_user_open_id_model.py +110 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/authenticate_user_open_id_open_stack_model.py +138 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/authenticate_user_password_model.py +110 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/bad_request_result.py +110 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/by_cluster_authentication_credential_ext.py +138 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/cancel_job_model.py +140 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/check_log_ext.py +224 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/check_log_ext_.py +224 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/cluster_access_report_ext.py +140 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/cluster_account_status_ext.py +164 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/cluster_aggregated_report_ext.py +196 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/cluster_authentication_credential_ext.py +140 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/cluster_authentication_credential_ext_.py +140 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/cluster_authentication_credentials_auth_type_ext.py +100 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/cluster_connection_counts_ext_.py +140 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/cluster_connection_protocol.py +91 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/cluster_connection_protocol_ext.py +91 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/cluster_detailed_report_ext.py +224 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/cluster_ext.py +224 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/cluster_extended_report_ext.py +225 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/cluster_init_report_ext.py +140 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/cluster_node_extended_type_report_ext.py +224 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/cluster_node_type_aggregated_report_ext.py +196 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/cluster_node_type_aggregation_accounting_ext.py +140 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/cluster_node_type_aggregation_ext.py +252 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/cluster_node_type_detailed_report_ext.py +252 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/cluster_node_type_ext.py +474 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/cluster_node_type_for_task_ext.py +194 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/cluster_node_type_report_ext.py +196 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/cluster_node_type_resource_usage_ext.py +306 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/cluster_node_usage_ext.py +336 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/cluster_project_ext.py +252 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/cluster_proxy_connection_ext.py +250 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/cluster_report_ext.py +196 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/command_template_ext.py +308 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/command_template_parameter_ext.py +140 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/command_template_parameter_value_ext.py +140 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/compute_accounting_model.py +196 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/copy_job_data_from_temp_model.py +168 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/copy_job_data_to_temp_model.py +168 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/create_accounting_model.py +196 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/create_cluster_model.py +388 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/create_cluster_node_type_aggregation_accounting_model.py +168 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/create_cluster_node_type_aggregation_model.py +252 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/create_cluster_node_type_model.py +420 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/create_cluster_proxy_connection_model.py +250 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/create_command_inner_template_parameter_model.py +168 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/create_command_template_from_generic_model.py +308 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/create_command_template_model.py +336 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/create_command_template_parameter_model.py +224 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/create_file_transfer_method_model.py +222 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/create_job_by_project_model.py +138 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/create_project_assignment_to_cluster_model.py +224 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/create_project_cluster_node_type_aggregation_model.py +196 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/create_project_model.py +362 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/create_secure_shell_key_model.py +168 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/create_sub_project_model.py +252 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/data_transfer_method_ext.py +196 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/database_.py +112 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/database_backup_ext.py +222 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/database_backup_type_ext.py +90 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/delete_job_model.py +166 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/deployment_type_ext.py +91 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/detail_ext_.py +244 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/digital_signature_credentials_ext.py +168 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/download_file_from_cluster_model.py +168 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/download_parts_of_job_files_from_cluster_model.py +168 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/dry_run_job_counts_ext_.py +140 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/end_data_transfer_model.py +138 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/end_file_transfer_model.py +168 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/environment_variable_ext.py +140 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/extended_cluster_ext.py +442 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/extended_command_template_ext.py +448 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/extended_command_template_parameter_ext.py +196 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/extended_project_info_ext.py +336 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/file_information_ext.py +140 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/file_transfer_cipher_type_ext.py +94 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/file_transfer_key_credentials_ext.py +304 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/file_transfer_method_ext.py +274 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/file_transfer_method_no_credentials_ext.py +250 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/file_transfer_protocol.py +91 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/file_transfer_protocol_ext.py +91 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/get_command_template_parameters_name_model.py +196 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/get_data_transfer_method_model.py +196 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/get_file_transfer_method_model.py +140 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/health_component_.py +136 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/health_ext.py +194 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/http_get_to_job_node_model.py +253 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/http_header_ext.py +140 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/http_post_to_job_node_model.py +281 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/initialize_cluster_script_directory_model.py +196 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/instance_information_ext.py +362 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/job_detailed_report_ext.py +334 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/job_extended_report_ext.py +194 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/job_file_content_ext.py +222 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/job_report_ext.py +196 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/job_specification_ext.py +504 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/job_state_aggregation_report_ext.py +166 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/job_state_ext.py +97 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/lexis_credentials_ext.py +141 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/modify_accounting_model.py +224 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/modify_cluster_authentication_credential_model.py +224 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/modify_cluster_model.py +416 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/modify_cluster_node_type_aggregation_model.py +280 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/modify_cluster_node_type_model.py +448 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/modify_cluster_proxy_connection_model.py +278 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/modify_command_template_from_generic_model.py +308 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/modify_command_template_model.py +336 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/modify_command_template_parameter_model.py +224 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/modify_file_transfer_method_model.py +250 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/modify_project_assignment_to_cluster_model.py +224 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/modify_project_cluster_node_type_aggregation_model.py +196 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/modify_project_model.py +334 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/modify_sub_project_model.py +252 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/node_used_cores_and_limitation_ext.py +112 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/open_id_credentials_ext.py +141 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/open_stack_application_credentials_ext.py +140 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/password_credentials_ext.py +140 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/problem_details.py +89 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/project_aggregated_report_ext.py +278 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/project_cluster_node_type_aggregation_ext.py +224 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/project_detailed_report_ext.py +334 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/project_ext.py +362 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/project_extended_report_ext.py +252 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/project_for_task_ext.py +222 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/project_list_report_ext.py +224 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/project_reference_ext.py +137 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/project_report_ext.py +250 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/project_resource_usage_ext.py +280 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/proxy_type.py +91 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/proxy_type_ext.py +91 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/public_key_ext.py +194 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/regenerate_secure_shell_key_model.py +196 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/remove_accounting_model.py +140 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/remove_cluster_model.py +140 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/remove_cluster_node_type_aggregation_accounting_model.py +168 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/remove_cluster_node_type_aggregation_model.py +140 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/remove_cluster_node_type_model.py +140 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/remove_cluster_proxy_connection_model.py +140 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/remove_command_template_model.py +140 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/remove_command_template_parameter_model.py +140 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/remove_file_transfer_method_model.py +140 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/remove_project_assignment_to_cluster_model.py +168 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/remove_project_cluster_node_type_aggregation_model.py +168 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/remove_project_model.py +140 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/remove_secure_shell_key_model.py +168 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/remove_sub_project_model.py +140 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/resource_allocation_type_ext.py +91 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/restore_database_model.py +168 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/scheduler_type.py +92 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/scheduler_type_ext.py +92 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/ssh_key_user_credentials_model.py +140 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/statistics_ext_.py +190 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/status_check_logs_ext.py +112 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/status_ext.py +222 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/sub_project_aggregated_report_ext.py +196 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/sub_project_ext.py +252 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/submit_job_model.py +140 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/submitted_job_info_ext.py +362 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/submitted_task_info_ext.py +414 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/synchronizable_files_ext.py +92 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/task_detailed_report_ext.py +334 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/task_extended_report_ext.py +278 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/task_file_offset_ext.py +166 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/task_paralization_parameter_ext.py +168 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/task_priority_ext.py +97 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/task_report_ext.py +168 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/task_specification_ext.py +727 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/task_state_ext.py +96 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/unauthorized_result.py +110 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/usage_type_ext.py +90 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/user_group_list_report_ext.py +248 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/vault_.py +138 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/vault_credential_counts_ext_.py +140 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/vault_info_.py +196 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/models/version_information_ext.py +168 -0
- py4heappe-2.4.0/src/py4heappe/heappe_v6/core/rest.py +317 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe_cli.py +7 -7
- py4heappe-2.4.0/tests/__init__.py +1 -0
- py4heappe-2.2.0/Tools/APIWrapperGen/Templates/python/__init__api.mustache +0 -7
- py4heappe-2.2.0/Tools/APIWrapperGen/config.json +0 -4
- py4heappe-2.2.0/Tools/APIWrapperGen/swagger.json +0 -11690
- {py4heappe-2.2.0 → py4heappe-2.4.0}/.gitlab/issue_templates/Backlog.md +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/.gitlab/issue_templates/Bug.md +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/.gitlab/issue_templates/Feature.md +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/.gitlab/merge_request_templates/Default.md +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/.gitlab/stages/.check.yml +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/.gitlab/stages/.publish.yml +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/.gitlab/stages/.release.yml +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/.gitlab-ci.yml +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/LICENSE +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/Tools/APIWrapperGen/README.md +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/Tools/APIWrapperGen/Templates/python/__init__model.mustache +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/Tools/APIWrapperGen/Templates/python/__init__test.mustache +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/Tools/APIWrapperGen/Templates/python/asyncio/rest.mustache +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/Tools/APIWrapperGen/Templates/python/git_push.sh.mustache +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/Tools/APIWrapperGen/Templates/python/gitignore.mustache +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/Tools/APIWrapperGen/Templates/python/model_doc.mustache +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/Tools/APIWrapperGen/Templates/python/partial_header.mustache +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/Tools/APIWrapperGen/Templates/python/requirements.mustache +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/Tools/APIWrapperGen/Templates/python/test-requirements.mustache +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/Tools/APIWrapperGen/Templates/python/tornado/rest.mustache +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/docs/examples/example.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/docs/imgs/logo.png +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/requirements.txt +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/setup.cfg +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/Py4HEAppE.egg-info/dependency_links.txt +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/Py4HEAppE.egg-info/entry_points.txt +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/Py4HEAppE.egg-info/requires.txt +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/Py4HEAppE.egg-info/top_level.txt +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/__init__.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/__init__.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/__init__.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/cli/__init__.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/cli/auth.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/cli/command_template.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/cli/configuration.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/cli/information.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/cli/job_management.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/cli/report.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/__init__.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/api/__init__.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/api/cluster_information_api.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/api/data_transfer_api.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/api/file_transfer_api.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/api/job_management_api.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/api/job_reporting_api.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/api/management_api.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/api/user_and_limitation_management_api.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/api_client.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/base/__init__.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/base/exceptions.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/base/logger.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/base/utils.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/configuration.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/__init__.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/adaptor_user.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/adaptor_user_group.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/adaptor_user_role.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/adaptor_user_role_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/adaptor_user_role_type.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/adaptor_user_type.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/adaptor_user_user_group_role.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/allocated_nodes_ips_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/authenticate_lexis_token_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/authenticate_user_digital_signature_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/authenticate_user_open_id_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/authenticate_user_open_id_open_stack_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/authenticate_user_password_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/authentication_credentials.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/bad_request_result.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/cancel_job_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/cluster.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/cluster_authentication_credentials.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/cluster_authentication_credentials_auth_type.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/cluster_connection_protocol.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/cluster_detailed_report_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/cluster_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/cluster_init_report_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/cluster_node_type.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/cluster_node_type_detailed_report_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/cluster_node_type_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/cluster_node_type_for_task_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/cluster_node_type_report_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/cluster_node_type_requested_group.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/cluster_node_type_resource_usage_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/cluster_node_usage_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/cluster_project.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/cluster_project_credential.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/cluster_proxy_connection.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/cluster_proxy_connection_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/cluster_report_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/command_template.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/command_template_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/command_template_parameter.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/command_template_parameter_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/command_template_parameter_value_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/contact.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/copy_job_data_from_temp_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/copy_job_data_to_temp_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/create_command_inner_template_parameter_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/create_command_template_from_generic_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/create_command_template_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/create_command_template_parameter_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/create_job_by_project_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/create_project_assignment_to_cluster_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/create_project_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/create_secure_shell_key_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/create_secure_shell_key_model_obsolete.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/current_cluster_node_usage_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/current_info_for_job_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/data_transfer_method_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/delete_job_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/deployment_type_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/digital_signature_credentials_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/download_file_from_cluster_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/download_parts_of_job_files_from_cluster_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/end_data_transfer_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/end_file_transfer_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/environment_variable_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/extended_command_template_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/extended_command_template_parameter_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/extended_project_info_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/file_information_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/file_transfer_cipher_type.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/file_transfer_cipher_type_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/file_transfer_key_credentials_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/file_transfer_method.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/file_transfer_method_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/file_transfer_protocol.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/file_transfer_protocol_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/get_command_template_parameters_name_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/get_current_usage_and_limitations_for_current_user_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/get_data_transfer_method_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/get_file_transfer_method_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/http_get_to_job_node_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/http_header_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/http_post_to_job_node_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/initialize_cluster_script_directory_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/instance_information_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/job_detailed_report_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/job_file_content_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/job_report_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/job_specification_by_project_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/job_specification_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/job_state_aggregation_report_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/job_state_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/lexis_credentials_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/list_changed_files_for_job_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/list_jobs_for_current_user_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/modify_command_template_from_generic_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/modify_command_template_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/modify_command_template_parameter_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/modify_project_assignment_to_cluster_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/modify_project_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/node_used_cores_and_limitation_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/open_id_credentials_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/open_stack_application_credentials_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/password_credentials_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/problem_details.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/project.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/project_contact.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/project_detailed_report_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/project_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/project_for_task_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/project_list_report_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/project_reference_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/project_report_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/project_resource_usage_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/proxy_type.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/proxy_type_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/public_key_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/recreate_secure_shell_key_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/regenerate_secure_shell_key_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/regenerate_secure_shell_key_model_obsolete.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/remove_command_template_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/remove_command_template_parameter_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/remove_project_assignment_to_cluster_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/remove_project_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/remove_secure_shell_key_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/remove_secure_shell_key_model_obsolete.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/resource_allocation_type_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/resource_limitation_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/resource_usage_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/scheduler_type.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/ssh_key_user_credentials_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/submit_job_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/submitted_job_info_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/submitted_task_info_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/synchronizable_files_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/task_detailed_report_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/task_file_offset_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/task_paralization_parameter_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/task_priority_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/task_report_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/task_specification_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/task_state_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/test_cluster_access_for_account_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/test_cluster_access_for_account_model_obsolete.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/unauthorized_result.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/usage_type.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/usage_type_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/user_group_detailed_report_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/user_group_list_report_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/user_group_report_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/models/version_information_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v4/core/rest.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/__init__.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/cli/__init__.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/cli/auth.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/cli/command_template.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/cli/configuration.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/cli/information.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/cli/job_management.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/cli/report.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/__init__.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/api/__init__.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/api/cluster_information_api.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/api/data_transfer_api.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/api/file_transfer_api.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/api/job_management_api.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/api/job_reporting_api.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/api/management_api.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/api/user_and_limitation_management_api.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/api_client.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/base/__init__.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/base/exceptions.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/base/logger.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/base/utils.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/configuration.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/__init__.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/accounting_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/accounting_state_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/accounting_state_type_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/adaptor_user_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/adaptor_user_group_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/adaptor_user_role_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/adaptor_user_type_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/authenticate_lexis_token_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/authenticate_user_digital_signature_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/authenticate_user_open_id_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/authenticate_user_open_id_open_stack_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/authenticate_user_password_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/bad_request_result.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/cancel_job_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/cluster_aggregated_report_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/cluster_authentication_credentials_auth_type_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/cluster_connection_protocol.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/cluster_connection_protocol_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/cluster_detailed_report_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/cluster_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/cluster_extended_report_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/cluster_init_report_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/cluster_node_extended_type_report_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/cluster_node_type_aggregated_report_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/cluster_node_type_aggregation_accounting_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/cluster_node_type_aggregation_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/cluster_node_type_detailed_report_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/cluster_node_type_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/cluster_node_type_for_task_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/cluster_node_type_report_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/cluster_node_type_resource_usage_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/cluster_node_usage_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/cluster_project_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/cluster_proxy_connection_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/cluster_report_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/command_template_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/command_template_parameter_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/command_template_parameter_value_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/compute_accounting_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/copy_job_data_from_temp_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/copy_job_data_to_temp_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/create_accounting_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/create_cluster_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/create_cluster_node_type_aggregation_accounting_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/create_cluster_node_type_aggregation_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/create_cluster_node_type_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/create_cluster_proxy_connection_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/create_command_inner_template_parameter_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/create_command_template_from_generic_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/create_command_template_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/create_command_template_parameter_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/create_file_transfer_method_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/create_job_by_project_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/create_project_assignment_to_cluster_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/create_project_cluster_node_type_aggregation_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/create_project_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/create_secure_shell_key_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/create_secure_shell_key_model_obsolete.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/create_sub_project_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/data_transfer_method_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/delete_job_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/deployment_type_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/digital_signature_credentials_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/download_file_from_cluster_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/download_parts_of_job_files_from_cluster_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/end_data_transfer_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/end_file_transfer_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/environment_variable_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/extended_cluster_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/extended_command_template_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/extended_command_template_parameter_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/extended_project_info_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/file_information_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/file_transfer_cipher_type_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/file_transfer_key_credentials_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/file_transfer_method_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/file_transfer_method_no_credentials_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/file_transfer_protocol.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/file_transfer_protocol_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/get_command_template_parameters_name_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/get_data_transfer_method_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/get_file_transfer_method_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/http_get_to_job_node_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/http_header_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/http_post_to_job_node_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/initialize_cluster_script_directory_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/instance_information_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/job_detailed_report_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/job_extended_report_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/job_file_content_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/job_report_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/job_specification_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/job_state_aggregation_report_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/job_state_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/lexis_credentials_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/modify_accounting_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/modify_cluster_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/modify_cluster_node_type_aggregation_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/modify_cluster_node_type_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/modify_cluster_proxy_connection_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/modify_command_template_from_generic_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/modify_command_template_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/modify_command_template_parameter_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/modify_file_transfer_method_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/modify_project_assignment_to_cluster_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/modify_project_cluster_node_type_aggregation_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/modify_project_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/modify_sub_project_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/node_used_cores_and_limitation_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/open_id_credentials_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/open_stack_application_credentials_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/password_credentials_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/problem_details.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/project_aggregated_report_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/project_cluster_node_type_aggregation_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/project_detailed_report_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/project_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/project_extended_report_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/project_for_task_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/project_list_report_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/project_reference_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/project_report_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/project_resource_usage_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/proxy_type.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/proxy_type_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/public_key_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/regenerate_secure_shell_key_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/regenerate_secure_shell_key_model_obsolete.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/remove_accounting_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/remove_cluster_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/remove_cluster_node_type_aggregation_accounting_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/remove_cluster_node_type_aggregation_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/remove_cluster_node_type_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/remove_cluster_proxy_connection_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/remove_command_template_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/remove_command_template_parameter_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/remove_file_transfer_method_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/remove_project_assignment_to_cluster_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/remove_project_cluster_node_type_aggregation_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/remove_project_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/remove_secure_shell_key_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/remove_secure_shell_key_model_obsolete.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/remove_sub_project_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/resource_allocation_type_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/scheduler_type.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/scheduler_type_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/ssh_key_user_credentials_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/sub_project_aggregated_report_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/sub_project_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/submit_job_model.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/submitted_job_info_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/submitted_task_info_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/synchronizable_files_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/task_detailed_report_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/task_extended_report_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/task_file_offset_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/task_paralization_parameter_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/task_priority_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/task_report_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/task_specification_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/task_state_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/test_cluster_access_for_account_model_obsolete.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/unauthorized_result.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/usage_type_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/user_group_list_report_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/models/version_information_ext.py +0 -0
- {py4heappe-2.2.0 → py4heappe-2.4.0}/src/py4heappe/heappe_v5/core/rest.py +0 -0
- {py4heappe-2.2.0/tests → py4heappe-2.4.0/src/py4heappe/heappe_v6}/__init__.py +0 -0
- {py4heappe-2.2.0/src/py4heappe/heappe_v5 → py4heappe-2.4.0/src/py4heappe/heappe_v6}/cli/transfer.py +0 -0
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
API_client_generation:
|
|
4
4
|
stage: API_generation
|
|
5
|
-
image:
|
|
5
|
+
image: eclipse-temurin:11-jdk
|
|
6
6
|
when: manual
|
|
7
7
|
rules:
|
|
8
8
|
- if: '$CI_COMMIT_BRANCH != "develop" && $CI_COMMIT_BRANCH != "main"'
|
|
9
9
|
before_script:
|
|
10
10
|
- apt-get update
|
|
11
11
|
- apt-get install -y wget zip
|
|
12
|
-
- wget https://repo1.maven.org/maven2/io/swagger/swagger-codegen-cli/
|
|
12
|
+
- wget https://repo1.maven.org/maven2/io/swagger/codegen/v3/swagger-codegen-cli/3.0.71/swagger-codegen-cli-3.0.71.jar -O /swagger-codegen-cli.jar
|
|
13
13
|
script:
|
|
14
14
|
- echo "Generation API client"
|
|
15
15
|
- java -jar /swagger-codegen-cli.jar generate -i Tools/APIWrapperGen/swagger.json -l python -t Tools/APIWrapperGen/Templates/python/ -o ./app/client -c Tools/APIWrapperGen/config.json
|
|
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## 2.4.0
|
|
9
|
+
|
|
10
|
+
### Compatible with HEAppE V6.1.X, V6.0.X, V5.0.X, V4.3.X and V4.2.X
|
|
11
|
+
|
|
12
|
+
## V2.3.0
|
|
13
|
+
|
|
14
|
+
### Compatible with HEAppE V6.0.X, V5.0.X, V4.3.X and V4.2.X
|
|
15
|
+
|
|
8
16
|
## V2.2.0
|
|
9
17
|
|
|
10
18
|
### Compatible with HEAppE V5.0.X, V4.3.X and V4.2.X
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: Py4HEAppE
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.4.0
|
|
4
4
|
Summary: Py4HEAppE is client library for easy access to HEAppE Middleware
|
|
5
5
|
Author-email: IT4Innovations <support.heappe@it4i.cz>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -47,12 +47,14 @@ By using Py4HEAppE, users can quickly integrate HEAppE functionalities into thei
|
|
|
47
47
|
The library ensures consistent and reliable communication with the HEAppE API, handling errors and edge cases gracefully.
|
|
48
48
|
|
|
49
49
|
## Supported HEAppE versions
|
|
50
|
-
| Py4HEAppE | HEAppE Version
|
|
51
|
-
|
|
52
|
-
| 2.
|
|
53
|
-
| 2.
|
|
54
|
-
| 2.
|
|
55
|
-
| 1.X
|
|
50
|
+
| Py4HEAppE | HEAppE Version | Notes |
|
|
51
|
+
|:--------------:|:---------------------------:|:-----------------------------------|
|
|
52
|
+
| 2.4.X | 6.1.X, 6.0.X, 5.X.X, 4.X.X | W/O Admin/File sections in CLI |
|
|
53
|
+
| 2.3.X | 6.0.x, 5.0.X, 4.X.X | W/O Admin/File sections in CLI |
|
|
54
|
+
| 2.2.X | 5.0.X, 4.3.X, 4.2.X | W/O Admin/File sections in CLI |
|
|
55
|
+
| 2.1.X | 5.0.X, 4.3.X, 4.2.X | W/O Admin/Job/File sections in CLI |
|
|
56
|
+
| 2.0.X | 5.0.X | W/O Admin/Job/File sections in CLI |
|
|
57
|
+
| 1.X.X | 4.3.X, 4.2.X | W/O Admin/Job/File sections in CLI |
|
|
56
58
|
|
|
57
59
|
<!-- GETTING STARTED -->
|
|
58
60
|
## Getting Started
|
|
@@ -21,12 +21,14 @@ By using Py4HEAppE, users can quickly integrate HEAppE functionalities into thei
|
|
|
21
21
|
The library ensures consistent and reliable communication with the HEAppE API, handling errors and edge cases gracefully.
|
|
22
22
|
|
|
23
23
|
## Supported HEAppE versions
|
|
24
|
-
| Py4HEAppE | HEAppE Version
|
|
25
|
-
|
|
26
|
-
| 2.
|
|
27
|
-
| 2.
|
|
28
|
-
| 2.
|
|
29
|
-
| 1.X
|
|
24
|
+
| Py4HEAppE | HEAppE Version | Notes |
|
|
25
|
+
|:--------------:|:---------------------------:|:-----------------------------------|
|
|
26
|
+
| 2.4.X | 6.1.X, 6.0.X, 5.X.X, 4.X.X | W/O Admin/File sections in CLI |
|
|
27
|
+
| 2.3.X | 6.0.x, 5.0.X, 4.X.X | W/O Admin/File sections in CLI |
|
|
28
|
+
| 2.2.X | 5.0.X, 4.3.X, 4.2.X | W/O Admin/File sections in CLI |
|
|
29
|
+
| 2.1.X | 5.0.X, 4.3.X, 4.2.X | W/O Admin/Job/File sections in CLI |
|
|
30
|
+
| 2.0.X | 5.0.X | W/O Admin/Job/File sections in CLI |
|
|
31
|
+
| 1.X.X | 4.3.X, 4.2.X | W/O Admin/Job/File sections in CLI |
|
|
30
32
|
|
|
31
33
|
<!-- GETTING STARTED -->
|
|
32
34
|
## Getting Started
|
|
@@ -58,7 +58,7 @@ import time
|
|
|
58
58
|
import {{{packageName}}}
|
|
59
59
|
from {{{packageName}}}.rest import ApiException
|
|
60
60
|
from pprint import pprint
|
|
61
|
-
{{#apiInfo}}{{#apis}}{{
|
|
61
|
+
{{#apiInfo}}{{#apis}}{{#@first}}{{#operations}}{{#operation}}{{#contents}}{{#@first}}{{#hasAuthMethods}}{{#authMethods}}{{#isBasic}}
|
|
62
62
|
# Configure HTTP basic authorization: {{{name}}}
|
|
63
63
|
configuration = {{{packageName}}}.Configuration()
|
|
64
64
|
configuration.username = 'YOUR_USERNAME'
|
|
@@ -75,16 +75,16 @@ configuration.access_token = 'YOUR_ACCESS_TOKEN'{{/isOAuth}}{{/authMethods}}
|
|
|
75
75
|
|
|
76
76
|
# create an instance of the API class
|
|
77
77
|
api_instance = {{{packageName}}}.{{{classname}}}({{{packageName}}}.ApiClient(configuration))
|
|
78
|
-
{{#
|
|
79
|
-
{{/
|
|
78
|
+
{{#parameters}}{{paramName}} = {{{example}}} # {{{dataType}}} | {{{description}}}{{^required}} (optional){{/required}}{{#defaultValue}} (default to {{{.}}}){{/defaultValue}}
|
|
79
|
+
{{/parameters}}
|
|
80
80
|
|
|
81
81
|
try:
|
|
82
82
|
{{#summary}} # {{{.}}}
|
|
83
|
-
{{/summary}} {{#returnType}}api_response = {{/returnType}}api_instance.{{{operationId}}}({{#
|
|
83
|
+
{{/summary}} {{#returnType}}api_response = {{/returnType}}api_instance.{{{operationId}}}({{#parameters}}{{#required}}{{paramName}}{{/required}}{{^required}}{{paramName}}={{paramName}}{{/required}}{{#hasMore}}, {{/hasMore}}{{/parameters}}){{#returnType}}
|
|
84
84
|
pprint(api_response){{/returnType}}
|
|
85
85
|
except ApiException as e:
|
|
86
86
|
print("Exception when calling {{classname}}->{{operationId}}: %s\n" % e)
|
|
87
|
-
{{
|
|
87
|
+
{{/@first}}{{/contents}}{{/operation}}{{/operations}}{{/@first}}{{/apis}}{{/apiInfo}}
|
|
88
88
|
```
|
|
89
89
|
|
|
90
90
|
## Documentation for API Endpoints
|
|
@@ -117,8 +117,8 @@ Class | Method | HTTP request | Description
|
|
|
117
117
|
- **Flow**: {{{flow}}}
|
|
118
118
|
- **Authorization URL**: {{{authorizationUrl}}}
|
|
119
119
|
- **Scopes**: {{^scopes}}N/A{{/scopes}}
|
|
120
|
-
{{#scopes}} - **{{
|
|
121
|
-
{{/
|
|
120
|
+
{{#each scopes}} - **{{@key}}**: {{this}}
|
|
121
|
+
{{/each}}
|
|
122
122
|
{{/isOAuth}}
|
|
123
123
|
|
|
124
124
|
{{/authMethods}}
|
{py4heappe-2.2.0 → py4heappe-2.4.0}/Tools/APIWrapperGen/Templates/python/__init__package.mustache
RENAMED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
from __future__ import absolute_import
|
|
8
8
|
|
|
9
9
|
# import apis into sdk package
|
|
10
|
-
{{#apiInfo}}{{#apis}}from {{
|
|
10
|
+
{{#apiInfo}}{{#apis}}from {{importPath}} import {{classname}}
|
|
11
11
|
{{/apis}}{{/apiInfo}}
|
|
12
12
|
# import ApiClient
|
|
13
13
|
from {{packageName}}.api_client import ApiClient
|
|
@@ -25,8 +25,9 @@ class {{classname}}(object):
|
|
|
25
25
|
api_client = ApiClient()
|
|
26
26
|
self.api_client = api_client
|
|
27
27
|
{{#operation}}
|
|
28
|
+
{{#contents}}
|
|
28
29
|
|
|
29
|
-
def {{operationId}}(self, {{#sortParamsByRequiredFlag}}{{#
|
|
30
|
+
def {{operationId}}(self, {{#sortParamsByRequiredFlag}}{{#parameters}}{{#required}}{{baseName}}, {{/required}}{{/parameters}}{{/sortParamsByRequiredFlag}}**kwargs): # noqa: E501
|
|
30
31
|
"""{{#summary}}{{{.}}}{{/summary}}{{^summary}}{{operationId}}{{/summary}} # noqa: E501
|
|
31
32
|
|
|
32
33
|
{{#notes}}
|
|
@@ -35,29 +36,29 @@ class {{classname}}(object):
|
|
|
35
36
|
This method makes a synchronous HTTP request by default. To make an
|
|
36
37
|
asynchronous HTTP request, please pass async_req=True
|
|
37
38
|
{{#sortParamsByRequiredFlag}}
|
|
38
|
-
>>> thread = api.{{operationId}}({{#
|
|
39
|
+
>>> thread = api.{{operationId}}({{#parameters}}{{#required}}{{baseName}}, {{/required}}{{/parameters}}async_req=True)
|
|
39
40
|
{{/sortParamsByRequiredFlag}}
|
|
40
41
|
{{^sortParamsByRequiredFlag}}
|
|
41
|
-
>>> thread = api.{{operationId}}({{#
|
|
42
|
+
>>> thread = api.{{operationId}}({{#parameters}}{{#required}}{{baseName}}={{baseName}}_value, {{/required}}{{/parameters}}async_req=True)
|
|
42
43
|
{{/sortParamsByRequiredFlag}}
|
|
43
44
|
>>> result = thread.get()
|
|
44
45
|
|
|
45
46
|
:param async_req bool
|
|
46
|
-
{{#
|
|
47
|
+
{{#parameters}}
|
|
47
48
|
:param {{dataType}} {{baseName}}:{{#description}} {{{description}}}{{/description}}{{#required}} (required){{/required}}{{#optional}}(optional){{/optional}}
|
|
48
|
-
{{/
|
|
49
|
+
{{/parameters}}
|
|
49
50
|
:return: {{#returnType}}{{returnType}}{{/returnType}}{{^returnType}}None{{/returnType}}
|
|
50
51
|
If the method is called asynchronously,
|
|
51
52
|
returns the request thread.
|
|
52
53
|
"""
|
|
53
54
|
kwargs['_return_http_data_only'] = True
|
|
54
55
|
if kwargs.get('async_req'):
|
|
55
|
-
return self.{{operationId}}_with_http_info({{#sortParamsByRequiredFlag}}{{#
|
|
56
|
+
return self.{{operationId}}_with_http_info({{#sortParamsByRequiredFlag}}{{#parameters}}{{#required}}{{baseName}}, {{/required}}{{/parameters}}{{/sortParamsByRequiredFlag}}**kwargs) # noqa: E501
|
|
56
57
|
else:
|
|
57
|
-
(data) = self.{{operationId}}_with_http_info({{#sortParamsByRequiredFlag}}{{#
|
|
58
|
+
(data) = self.{{operationId}}_with_http_info({{#sortParamsByRequiredFlag}}{{#parameters}}{{#required}}{{baseName}}, {{/required}}{{/parameters}}{{/sortParamsByRequiredFlag}}**kwargs) # noqa: E501
|
|
58
59
|
return data
|
|
59
60
|
|
|
60
|
-
def {{operationId}}_with_http_info(self, {{#sortParamsByRequiredFlag}}{{#
|
|
61
|
+
def {{operationId}}_with_http_info(self, {{#sortParamsByRequiredFlag}}{{#parameters}}{{#required}}{{baseName}}, {{/required}}{{/parameters}}{{/sortParamsByRequiredFlag}}**kwargs): # noqa: E501
|
|
61
62
|
"""{{#summary}}{{{.}}}{{/summary}}{{^summary}}{{operationId}}{{/summary}} # noqa: E501
|
|
62
63
|
|
|
63
64
|
{{#notes}}
|
|
@@ -66,23 +67,23 @@ class {{classname}}(object):
|
|
|
66
67
|
This method makes a synchronous HTTP request by default. To make an
|
|
67
68
|
asynchronous HTTP request, please pass async_req=True
|
|
68
69
|
{{#sortParamsByRequiredFlag}}
|
|
69
|
-
>>> thread = api.{{operationId}}_with_http_info({{#
|
|
70
|
+
>>> thread = api.{{operationId}}_with_http_info({{#parameters}}{{#required}}{{baseName}}, {{/required}}{{/parameters}}async_req=True)
|
|
70
71
|
{{/sortParamsByRequiredFlag}}
|
|
71
72
|
{{^sortParamsByRequiredFlag}}
|
|
72
|
-
>>> thread = api.{{operationId}}_with_http_info({{#
|
|
73
|
+
>>> thread = api.{{operationId}}_with_http_info({{#parameters}}{{#required}}{{baseName}}={{baseName}}_value, {{/required}}{{/parameters}}async_req=True)
|
|
73
74
|
{{/sortParamsByRequiredFlag}}
|
|
74
75
|
>>> result = thread.get()
|
|
75
76
|
|
|
76
77
|
:param async_req bool
|
|
77
|
-
{{#
|
|
78
|
+
{{#parameters}}
|
|
78
79
|
:param {{dataType}} {{baseName}}:{{#description}} {{{description}}}{{/description}}{{#required}} (required){{/required}}{{#optional}}(optional{{#defaultValue}}, default to {{{.}}}{{/defaultValue}}){{/optional}}
|
|
79
|
-
{{/
|
|
80
|
+
{{/parameters}}
|
|
80
81
|
:return: {{#returnType}}{{returnType}}{{/returnType}}{{^returnType}}None{{/returnType}}
|
|
81
82
|
If the method is called asynchronously,
|
|
82
83
|
returns the request thread.
|
|
83
84
|
"""
|
|
84
85
|
|
|
85
|
-
all_params = [{{#
|
|
86
|
+
all_params = [{{#parameters}}'{{baseName}}'{{#hasMore}}, {{/hasMore}}{{/parameters}}] # noqa: E501
|
|
86
87
|
all_params.append('async_req')
|
|
87
88
|
all_params.append('_return_http_data_only')
|
|
88
89
|
all_params.append('_preload_content')
|
|
@@ -97,53 +98,53 @@ class {{classname}}(object):
|
|
|
97
98
|
)
|
|
98
99
|
params[key] = val
|
|
99
100
|
del params['kwargs']
|
|
100
|
-
{{#
|
|
101
|
+
{{#parameters}}
|
|
101
102
|
{{#required}}
|
|
102
103
|
# verify the required parameter '{{baseName}}' is set
|
|
103
|
-
if
|
|
104
|
-
|
|
104
|
+
if ('{{baseName}}' not in params or
|
|
105
|
+
params['{{baseName}}'] is None):
|
|
105
106
|
raise ValueError("Missing the required parameter `{{baseName}}` when calling `{{operationId}}`") # noqa: E501
|
|
106
107
|
{{/required}}
|
|
107
|
-
{{/
|
|
108
|
+
{{/parameters}}
|
|
108
109
|
|
|
109
|
-
{{#
|
|
110
|
+
{{#parameters}}
|
|
110
111
|
{{#hasValidation}}
|
|
111
112
|
{{#maxLength}}
|
|
112
|
-
if
|
|
113
|
-
|
|
113
|
+
if ('{{baseName}}' in params and
|
|
114
|
+
len(params['{{baseName}}']) > {{maxLength}}):
|
|
114
115
|
raise ValueError("Invalid value for parameter `{{baseName}}` when calling `{{operationId}}`, length must be less than or equal to `{{maxLength}}`") # noqa: E501
|
|
115
116
|
{{/maxLength}}
|
|
116
117
|
{{#minLength}}
|
|
117
|
-
if
|
|
118
|
-
|
|
118
|
+
if ('{{baseName}}' in params and
|
|
119
|
+
len(params['{{baseName}}']) < {{minLength}}):
|
|
119
120
|
raise ValueError("Invalid value for parameter `{{baseName}}` when calling `{{operationId}}`, length must be greater than or equal to `{{minLength}}`") # noqa: E501
|
|
120
121
|
{{/minLength}}
|
|
121
122
|
{{#maximum}}
|
|
122
|
-
if
|
|
123
|
+
if '{{baseName}}' in params and params['{{baseName}}'] >{{#exclusiveMaximum}}={{/exclusiveMaximum}} {{maximum}}: # noqa: E501
|
|
123
124
|
raise ValueError("Invalid value for parameter `{{baseName}}` when calling `{{operationId}}`, must be a value less than {{^exclusiveMaximum}}or equal to {{/exclusiveMaximum}}`{{maximum}}`") # noqa: E501
|
|
124
125
|
{{/maximum}}
|
|
125
126
|
{{#minimum}}
|
|
126
|
-
if
|
|
127
|
+
if '{{baseName}}' in params and params['{{baseName}}'] <{{#exclusiveMinimum}}={{/exclusiveMinimum}} {{minimum}}: # noqa: E501
|
|
127
128
|
raise ValueError("Invalid value for parameter `{{baseName}}` when calling `{{operationId}}`, must be a value greater than {{^exclusiveMinimum}}or equal to {{/exclusiveMinimum}}`{{minimum}}`") # noqa: E501
|
|
128
129
|
{{/minimum}}
|
|
129
130
|
{{#pattern}}
|
|
130
|
-
if
|
|
131
|
+
if '{{baseName}}' in params and not re.search(r'{{{vendorExtensions.x-regex}}}', params['{{baseName}}']{{#vendorExtensions.x-modifiers}}{{#@first}}, flags={{/@first}}re.{{.}}{{^@last}} | {{/@last}}{{/vendorExtensions.x-modifiers}}): # noqa: E501
|
|
131
132
|
raise ValueError("Invalid value for parameter `{{baseName}}` when calling `{{operationId}}`, must conform to the pattern `{{{pattern}}}`") # noqa: E501
|
|
132
133
|
{{/pattern}}
|
|
133
134
|
{{#maxItems}}
|
|
134
|
-
if
|
|
135
|
-
|
|
135
|
+
if ('{{baseName}}' in params and
|
|
136
|
+
len(params['{{baseName}}']) > {{maxItems}}):
|
|
136
137
|
raise ValueError("Invalid value for parameter `{{baseName}}` when calling `{{operationId}}`, number of items must be less than or equal to `{{maxItems}}`") # noqa: E501
|
|
137
138
|
{{/maxItems}}
|
|
138
139
|
{{#minItems}}
|
|
139
|
-
if
|
|
140
|
-
|
|
140
|
+
if ('{{baseName}}' in params and
|
|
141
|
+
len(params['{{baseName}}']) < {{minItems}}):
|
|
141
142
|
raise ValueError("Invalid value for parameter `{{baseName}}` when calling `{{operationId}}`, number of items must be greater than or equal to `{{minItems}}`") # noqa: E501
|
|
142
143
|
{{/minItems}}
|
|
143
144
|
{{/hasValidation}}
|
|
144
|
-
{{
|
|
145
|
-
{{
|
|
146
|
-
{{/
|
|
145
|
+
{{#@last}}
|
|
146
|
+
{{/@last}}
|
|
147
|
+
{{/parameters}}
|
|
147
148
|
collection_formats = {}
|
|
148
149
|
|
|
149
150
|
path_params = {}
|
|
@@ -171,7 +172,7 @@ class {{classname}}(object):
|
|
|
171
172
|
local_var_files = {}
|
|
172
173
|
{{#formParams}}
|
|
173
174
|
if '{{baseName}}' in params:
|
|
174
|
-
{{
|
|
175
|
+
{{^isBinary}}form_params.append(('{{baseName}}', params['{{baseName}}'])){{/isBinary}}{{#isBinary}}local_var_files['{{baseName}}'] = params['{{baseName}}']{{/isBinary}}{{#isListContainer}} # noqa: E501
|
|
175
176
|
collection_formats['{{baseName}}'] = '{{collectionFormat}}'{{/isListContainer}} # noqa: E501
|
|
176
177
|
{{/formParams}}
|
|
177
178
|
|
|
@@ -210,5 +211,6 @@ class {{classname}}(object):
|
|
|
210
211
|
_preload_content=params.get('_preload_content', True),
|
|
211
212
|
_request_timeout=params.get('_request_timeout'),
|
|
212
213
|
collection_formats=collection_formats)
|
|
214
|
+
{{/contents}}
|
|
213
215
|
{{/operation}}
|
|
214
216
|
{{/operations}}
|
{py4heappe-2.2.0 → py4heappe-2.4.0}/Tools/APIWrapperGen/Templates/python/api_client.mustache
RENAMED
|
@@ -60,8 +60,7 @@ class ApiClient(object):
|
|
|
60
60
|
configuration = Configuration()
|
|
61
61
|
self.configuration = configuration
|
|
62
62
|
|
|
63
|
-
|
|
64
|
-
self._pool = None
|
|
63
|
+
self.pool = ThreadPool()
|
|
65
64
|
self.rest_client = rest.RESTClientObject(configuration)
|
|
66
65
|
self.default_headers = {}
|
|
67
66
|
if header_name is not None:
|
|
@@ -69,18 +68,10 @@ class ApiClient(object):
|
|
|
69
68
|
self.cookie = cookie
|
|
70
69
|
# Set default User-Agent.
|
|
71
70
|
self.user_agent = '{{#httpUserAgent}}{{{.}}}{{/httpUserAgent}}{{^httpUserAgent}}Swagger-Codegen/{{{packageVersion}}}/python{{/httpUserAgent}}'
|
|
72
|
-
self.client_side_validation = configuration.client_side_validation
|
|
73
71
|
|
|
74
72
|
def __del__(self):
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
self._pool.join()
|
|
78
|
-
|
|
79
|
-
@property
|
|
80
|
-
def pool(self):
|
|
81
|
-
if self._pool is None:
|
|
82
|
-
self._pool = ThreadPool()
|
|
83
|
-
return self._pool
|
|
73
|
+
self.pool.close()
|
|
74
|
+
self.pool.join()
|
|
84
75
|
|
|
85
76
|
@property
|
|
86
77
|
def user_agent(self):
|
|
@@ -539,10 +530,14 @@ class ApiClient(object):
|
|
|
539
530
|
filename = re.search(r'filename=[\'"]?([^\'"\s]+)[\'"]?',
|
|
540
531
|
content_disposition).group(1)
|
|
541
532
|
path = os.path.join(os.path.dirname(path), filename)
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
533
|
+
response_data = response.data
|
|
534
|
+
with open(path, "wb") as f:
|
|
535
|
+
if isinstance(response_data, str):
|
|
536
|
+
# change str to bytes so we can write it
|
|
537
|
+
response_data = response_data.encode('utf-8')
|
|
538
|
+
f.write(response_data)
|
|
539
|
+
else:
|
|
540
|
+
f.write(response_data)
|
|
546
541
|
return path
|
|
547
542
|
|
|
548
543
|
def __deserialize_primitive(self, data, klass):
|
|
@@ -607,7 +602,7 @@ class ApiClient(object):
|
|
|
607
602
|
)
|
|
608
603
|
|
|
609
604
|
def __hasattr(self, object, name):
|
|
610
|
-
|
|
605
|
+
return name in object.__class__.__dict__
|
|
611
606
|
|
|
612
607
|
def __deserialize_model(self, data, klass):
|
|
613
608
|
"""Deserializes list or dict to model.
|
|
@@ -617,8 +612,7 @@ class ApiClient(object):
|
|
|
617
612
|
:return: model object.
|
|
618
613
|
"""
|
|
619
614
|
|
|
620
|
-
if
|
|
621
|
-
not self.__hasattr(klass, 'get_real_child_model')):
|
|
615
|
+
if not klass.swagger_types and not self.__hasattr(klass, 'get_real_child_model'):
|
|
622
616
|
return data
|
|
623
617
|
|
|
624
618
|
kwargs = {}
|
|
@@ -10,8 +10,10 @@ Method | HTTP request | Description
|
|
|
10
10
|
|
|
11
11
|
{{#operations}}
|
|
12
12
|
{{#operation}}
|
|
13
|
+
{{#contents}}
|
|
14
|
+
{{#@first}}
|
|
13
15
|
# **{{{operationId}}}**
|
|
14
|
-
> {{#returnType}}{{{returnType}}} {{/returnType}}{{{operationId}}}({{#
|
|
16
|
+
> {{#returnType}}{{{returnType}}} {{/returnType}}{{{operationId}}}({{#parameters}}{{#required}}{{{paramName}}}{{/required}}{{^required}}{{{paramName}}}={{{paramName}}}{{/required}}{{#hasMore}}, {{/hasMore}}{{/parameters}})
|
|
15
17
|
|
|
16
18
|
{{{summary}}}{{#notes}}
|
|
17
19
|
|
|
@@ -40,31 +42,31 @@ configuration.access_token = 'YOUR_ACCESS_TOKEN'{{/isOAuth}}{{/authMethods}}
|
|
|
40
42
|
|
|
41
43
|
# create an instance of the API class
|
|
42
44
|
api_instance = {{{packageName}}}.{{{classname}}}({{{packageName}}}.ApiClient(configuration))
|
|
43
|
-
{{#
|
|
44
|
-
{{/
|
|
45
|
+
{{#parameters}}{{paramName}} = {{{example}}} # {{{dataType}}} | {{{description}}}{{^required}} (optional){{/required}}{{#defaultValue}} (default to {{{.}}}){{/defaultValue}}
|
|
46
|
+
{{/parameters}}
|
|
45
47
|
{{/hasAuthMethods}}
|
|
46
48
|
{{^hasAuthMethods}}
|
|
47
49
|
|
|
48
50
|
# create an instance of the API class
|
|
49
51
|
api_instance = {{{packageName}}}.{{{classname}}}()
|
|
50
|
-
{{#
|
|
51
|
-
{{/
|
|
52
|
+
{{#parameters}}{{paramName}} = {{{example}}} # {{{dataType}}} | {{{description}}}{{^required}} (optional){{/required}}{{#defaultValue}} (default to {{{.}}}){{/defaultValue}}
|
|
53
|
+
{{/parameters}}
|
|
52
54
|
{{/hasAuthMethods}}
|
|
53
55
|
|
|
54
56
|
try:
|
|
55
57
|
{{#summary}} # {{{.}}}
|
|
56
|
-
{{/summary}} {{#returnType}}api_response = {{/returnType}}api_instance.{{{operationId}}}({{#
|
|
58
|
+
{{/summary}} {{#returnType}}api_response = {{/returnType}}api_instance.{{{operationId}}}({{#parameters}}{{#required}}{{paramName}}{{/required}}{{^required}}{{paramName}}={{paramName}}{{/required}}{{#hasMore}}, {{/hasMore}}{{/parameters}}){{#returnType}}
|
|
57
59
|
pprint(api_response){{/returnType}}
|
|
58
60
|
except ApiException as e:
|
|
59
61
|
print("Exception when calling {{classname}}->{{operationId}}: %s\n" % e)
|
|
60
62
|
```
|
|
61
63
|
|
|
62
64
|
### Parameters
|
|
63
|
-
{{^
|
|
65
|
+
{{^parameters}}This endpoint does not need any parameter.{{/parameters}}{{#parameters}}{{#@last}}
|
|
64
66
|
Name | Type | Description | Notes
|
|
65
|
-
------------- | ------------- | ------------- | -------------{{
|
|
66
|
-
{{#
|
|
67
|
-
{{/
|
|
67
|
+
------------- | ------------- | ------------- | -------------{{/@last}}{{/parameters}}
|
|
68
|
+
{{#parameters}} **{{paramName}}** | {{#isBinary}}**{{dataType}}**{{/isBinary}}{{^isBinary}}{{#isPrimitiveType}}**{{dataType}}**{{/isPrimitiveType}}{{^isPrimitiveType}}[**{{dataType}}**]({{baseType}}.md){{/isPrimitiveType}}{{/isBinary}}| {{description}} | {{^required}}[optional] {{/required}}{{#defaultValue}}[default to {{defaultValue}}]{{/defaultValue}}
|
|
69
|
+
{{/parameters}}
|
|
68
70
|
|
|
69
71
|
### Return type
|
|
70
72
|
|
|
@@ -72,7 +74,7 @@ Name | Type | Description | Notes
|
|
|
72
74
|
|
|
73
75
|
### Authorization
|
|
74
76
|
|
|
75
|
-
{{^authMethods}}No authorization required{{/authMethods}}{{#authMethods}}[{{{name}}}](../README.md#{{{name}}}){{
|
|
77
|
+
{{^authMethods}}No authorization required{{/authMethods}}{{#authMethods}}[{{{name}}}](../README.md#{{{name}}}){{^@last}}, {{/@last}}{{/authMethods}}
|
|
76
78
|
|
|
77
79
|
### HTTP request headers
|
|
78
80
|
|
|
@@ -81,5 +83,7 @@ Name | Type | Description | Notes
|
|
|
81
83
|
|
|
82
84
|
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
83
85
|
|
|
86
|
+
{{/@first}}
|
|
87
|
+
{{/contents}}
|
|
84
88
|
{{/operation}}
|
|
85
89
|
{{/operations}}
|
|
@@ -7,7 +7,7 @@ from __future__ import absolute_import
|
|
|
7
7
|
import unittest
|
|
8
8
|
|
|
9
9
|
import {{packageName}}
|
|
10
|
-
from {{apiPackage}}.{{classVarName}} import {{classname}} # noqa: E501
|
|
10
|
+
from {{packageName}}.{{apiPackage}}.{{classVarName}} import {{classname}} # noqa: E501
|
|
11
11
|
from {{packageName}}.rest import ApiException
|
|
12
12
|
|
|
13
13
|
|
|
@@ -15,7 +15,7 @@ class {{#operations}}Test{{classname}}(unittest.TestCase):
|
|
|
15
15
|
"""{{classname}} unit test stubs"""
|
|
16
16
|
|
|
17
17
|
def setUp(self):
|
|
18
|
-
self.api = {{
|
|
18
|
+
self.api = {{classname}}() # noqa: E501
|
|
19
19
|
|
|
20
20
|
def tearDown(self):
|
|
21
21
|
pass
|
{py4heappe-2.2.0 → py4heappe-2.4.0}/Tools/APIWrapperGen/Templates/python/configuration.mustache
RENAMED
|
@@ -14,22 +14,29 @@ import six
|
|
|
14
14
|
from six.moves import http_client as httplib
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
class
|
|
17
|
+
class TypeWithDefault(type):
|
|
18
|
+
def __init__(cls, name, bases, dct):
|
|
19
|
+
super(TypeWithDefault, cls).__init__(name, bases, dct)
|
|
20
|
+
cls._default = None
|
|
21
|
+
|
|
22
|
+
def __call__(cls):
|
|
23
|
+
if cls._default is None:
|
|
24
|
+
cls._default = type.__call__(cls)
|
|
25
|
+
return copy.copy(cls._default)
|
|
26
|
+
|
|
27
|
+
def set_default(cls, default):
|
|
28
|
+
cls._default = copy.copy(default)
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
class Configuration(six.with_metaclass(TypeWithDefault, object)):
|
|
18
32
|
"""NOTE: This class is auto generated by the swagger code generator program.
|
|
19
33
|
|
|
20
34
|
Ref: https://github.com/swagger-api/swagger-codegen
|
|
21
35
|
Do not edit the class manually.
|
|
22
36
|
"""
|
|
23
37
|
|
|
24
|
-
_default = None
|
|
25
|
-
|
|
26
38
|
def __init__(self):
|
|
27
39
|
"""Constructor"""
|
|
28
|
-
if self._default:
|
|
29
|
-
for key in self._default.__dict__.keys():
|
|
30
|
-
self.__dict__[key] = copy.copy(self._default.__dict__[key])
|
|
31
|
-
return
|
|
32
|
-
|
|
33
40
|
# Default Base url
|
|
34
41
|
self.host = "{{{basePath}}}"
|
|
35
42
|
# Temp file folder for downloading files
|
|
@@ -90,13 +97,6 @@ class Configuration(object):
|
|
|
90
97
|
# Safe chars for path_param
|
|
91
98
|
self.safe_chars_for_path_param = ''
|
|
92
99
|
|
|
93
|
-
# Disable client side validation
|
|
94
|
-
self.client_side_validation = True
|
|
95
|
-
|
|
96
|
-
@classmethod
|
|
97
|
-
def set_default(cls, default):
|
|
98
|
-
cls._default = default
|
|
99
|
-
|
|
100
100
|
@property
|
|
101
101
|
def logger_file(self):
|
|
102
102
|
"""The logger file.
|
|
@@ -199,7 +199,6 @@ class Configuration(object):
|
|
|
199
199
|
:param identifier: The identifier of apiKey.
|
|
200
200
|
:return: The token for api key authentication.
|
|
201
201
|
"""
|
|
202
|
-
|
|
203
202
|
if self.refresh_api_key_hook:
|
|
204
203
|
self.refresh_api_key_hook(self)
|
|
205
204
|
|