Py4HEAppE 2.9.0__tar.gz → 3.0.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.
Files changed (914) hide show
  1. py4heappe-3.0.0/.gitlab/stages/.generation.yml +34 -0
  2. py4heappe-3.0.0/CHANGELOG.md +131 -0
  3. py4heappe-3.0.0/PKG-INFO +341 -0
  4. py4heappe-3.0.0/README.md +315 -0
  5. py4heappe-3.0.0/Tools/APIWrapperGen/swagger.json +23206 -0
  6. py4heappe-3.0.0/pyproject.toml +29 -0
  7. py4heappe-3.0.0/src/Py4HEAppE.egg-info/PKG-INFO +341 -0
  8. py4heappe-3.0.0/src/Py4HEAppE.egg-info/SOURCES.txt +684 -0
  9. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/__init__.py +265 -0
  10. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/api/__init__.py +17 -0
  11. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/api/cluster_information_api.py +337 -0
  12. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/api/credentials_api.py +409 -0
  13. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/api/data_transfer_api.py +498 -0
  14. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/api/dictionary_api.py +1563 -0
  15. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/api/events_api.py +122 -0
  16. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/api/file_transfer_api.py +603 -0
  17. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/api/health_api.py +118 -0
  18. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/api/job_management_api.py +1205 -0
  19. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/api/job_reporting_api.py +787 -0
  20. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/api/management_api.py +10074 -0
  21. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/api/q_scheduler_api.py +1102 -0
  22. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/api/user_and_limitation_management_api.py +765 -0
  23. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/api_client.py +632 -0
  24. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/configuration.py +261 -0
  25. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/__init__.py +248 -0
  26. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/accounting_ext.py +252 -0
  27. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/accounting_state_ext.py +250 -0
  28. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/accounting_state_type_ext.py +93 -0
  29. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/adaptor_user_created_ext.py +168 -0
  30. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/adaptor_user_ext.py +278 -0
  31. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/adaptor_user_group_ext.py +222 -0
  32. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/adaptor_user_role_ext.py +142 -0
  33. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/adaptor_user_role_type.py +95 -0
  34. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/adaptor_user_type_ext.py +91 -0
  35. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/admin_job_paged_result_ext.py +196 -0
  36. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/admin_submitted_job_info_ext.py +692 -0
  37. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/admin_submitter_info_ext.py +196 -0
  38. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/admin_task_info_ext.py +1000 -0
  39. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/assign_adaptor_user_to_project_model.py +194 -0
  40. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/assign_adaptor_user_to_user_group_model.py +194 -0
  41. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/assign_system_role_to_user_model.py +166 -0
  42. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/authenticate_lexis_token_model.py +110 -0
  43. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/authenticate_user_digital_signature_model.py +110 -0
  44. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/authenticate_user_open_id_model.py +110 -0
  45. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/authenticate_user_open_id_open_stack_model.py +138 -0
  46. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/authenticate_user_password_model.py +110 -0
  47. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/bad_request_result.py +110 -0
  48. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/by_cluster_authentication_credential_ext.py +138 -0
  49. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/cancel_job_model.py +140 -0
  50. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/check_log_ext.py +224 -0
  51. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/check_log_ext_.py +224 -0
  52. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/close_q_scheduler_session_model.py +196 -0
  53. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/cloud_event_ext.py +280 -0
  54. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/cluster_access_report_ext.py +140 -0
  55. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/cluster_account_status_ext.py +164 -0
  56. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/cluster_aggregated_report_ext.py +196 -0
  57. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/cluster_authentication_credential_ext.py +140 -0
  58. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/cluster_authentication_credential_ext_.py +140 -0
  59. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/cluster_authentication_credentials_auth_type.py +103 -0
  60. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/cluster_authentication_credentials_auth_type_ext.py +103 -0
  61. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/cluster_connection_counts_ext_.py +140 -0
  62. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/cluster_connection_protocol_ext.py +94 -0
  63. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/cluster_custom_configuration_key_item_model.py +188 -0
  64. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/cluster_detailed_report_ext.py +224 -0
  65. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/cluster_ext.py +280 -0
  66. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/cluster_extended_report_ext.py +225 -0
  67. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/cluster_init_report_ext.py +140 -0
  68. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/cluster_node_extended_type_report_ext.py +224 -0
  69. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/cluster_node_type_aggregated_report_ext.py +196 -0
  70. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/cluster_node_type_aggregation_accounting_ext.py +140 -0
  71. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/cluster_node_type_aggregation_ext.py +252 -0
  72. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/cluster_node_type_detailed_report_ext.py +252 -0
  73. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/cluster_node_type_ext.py +474 -0
  74. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/cluster_node_type_for_task_ext.py +194 -0
  75. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/cluster_node_type_report_ext.py +196 -0
  76. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/cluster_node_type_resource_usage_ext.py +306 -0
  77. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/cluster_node_usage_ext.py +336 -0
  78. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/cluster_project_ext.py +306 -0
  79. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/cluster_project_storage_path_ext.py +196 -0
  80. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/cluster_proxy_connection_ext.py +250 -0
  81. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/cluster_report_ext.py +196 -0
  82. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/command_template_ext.py +308 -0
  83. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/command_template_parameter_ext.py +140 -0
  84. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/command_template_parameter_value_ext.py +140 -0
  85. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/compute_accounting_model.py +196 -0
  86. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/copy_job_data_from_temp_model.py +168 -0
  87. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/copy_job_data_to_temp_model.py +168 -0
  88. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/create_accounting_model.py +196 -0
  89. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/create_adaptor_user_model.py +140 -0
  90. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/create_cluster_model.py +444 -0
  91. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/create_cluster_node_type_aggregation_accounting_model.py +168 -0
  92. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/create_cluster_node_type_aggregation_model.py +252 -0
  93. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/create_cluster_node_type_model.py +420 -0
  94. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/create_cluster_proxy_connection_model.py +250 -0
  95. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/create_command_inner_template_parameter_model.py +168 -0
  96. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/create_command_template_from_generic_model.py +308 -0
  97. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/create_command_template_model.py +336 -0
  98. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/create_command_template_parameter_model.py +224 -0
  99. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/create_credential_model.py +334 -0
  100. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/create_file_transfer_method_model.py +222 -0
  101. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/create_generic_command_template_model.py +280 -0
  102. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/create_job_by_project_model.py +138 -0
  103. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/create_project_assignment_to_cluster_model.py +250 -0
  104. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/create_project_cluster_node_type_aggregation_model.py +196 -0
  105. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/create_project_model.py +362 -0
  106. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/create_secure_shell_key_model.py +168 -0
  107. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/create_sub_project_model.py +252 -0
  108. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/credential_response_ext.py +278 -0
  109. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/data_transfer_method_ext.py +196 -0
  110. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/database_.py +112 -0
  111. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/database_backup_ext.py +222 -0
  112. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/database_backup_type_ext.py +90 -0
  113. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/delete_adaptor_user_model.py +140 -0
  114. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/delete_job_model.py +166 -0
  115. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/deployment_type_ext.py +91 -0
  116. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/detail_ext_.py +244 -0
  117. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/dictionary_item_model.py +136 -0
  118. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/digital_signature_credentials_ext.py +168 -0
  119. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/download_file_from_cluster_model.py +168 -0
  120. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/download_parts_of_job_files_from_cluster_model.py +168 -0
  121. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/dry_run_job_counts_ext_.py +140 -0
  122. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/dry_run_job_info_ext.py +240 -0
  123. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/dry_run_job_model.py +257 -0
  124. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/end_data_transfer_model.py +138 -0
  125. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/end_file_transfer_model.py +168 -0
  126. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/environment_variable_ext.py +140 -0
  127. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/extended_cluster_ext.py +526 -0
  128. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/extended_command_template_ext.py +448 -0
  129. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/extended_command_template_parameter_ext.py +196 -0
  130. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/extended_project_info_ext.py +336 -0
  131. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/external_service_live_status_ext.py +318 -0
  132. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/external_service_statistics_ext.py +344 -0
  133. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/external_services_live_status_model.py +112 -0
  134. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/external_services_report_ext.py +136 -0
  135. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/file_information_ext.py +140 -0
  136. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/file_transfer_cipher_type_ext.py +94 -0
  137. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/file_transfer_key_credentials_ext.py +304 -0
  138. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/file_transfer_method_ext.py +274 -0
  139. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/file_transfer_method_no_credentials_ext.py +250 -0
  140. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/file_transfer_protocol.py +93 -0
  141. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/file_transfer_protocol_ext.py +93 -0
  142. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/file_transfer_upload_files_to_job_execution_dir_body.py +112 -0
  143. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/file_upload_result_ext.py +168 -0
  144. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/get_command_template_parameters_name_model.py +196 -0
  145. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/get_data_transfer_method_model.py +196 -0
  146. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/get_external_services_report_model.py +168 -0
  147. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/get_external_services_statistics_model.py +224 -0
  148. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/get_file_transfer_method_model.py +140 -0
  149. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/get_job_external_service_logs_model.py +141 -0
  150. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/get_jobs_monitoring_model.py +168 -0
  151. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/health_component_.py +136 -0
  152. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/health_ext.py +222 -0
  153. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/http_get_to_job_node_model.py +253 -0
  154. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/http_header_ext.py +140 -0
  155. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/http_post_to_job_node_model.py +281 -0
  156. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/initialize_cluster_script_directory_model.py +196 -0
  157. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/instance_information_ext.py +362 -0
  158. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/job_detailed_report_ext.py +334 -0
  159. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/job_extended_report_ext.py +194 -0
  160. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/job_external_service_log_ext.py +526 -0
  161. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/job_file_content_ext.py +222 -0
  162. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/job_monitoring_ext.py +578 -0
  163. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/job_monitoring_page_ext.py +162 -0
  164. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/job_monitoring_task_ext.py +890 -0
  165. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/job_report_ext.py +196 -0
  166. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/job_specification_ext.py +532 -0
  167. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/job_state_aggregation_report_ext.py +166 -0
  168. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/job_state_ext.py +97 -0
  169. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/job_state_source_ext.py +92 -0
  170. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/lexis_credentials_ext.py +141 -0
  171. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/management_import_migration_package_body.py +112 -0
  172. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/modify_accounting_model.py +224 -0
  173. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/modify_adaptor_user_model.py +168 -0
  174. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/modify_cluster_authentication_credential_model.py +224 -0
  175. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/modify_cluster_model.py +472 -0
  176. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/modify_cluster_node_type_aggregation_model.py +280 -0
  177. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/modify_cluster_node_type_model.py +448 -0
  178. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/modify_cluster_proxy_connection_model.py +278 -0
  179. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/modify_command_template_from_generic_model.py +308 -0
  180. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/modify_command_template_model.py +336 -0
  181. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/modify_command_template_parameter_model.py +224 -0
  182. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/modify_credential_model.py +252 -0
  183. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/modify_file_transfer_method_model.py +250 -0
  184. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/modify_generic_command_template_model.py +308 -0
  185. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/modify_project_assignment_to_cluster_model.py +250 -0
  186. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/modify_project_cluster_node_type_aggregation_model.py +196 -0
  187. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/modify_project_model.py +334 -0
  188. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/modify_sub_project_model.py +252 -0
  189. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/node_used_cores_and_limitation_ext.py +112 -0
  190. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/open_id_credentials_ext.py +141 -0
  191. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/open_q_scheduler_session_model.py +224 -0
  192. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/open_stack_application_credentials_ext.py +140 -0
  193. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/password_credentials_ext.py +140 -0
  194. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/problem_details.py +89 -0
  195. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/project_aggregated_report_ext.py +278 -0
  196. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/project_cluster_node_type_aggregation_ext.py +224 -0
  197. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/project_detailed_report_ext.py +334 -0
  198. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/project_ext.py +418 -0
  199. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/project_extended_report_ext.py +252 -0
  200. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/project_for_task_ext.py +222 -0
  201. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/project_list_report_ext.py +224 -0
  202. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/project_reference_ext.py +137 -0
  203. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/project_report_ext.py +250 -0
  204. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/project_resource_usage_ext.py +280 -0
  205. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/proxy_type.py +92 -0
  206. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/proxy_type_ext.py +92 -0
  207. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/public_key_ext.py +194 -0
  208. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/q_scheduler_create_and_submit_job_body.py +112 -0
  209. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/q_scheduler_session_info_ext.py +240 -0
  210. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/regenerate_secure_shell_key_model.py +196 -0
  211. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/remove_accounting_model.py +140 -0
  212. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/remove_cluster_model.py +140 -0
  213. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/remove_cluster_node_type_aggregation_accounting_model.py +168 -0
  214. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/remove_cluster_node_type_aggregation_model.py +140 -0
  215. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/remove_cluster_node_type_model.py +140 -0
  216. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/remove_cluster_proxy_connection_model.py +140 -0
  217. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/remove_command_template_model.py +140 -0
  218. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/remove_command_template_parameter_model.py +140 -0
  219. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/remove_credential_model.py +196 -0
  220. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/remove_file_transfer_method_model.py +140 -0
  221. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/remove_project_assignment_to_cluster_model.py +168 -0
  222. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/remove_project_cluster_node_type_aggregation_model.py +168 -0
  223. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/remove_project_model.py +140 -0
  224. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/remove_secure_shell_key_model.py +168 -0
  225. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/remove_sub_project_model.py +140 -0
  226. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/remove_system_role_from_user_model.py +166 -0
  227. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/resource_allocation_type_ext.py +91 -0
  228. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/restore_database_model.py +168 -0
  229. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/scheduler_type_ext.py +94 -0
  230. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/set_adaptor_user_block_status_model.py +168 -0
  231. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/ssh_key_user_credentials_model.py +140 -0
  232. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/statistics_ext_.py +190 -0
  233. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/status_check_logs_ext.py +112 -0
  234. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/status_ext.py +222 -0
  235. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/sub_project_aggregated_report_ext.py +196 -0
  236. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/sub_project_ext.py +252 -0
  237. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/submit_job_model.py +140 -0
  238. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/submitted_job_info_ext.py +416 -0
  239. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/submitted_task_info_ext.py +468 -0
  240. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/synchronizable_files_ext.py +92 -0
  241. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/system_role_assignment_ext.py +168 -0
  242. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/task_callback_model.py +293 -0
  243. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/task_detailed_report_ext.py +334 -0
  244. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/task_extended_report_ext.py +278 -0
  245. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/task_file_offset_ext.py +166 -0
  246. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/task_paralization_parameter_ext.py +168 -0
  247. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/task_priority_ext.py +97 -0
  248. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/task_report_ext.py +168 -0
  249. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/task_specification_ext.py +866 -0
  250. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/task_state_ext.py +98 -0
  251. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/unauthorized_result.py +110 -0
  252. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/usage_type_ext.py +92 -0
  253. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/user_group_list_report_ext.py +248 -0
  254. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/vault_.py +138 -0
  255. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/vault_credential_counts_ext_.py +140 -0
  256. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/vault_info_.py +196 -0
  257. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/models/version_information_ext.py +168 -0
  258. py4heappe-3.0.0/src/py4heappe/heappe_v6/core/rest.py +317 -0
  259. py4heappe-2.9.0/.gitlab/stages/.generation.yml +0 -25
  260. py4heappe-2.9.0/CHANGELOG.md +0 -123
  261. py4heappe-2.9.0/PKG-INFO +0 -340
  262. py4heappe-2.9.0/README.md +0 -314
  263. py4heappe-2.9.0/Tools/APIWrapperGen/swagger.json +0 -19424
  264. py4heappe-2.9.0/pyproject.toml +0 -29
  265. py4heappe-2.9.0/src/Py4HEAppE.egg-info/PKG-INFO +0 -340
  266. py4heappe-2.9.0/src/Py4HEAppE.egg-info/SOURCES.txt +0 -654
  267. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/__init__.py +0 -235
  268. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/api/__init__.py +0 -15
  269. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/api/cluster_information_api.py +0 -337
  270. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/api/credentials_api.py +0 -409
  271. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/api/data_transfer_api.py +0 -498
  272. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/api/dictionary_api.py +0 -1393
  273. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/api/file_transfer_api.py +0 -603
  274. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/api/health_api.py +0 -118
  275. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/api/job_management_api.py +0 -987
  276. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/api/job_reporting_api.py +0 -787
  277. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/api/management_api.py +0 -9241
  278. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/api/user_and_limitation_management_api.py +0 -765
  279. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/api_client.py +0 -632
  280. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/configuration.py +0 -261
  281. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/__init__.py +0 -220
  282. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/accounting_ext.py +0 -252
  283. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/accounting_state_ext.py +0 -250
  284. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/accounting_state_type_ext.py +0 -93
  285. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/adaptor_user_created_ext.py +0 -168
  286. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/adaptor_user_ext.py +0 -250
  287. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/adaptor_user_group_ext.py +0 -222
  288. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/adaptor_user_role_ext.py +0 -142
  289. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/adaptor_user_role_type.py +0 -95
  290. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/adaptor_user_type_ext.py +0 -91
  291. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/assign_adaptor_user_to_project_model.py +0 -194
  292. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/assign_adaptor_user_to_user_group_model.py +0 -194
  293. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/authenticate_lexis_token_model.py +0 -110
  294. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/authenticate_user_digital_signature_model.py +0 -110
  295. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/authenticate_user_open_id_model.py +0 -110
  296. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/authenticate_user_open_id_open_stack_model.py +0 -138
  297. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/authenticate_user_password_model.py +0 -110
  298. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/bad_request_result.py +0 -110
  299. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/by_cluster_authentication_credential_ext.py +0 -138
  300. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/cancel_job_model.py +0 -140
  301. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/check_log_ext.py +0 -224
  302. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/check_log_ext_.py +0 -224
  303. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/cluster_access_report_ext.py +0 -140
  304. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/cluster_account_status_ext.py +0 -164
  305. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/cluster_aggregated_report_ext.py +0 -196
  306. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/cluster_authentication_credential_ext.py +0 -140
  307. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/cluster_authentication_credential_ext_.py +0 -140
  308. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/cluster_authentication_credentials_auth_type.py +0 -103
  309. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/cluster_authentication_credentials_auth_type_ext.py +0 -103
  310. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/cluster_connection_counts_ext_.py +0 -140
  311. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/cluster_connection_protocol_ext.py +0 -94
  312. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/cluster_detailed_report_ext.py +0 -224
  313. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/cluster_ext.py +0 -252
  314. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/cluster_extended_report_ext.py +0 -225
  315. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/cluster_init_report_ext.py +0 -140
  316. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/cluster_node_extended_type_report_ext.py +0 -224
  317. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/cluster_node_type_aggregated_report_ext.py +0 -196
  318. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/cluster_node_type_aggregation_accounting_ext.py +0 -140
  319. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/cluster_node_type_aggregation_ext.py +0 -252
  320. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/cluster_node_type_detailed_report_ext.py +0 -252
  321. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/cluster_node_type_ext.py +0 -474
  322. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/cluster_node_type_for_task_ext.py +0 -194
  323. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/cluster_node_type_report_ext.py +0 -196
  324. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/cluster_node_type_resource_usage_ext.py +0 -306
  325. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/cluster_node_usage_ext.py +0 -336
  326. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/cluster_project_ext.py +0 -306
  327. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/cluster_project_storage_path_ext.py +0 -196
  328. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/cluster_proxy_connection_ext.py +0 -250
  329. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/cluster_report_ext.py +0 -196
  330. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/command_template_ext.py +0 -308
  331. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/command_template_parameter_ext.py +0 -140
  332. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/command_template_parameter_value_ext.py +0 -140
  333. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/compute_accounting_model.py +0 -196
  334. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/copy_job_data_from_temp_model.py +0 -168
  335. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/copy_job_data_to_temp_model.py +0 -168
  336. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/create_accounting_model.py +0 -196
  337. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/create_adaptor_user_model.py +0 -140
  338. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/create_cluster_model.py +0 -416
  339. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/create_cluster_node_type_aggregation_accounting_model.py +0 -168
  340. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/create_cluster_node_type_aggregation_model.py +0 -252
  341. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/create_cluster_node_type_model.py +0 -420
  342. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/create_cluster_proxy_connection_model.py +0 -250
  343. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/create_command_inner_template_parameter_model.py +0 -168
  344. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/create_command_template_from_generic_model.py +0 -308
  345. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/create_command_template_model.py +0 -336
  346. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/create_command_template_parameter_model.py +0 -224
  347. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/create_credential_model.py +0 -334
  348. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/create_file_transfer_method_model.py +0 -222
  349. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/create_generic_command_template_model.py +0 -280
  350. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/create_job_by_project_model.py +0 -138
  351. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/create_project_assignment_to_cluster_model.py +0 -250
  352. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/create_project_cluster_node_type_aggregation_model.py +0 -196
  353. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/create_project_model.py +0 -362
  354. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/create_secure_shell_key_model.py +0 -168
  355. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/create_sub_project_model.py +0 -252
  356. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/credential_response_ext.py +0 -278
  357. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/data_transfer_method_ext.py +0 -196
  358. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/database_.py +0 -112
  359. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/database_backup_ext.py +0 -222
  360. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/database_backup_type_ext.py +0 -90
  361. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/delete_adaptor_user_model.py +0 -140
  362. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/delete_job_model.py +0 -166
  363. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/deployment_type_ext.py +0 -91
  364. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/detail_ext_.py +0 -244
  365. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/dictionary_item_model.py +0 -136
  366. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/digital_signature_credentials_ext.py +0 -168
  367. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/download_file_from_cluster_model.py +0 -168
  368. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/download_parts_of_job_files_from_cluster_model.py +0 -168
  369. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/dry_run_job_counts_ext_.py +0 -140
  370. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/dry_run_job_info_ext.py +0 -240
  371. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/dry_run_job_model.py +0 -257
  372. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/end_data_transfer_model.py +0 -138
  373. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/end_file_transfer_model.py +0 -168
  374. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/environment_variable_ext.py +0 -140
  375. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/extended_cluster_ext.py +0 -470
  376. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/extended_command_template_ext.py +0 -448
  377. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/extended_command_template_parameter_ext.py +0 -196
  378. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/extended_project_info_ext.py +0 -336
  379. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/file_information_ext.py +0 -140
  380. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/file_transfer_cipher_type_ext.py +0 -94
  381. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/file_transfer_key_credentials_ext.py +0 -304
  382. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/file_transfer_method_ext.py +0 -274
  383. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/file_transfer_method_no_credentials_ext.py +0 -250
  384. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/file_transfer_protocol.py +0 -93
  385. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/file_transfer_protocol_ext.py +0 -93
  386. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/file_transfer_upload_files_to_job_execution_dir_body.py +0 -112
  387. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/file_upload_result_ext.py +0 -168
  388. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/get_command_template_parameters_name_model.py +0 -196
  389. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/get_data_transfer_method_model.py +0 -196
  390. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/get_file_transfer_method_model.py +0 -140
  391. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/health_component_.py +0 -136
  392. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/health_ext.py +0 -222
  393. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/http_get_to_job_node_model.py +0 -253
  394. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/http_header_ext.py +0 -140
  395. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/http_post_to_job_node_model.py +0 -281
  396. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/initialize_cluster_script_directory_model.py +0 -196
  397. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/instance_information_ext.py +0 -362
  398. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/job_detailed_report_ext.py +0 -334
  399. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/job_extended_report_ext.py +0 -194
  400. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/job_file_content_ext.py +0 -222
  401. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/job_report_ext.py +0 -196
  402. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/job_specification_ext.py +0 -532
  403. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/job_state_aggregation_report_ext.py +0 -166
  404. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/job_state_ext.py +0 -97
  405. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/lexis_credentials_ext.py +0 -141
  406. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/management_import_migration_package_body.py +0 -112
  407. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/modify_accounting_model.py +0 -224
  408. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/modify_adaptor_user_model.py +0 -168
  409. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/modify_cluster_authentication_credential_model.py +0 -224
  410. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/modify_cluster_model.py +0 -444
  411. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/modify_cluster_node_type_aggregation_model.py +0 -280
  412. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/modify_cluster_node_type_model.py +0 -448
  413. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/modify_cluster_proxy_connection_model.py +0 -278
  414. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/modify_command_template_from_generic_model.py +0 -308
  415. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/modify_command_template_model.py +0 -336
  416. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/modify_command_template_parameter_model.py +0 -224
  417. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/modify_credential_model.py +0 -252
  418. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/modify_file_transfer_method_model.py +0 -250
  419. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/modify_generic_command_template_model.py +0 -308
  420. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/modify_project_assignment_to_cluster_model.py +0 -250
  421. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/modify_project_cluster_node_type_aggregation_model.py +0 -196
  422. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/modify_project_model.py +0 -334
  423. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/modify_sub_project_model.py +0 -252
  424. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/node_used_cores_and_limitation_ext.py +0 -112
  425. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/open_id_credentials_ext.py +0 -141
  426. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/open_stack_application_credentials_ext.py +0 -140
  427. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/password_credentials_ext.py +0 -140
  428. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/problem_details.py +0 -89
  429. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/project_aggregated_report_ext.py +0 -278
  430. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/project_cluster_node_type_aggregation_ext.py +0 -224
  431. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/project_detailed_report_ext.py +0 -334
  432. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/project_ext.py +0 -418
  433. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/project_extended_report_ext.py +0 -252
  434. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/project_for_task_ext.py +0 -222
  435. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/project_list_report_ext.py +0 -224
  436. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/project_reference_ext.py +0 -137
  437. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/project_report_ext.py +0 -250
  438. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/project_resource_usage_ext.py +0 -280
  439. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/proxy_type.py +0 -92
  440. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/proxy_type_ext.py +0 -92
  441. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/public_key_ext.py +0 -194
  442. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/regenerate_secure_shell_key_model.py +0 -196
  443. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/remove_accounting_model.py +0 -140
  444. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/remove_cluster_model.py +0 -140
  445. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/remove_cluster_node_type_aggregation_accounting_model.py +0 -168
  446. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/remove_cluster_node_type_aggregation_model.py +0 -140
  447. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/remove_cluster_node_type_model.py +0 -140
  448. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/remove_cluster_proxy_connection_model.py +0 -140
  449. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/remove_command_template_model.py +0 -140
  450. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/remove_command_template_parameter_model.py +0 -140
  451. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/remove_credential_model.py +0 -196
  452. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/remove_file_transfer_method_model.py +0 -140
  453. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/remove_project_assignment_to_cluster_model.py +0 -168
  454. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/remove_project_cluster_node_type_aggregation_model.py +0 -168
  455. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/remove_project_model.py +0 -140
  456. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/remove_secure_shell_key_model.py +0 -168
  457. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/remove_sub_project_model.py +0 -140
  458. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/resource_allocation_type_ext.py +0 -91
  459. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/restore_database_model.py +0 -168
  460. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/scheduler_type_ext.py +0 -93
  461. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/ssh_key_user_credentials_model.py +0 -140
  462. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/statistics_ext_.py +0 -190
  463. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/status_check_logs_ext.py +0 -112
  464. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/status_ext.py +0 -222
  465. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/sub_project_aggregated_report_ext.py +0 -196
  466. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/sub_project_ext.py +0 -252
  467. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/submit_job_model.py +0 -140
  468. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/submitted_job_info_ext.py +0 -362
  469. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/submitted_task_info_ext.py +0 -414
  470. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/synchronizable_files_ext.py +0 -92
  471. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/task_detailed_report_ext.py +0 -334
  472. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/task_extended_report_ext.py +0 -278
  473. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/task_file_offset_ext.py +0 -166
  474. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/task_paralization_parameter_ext.py +0 -168
  475. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/task_priority_ext.py +0 -97
  476. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/task_report_ext.py +0 -168
  477. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/task_specification_ext.py +0 -866
  478. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/task_state_ext.py +0 -98
  479. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/unauthorized_result.py +0 -110
  480. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/usage_type_ext.py +0 -92
  481. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/user_group_list_report_ext.py +0 -248
  482. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/vault_.py +0 -138
  483. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/vault_credential_counts_ext_.py +0 -140
  484. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/vault_info_.py +0 -196
  485. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/models/version_information_ext.py +0 -168
  486. py4heappe-2.9.0/src/py4heappe/heappe_v6/core/rest.py +0 -317
  487. {py4heappe-2.9.0 → py4heappe-3.0.0}/.gitignore +0 -0
  488. {py4heappe-2.9.0 → py4heappe-3.0.0}/.gitlab/issue_templates/Backlog.md +0 -0
  489. {py4heappe-2.9.0 → py4heappe-3.0.0}/.gitlab/issue_templates/Bug.md +0 -0
  490. {py4heappe-2.9.0 → py4heappe-3.0.0}/.gitlab/issue_templates/Feature.md +0 -0
  491. {py4heappe-2.9.0 → py4heappe-3.0.0}/.gitlab/merge_request_templates/Default.md +0 -0
  492. {py4heappe-2.9.0 → py4heappe-3.0.0}/.gitlab/stages/.check.yml +0 -0
  493. {py4heappe-2.9.0 → py4heappe-3.0.0}/.gitlab/stages/.publish.yml +0 -0
  494. {py4heappe-2.9.0 → py4heappe-3.0.0}/.gitlab/stages/.release.yml +0 -0
  495. {py4heappe-2.9.0 → py4heappe-3.0.0}/.gitlab-ci.yml +0 -0
  496. {py4heappe-2.9.0 → py4heappe-3.0.0}/LICENSE +0 -0
  497. {py4heappe-2.9.0 → py4heappe-3.0.0}/Tools/APIWrapperGen/README.md +0 -0
  498. {py4heappe-2.9.0 → py4heappe-3.0.0}/Tools/APIWrapperGen/Templates/python/README.mustache +0 -0
  499. {py4heappe-2.9.0 → py4heappe-3.0.0}/Tools/APIWrapperGen/Templates/python/__init__api.mustache +0 -0
  500. {py4heappe-2.9.0 → py4heappe-3.0.0}/Tools/APIWrapperGen/Templates/python/__init__model.mustache +0 -0
  501. {py4heappe-2.9.0 → py4heappe-3.0.0}/Tools/APIWrapperGen/Templates/python/__init__package.mustache +0 -0
  502. {py4heappe-2.9.0 → py4heappe-3.0.0}/Tools/APIWrapperGen/Templates/python/__init__test.mustache +0 -0
  503. {py4heappe-2.9.0 → py4heappe-3.0.0}/Tools/APIWrapperGen/Templates/python/api.mustache +0 -0
  504. {py4heappe-2.9.0 → py4heappe-3.0.0}/Tools/APIWrapperGen/Templates/python/api_client.mustache +0 -0
  505. {py4heappe-2.9.0 → py4heappe-3.0.0}/Tools/APIWrapperGen/Templates/python/api_doc.mustache +0 -0
  506. {py4heappe-2.9.0 → py4heappe-3.0.0}/Tools/APIWrapperGen/Templates/python/api_test.mustache +0 -0
  507. {py4heappe-2.9.0 → py4heappe-3.0.0}/Tools/APIWrapperGen/Templates/python/asyncio/rest.mustache +0 -0
  508. {py4heappe-2.9.0 → py4heappe-3.0.0}/Tools/APIWrapperGen/Templates/python/configuration.mustache +0 -0
  509. {py4heappe-2.9.0 → py4heappe-3.0.0}/Tools/APIWrapperGen/Templates/python/git_push.sh.mustache +0 -0
  510. {py4heappe-2.9.0 → py4heappe-3.0.0}/Tools/APIWrapperGen/Templates/python/gitignore.mustache +0 -0
  511. {py4heappe-2.9.0 → py4heappe-3.0.0}/Tools/APIWrapperGen/Templates/python/model.mustache +0 -0
  512. {py4heappe-2.9.0 → py4heappe-3.0.0}/Tools/APIWrapperGen/Templates/python/model_doc.mustache +0 -0
  513. {py4heappe-2.9.0 → py4heappe-3.0.0}/Tools/APIWrapperGen/Templates/python/model_test.mustache +0 -0
  514. {py4heappe-2.9.0 → py4heappe-3.0.0}/Tools/APIWrapperGen/Templates/python/partial_header.mustache +0 -0
  515. {py4heappe-2.9.0 → py4heappe-3.0.0}/Tools/APIWrapperGen/Templates/python/requirements.mustache +0 -0
  516. {py4heappe-2.9.0 → py4heappe-3.0.0}/Tools/APIWrapperGen/Templates/python/rest.mustache +0 -0
  517. {py4heappe-2.9.0 → py4heappe-3.0.0}/Tools/APIWrapperGen/Templates/python/setup.mustache +0 -0
  518. {py4heappe-2.9.0 → py4heappe-3.0.0}/Tools/APIWrapperGen/Templates/python/test-requirements.mustache +0 -0
  519. {py4heappe-2.9.0 → py4heappe-3.0.0}/Tools/APIWrapperGen/Templates/python/tornado/rest.mustache +0 -0
  520. {py4heappe-2.9.0 → py4heappe-3.0.0}/Tools/APIWrapperGen/Templates/python/tox.mustache +0 -0
  521. {py4heappe-2.9.0 → py4heappe-3.0.0}/Tools/APIWrapperGen/Templates/python/travis.mustache +0 -0
  522. {py4heappe-2.9.0 → py4heappe-3.0.0}/Tools/APIWrapperGen/config.json +0 -0
  523. {py4heappe-2.9.0 → py4heappe-3.0.0}/docs/examples/example.py +0 -0
  524. {py4heappe-2.9.0 → py4heappe-3.0.0}/docs/imgs/logo.png +0 -0
  525. {py4heappe-2.9.0 → py4heappe-3.0.0}/requirements.txt +0 -0
  526. {py4heappe-2.9.0 → py4heappe-3.0.0}/setup.cfg +0 -0
  527. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/Py4HEAppE.egg-info/dependency_links.txt +0 -0
  528. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/Py4HEAppE.egg-info/entry_points.txt +0 -0
  529. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/Py4HEAppE.egg-info/requires.txt +0 -0
  530. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/Py4HEAppE.egg-info/top_level.txt +0 -0
  531. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/__init__.py +0 -0
  532. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/__init__.py +0 -0
  533. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/__init__.py +0 -0
  534. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/cli/__init__.py +0 -0
  535. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/cli/auth.py +0 -0
  536. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/cli/command_template.py +0 -0
  537. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/cli/configuration.py +0 -0
  538. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/cli/information.py +0 -0
  539. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/cli/job_management.py +0 -0
  540. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/cli/report.py +0 -0
  541. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/__init__.py +0 -0
  542. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/api/__init__.py +0 -0
  543. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/api/cluster_information_api.py +0 -0
  544. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/api/data_transfer_api.py +0 -0
  545. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/api/file_transfer_api.py +0 -0
  546. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/api/job_management_api.py +0 -0
  547. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/api/job_reporting_api.py +0 -0
  548. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/api/management_api.py +0 -0
  549. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/api/user_and_limitation_management_api.py +0 -0
  550. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/api_client.py +0 -0
  551. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/base/__init__.py +0 -0
  552. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/base/exceptions.py +0 -0
  553. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/base/logger.py +0 -0
  554. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/base/utils.py +0 -0
  555. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/configuration.py +0 -0
  556. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/__init__.py +0 -0
  557. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/adaptor_user.py +0 -0
  558. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/adaptor_user_group.py +0 -0
  559. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/adaptor_user_role.py +0 -0
  560. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/adaptor_user_role_ext.py +0 -0
  561. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/adaptor_user_role_type.py +0 -0
  562. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/adaptor_user_type.py +0 -0
  563. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/adaptor_user_user_group_role.py +0 -0
  564. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/allocated_nodes_ips_model.py +0 -0
  565. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/authenticate_lexis_token_model.py +0 -0
  566. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/authenticate_user_digital_signature_model.py +0 -0
  567. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/authenticate_user_open_id_model.py +0 -0
  568. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/authenticate_user_open_id_open_stack_model.py +0 -0
  569. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/authenticate_user_password_model.py +0 -0
  570. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/authentication_credentials.py +0 -0
  571. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/bad_request_result.py +0 -0
  572. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/cancel_job_model.py +0 -0
  573. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/cluster.py +0 -0
  574. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/cluster_authentication_credentials.py +0 -0
  575. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/cluster_authentication_credentials_auth_type.py +0 -0
  576. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/cluster_connection_protocol.py +0 -0
  577. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/cluster_detailed_report_ext.py +0 -0
  578. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/cluster_ext.py +0 -0
  579. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/cluster_init_report_ext.py +0 -0
  580. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/cluster_node_type.py +0 -0
  581. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/cluster_node_type_detailed_report_ext.py +0 -0
  582. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/cluster_node_type_ext.py +0 -0
  583. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/cluster_node_type_for_task_ext.py +0 -0
  584. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/cluster_node_type_report_ext.py +0 -0
  585. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/cluster_node_type_requested_group.py +0 -0
  586. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/cluster_node_type_resource_usage_ext.py +0 -0
  587. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/cluster_node_usage_ext.py +0 -0
  588. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/cluster_project.py +0 -0
  589. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/cluster_project_credential.py +0 -0
  590. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/cluster_proxy_connection.py +0 -0
  591. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/cluster_proxy_connection_ext.py +0 -0
  592. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/cluster_report_ext.py +0 -0
  593. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/command_template.py +0 -0
  594. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/command_template_ext.py +0 -0
  595. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/command_template_parameter.py +0 -0
  596. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/command_template_parameter_ext.py +0 -0
  597. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/command_template_parameter_value_ext.py +0 -0
  598. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/contact.py +0 -0
  599. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/copy_job_data_from_temp_model.py +0 -0
  600. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/copy_job_data_to_temp_model.py +0 -0
  601. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/create_command_inner_template_parameter_model.py +0 -0
  602. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/create_command_template_from_generic_model.py +0 -0
  603. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/create_command_template_model.py +0 -0
  604. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/create_command_template_parameter_model.py +0 -0
  605. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/create_job_by_project_model.py +0 -0
  606. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/create_project_assignment_to_cluster_model.py +0 -0
  607. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/create_project_model.py +0 -0
  608. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/create_secure_shell_key_model.py +0 -0
  609. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/create_secure_shell_key_model_obsolete.py +0 -0
  610. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/current_cluster_node_usage_model.py +0 -0
  611. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/current_info_for_job_model.py +0 -0
  612. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/data_transfer_method_ext.py +0 -0
  613. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/delete_job_model.py +0 -0
  614. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/deployment_type_ext.py +0 -0
  615. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/digital_signature_credentials_ext.py +0 -0
  616. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/download_file_from_cluster_model.py +0 -0
  617. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/download_parts_of_job_files_from_cluster_model.py +0 -0
  618. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/end_data_transfer_model.py +0 -0
  619. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/end_file_transfer_model.py +0 -0
  620. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/environment_variable_ext.py +0 -0
  621. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/extended_command_template_ext.py +0 -0
  622. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/extended_command_template_parameter_ext.py +0 -0
  623. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/extended_project_info_ext.py +0 -0
  624. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/file_information_ext.py +0 -0
  625. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/file_transfer_cipher_type.py +0 -0
  626. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/file_transfer_cipher_type_ext.py +0 -0
  627. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/file_transfer_key_credentials_ext.py +0 -0
  628. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/file_transfer_method.py +0 -0
  629. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/file_transfer_method_ext.py +0 -0
  630. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/file_transfer_protocol.py +0 -0
  631. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/file_transfer_protocol_ext.py +0 -0
  632. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/get_command_template_parameters_name_model.py +0 -0
  633. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/get_current_usage_and_limitations_for_current_user_model.py +0 -0
  634. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/get_data_transfer_method_model.py +0 -0
  635. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/get_file_transfer_method_model.py +0 -0
  636. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/http_get_to_job_node_model.py +0 -0
  637. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/http_header_ext.py +0 -0
  638. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/http_post_to_job_node_model.py +0 -0
  639. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/initialize_cluster_script_directory_model.py +0 -0
  640. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/instance_information_ext.py +0 -0
  641. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/job_detailed_report_ext.py +0 -0
  642. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/job_file_content_ext.py +0 -0
  643. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/job_report_ext.py +0 -0
  644. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/job_specification_by_project_ext.py +0 -0
  645. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/job_specification_ext.py +0 -0
  646. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/job_state_aggregation_report_ext.py +0 -0
  647. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/job_state_ext.py +0 -0
  648. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/lexis_credentials_ext.py +0 -0
  649. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/list_changed_files_for_job_model.py +0 -0
  650. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/list_jobs_for_current_user_model.py +0 -0
  651. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/modify_command_template_from_generic_model.py +0 -0
  652. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/modify_command_template_model.py +0 -0
  653. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/modify_command_template_parameter_model.py +0 -0
  654. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/modify_project_assignment_to_cluster_model.py +0 -0
  655. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/modify_project_model.py +0 -0
  656. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/node_used_cores_and_limitation_ext.py +0 -0
  657. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/open_id_credentials_ext.py +0 -0
  658. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/open_stack_application_credentials_ext.py +0 -0
  659. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/password_credentials_ext.py +0 -0
  660. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/problem_details.py +0 -0
  661. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/project.py +0 -0
  662. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/project_contact.py +0 -0
  663. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/project_detailed_report_ext.py +0 -0
  664. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/project_ext.py +0 -0
  665. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/project_for_task_ext.py +0 -0
  666. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/project_list_report_ext.py +0 -0
  667. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/project_reference_ext.py +0 -0
  668. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/project_report_ext.py +0 -0
  669. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/project_resource_usage_ext.py +0 -0
  670. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/proxy_type.py +0 -0
  671. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/proxy_type_ext.py +0 -0
  672. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/public_key_ext.py +0 -0
  673. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/recreate_secure_shell_key_model.py +0 -0
  674. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/regenerate_secure_shell_key_model.py +0 -0
  675. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/regenerate_secure_shell_key_model_obsolete.py +0 -0
  676. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/remove_command_template_model.py +0 -0
  677. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/remove_command_template_parameter_model.py +0 -0
  678. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/remove_project_assignment_to_cluster_model.py +0 -0
  679. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/remove_project_model.py +0 -0
  680. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/remove_secure_shell_key_model.py +0 -0
  681. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/remove_secure_shell_key_model_obsolete.py +0 -0
  682. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/resource_allocation_type_ext.py +0 -0
  683. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/resource_limitation_ext.py +0 -0
  684. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/resource_usage_ext.py +0 -0
  685. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/scheduler_type.py +0 -0
  686. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/ssh_key_user_credentials_model.py +0 -0
  687. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/submit_job_model.py +0 -0
  688. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/submitted_job_info_ext.py +0 -0
  689. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/submitted_task_info_ext.py +0 -0
  690. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/synchronizable_files_ext.py +0 -0
  691. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/task_detailed_report_ext.py +0 -0
  692. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/task_file_offset_ext.py +0 -0
  693. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/task_paralization_parameter_ext.py +0 -0
  694. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/task_priority_ext.py +0 -0
  695. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/task_report_ext.py +0 -0
  696. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/task_specification_ext.py +0 -0
  697. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/task_state_ext.py +0 -0
  698. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/test_cluster_access_for_account_model.py +0 -0
  699. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/test_cluster_access_for_account_model_obsolete.py +0 -0
  700. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/unauthorized_result.py +0 -0
  701. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/usage_type.py +0 -0
  702. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/usage_type_ext.py +0 -0
  703. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/user_group_detailed_report_ext.py +0 -0
  704. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/user_group_list_report_ext.py +0 -0
  705. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/user_group_report_ext.py +0 -0
  706. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/models/version_information_ext.py +0 -0
  707. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v4/core/rest.py +0 -0
  708. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/__init__.py +0 -0
  709. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/cli/__init__.py +0 -0
  710. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/cli/auth.py +0 -0
  711. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/cli/command_template.py +0 -0
  712. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/cli/configuration.py +0 -0
  713. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/cli/information.py +0 -0
  714. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/cli/job_management.py +0 -0
  715. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/cli/report.py +0 -0
  716. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/__init__.py +0 -0
  717. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/api/__init__.py +0 -0
  718. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/api/cluster_information_api.py +0 -0
  719. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/api/data_transfer_api.py +0 -0
  720. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/api/file_transfer_api.py +0 -0
  721. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/api/job_management_api.py +0 -0
  722. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/api/job_reporting_api.py +0 -0
  723. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/api/management_api.py +0 -0
  724. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/api/user_and_limitation_management_api.py +0 -0
  725. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/api_client.py +0 -0
  726. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/base/__init__.py +0 -0
  727. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/base/exceptions.py +0 -0
  728. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/base/logger.py +0 -0
  729. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/base/utils.py +0 -0
  730. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/configuration.py +0 -0
  731. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/__init__.py +0 -0
  732. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/accounting_ext.py +0 -0
  733. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/accounting_state_ext.py +0 -0
  734. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/accounting_state_type_ext.py +0 -0
  735. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/adaptor_user_ext.py +0 -0
  736. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/adaptor_user_group_ext.py +0 -0
  737. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/adaptor_user_role_ext.py +0 -0
  738. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/adaptor_user_type_ext.py +0 -0
  739. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/authenticate_lexis_token_model.py +0 -0
  740. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/authenticate_user_digital_signature_model.py +0 -0
  741. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/authenticate_user_open_id_model.py +0 -0
  742. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/authenticate_user_open_id_open_stack_model.py +0 -0
  743. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/authenticate_user_password_model.py +0 -0
  744. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/bad_request_result.py +0 -0
  745. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/cancel_job_model.py +0 -0
  746. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/cluster_aggregated_report_ext.py +0 -0
  747. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/cluster_authentication_credentials_auth_type_ext.py +0 -0
  748. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/cluster_connection_protocol.py +0 -0
  749. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/cluster_connection_protocol_ext.py +0 -0
  750. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/cluster_detailed_report_ext.py +0 -0
  751. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/cluster_ext.py +0 -0
  752. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/cluster_extended_report_ext.py +0 -0
  753. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/cluster_init_report_ext.py +0 -0
  754. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/cluster_node_extended_type_report_ext.py +0 -0
  755. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/cluster_node_type_aggregated_report_ext.py +0 -0
  756. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/cluster_node_type_aggregation_accounting_ext.py +0 -0
  757. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/cluster_node_type_aggregation_ext.py +0 -0
  758. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/cluster_node_type_detailed_report_ext.py +0 -0
  759. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/cluster_node_type_ext.py +0 -0
  760. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/cluster_node_type_for_task_ext.py +0 -0
  761. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/cluster_node_type_report_ext.py +0 -0
  762. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/cluster_node_type_resource_usage_ext.py +0 -0
  763. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/cluster_node_usage_ext.py +0 -0
  764. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/cluster_project_ext.py +0 -0
  765. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/cluster_proxy_connection_ext.py +0 -0
  766. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/cluster_report_ext.py +0 -0
  767. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/command_template_ext.py +0 -0
  768. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/command_template_parameter_ext.py +0 -0
  769. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/command_template_parameter_value_ext.py +0 -0
  770. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/compute_accounting_model.py +0 -0
  771. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/copy_job_data_from_temp_model.py +0 -0
  772. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/copy_job_data_to_temp_model.py +0 -0
  773. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/create_accounting_model.py +0 -0
  774. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/create_cluster_model.py +0 -0
  775. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/create_cluster_node_type_aggregation_accounting_model.py +0 -0
  776. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/create_cluster_node_type_aggregation_model.py +0 -0
  777. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/create_cluster_node_type_model.py +0 -0
  778. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/create_cluster_proxy_connection_model.py +0 -0
  779. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/create_command_inner_template_parameter_model.py +0 -0
  780. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/create_command_template_from_generic_model.py +0 -0
  781. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/create_command_template_model.py +0 -0
  782. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/create_command_template_parameter_model.py +0 -0
  783. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/create_file_transfer_method_model.py +0 -0
  784. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/create_job_by_project_model.py +0 -0
  785. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/create_project_assignment_to_cluster_model.py +0 -0
  786. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/create_project_cluster_node_type_aggregation_model.py +0 -0
  787. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/create_project_model.py +0 -0
  788. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/create_secure_shell_key_model.py +0 -0
  789. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/create_secure_shell_key_model_obsolete.py +0 -0
  790. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/create_sub_project_model.py +0 -0
  791. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/data_transfer_method_ext.py +0 -0
  792. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/delete_job_model.py +0 -0
  793. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/deployment_type_ext.py +0 -0
  794. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/digital_signature_credentials_ext.py +0 -0
  795. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/download_file_from_cluster_model.py +0 -0
  796. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/download_parts_of_job_files_from_cluster_model.py +0 -0
  797. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/end_data_transfer_model.py +0 -0
  798. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/end_file_transfer_model.py +0 -0
  799. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/environment_variable_ext.py +0 -0
  800. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/extended_cluster_ext.py +0 -0
  801. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/extended_command_template_ext.py +0 -0
  802. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/extended_command_template_parameter_ext.py +0 -0
  803. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/extended_project_info_ext.py +0 -0
  804. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/file_information_ext.py +0 -0
  805. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/file_transfer_cipher_type_ext.py +0 -0
  806. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/file_transfer_key_credentials_ext.py +0 -0
  807. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/file_transfer_method_ext.py +0 -0
  808. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/file_transfer_method_no_credentials_ext.py +0 -0
  809. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/file_transfer_protocol.py +0 -0
  810. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/file_transfer_protocol_ext.py +0 -0
  811. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/get_command_template_parameters_name_model.py +0 -0
  812. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/get_data_transfer_method_model.py +0 -0
  813. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/get_file_transfer_method_model.py +0 -0
  814. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/http_get_to_job_node_model.py +0 -0
  815. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/http_header_ext.py +0 -0
  816. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/http_post_to_job_node_model.py +0 -0
  817. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/initialize_cluster_script_directory_model.py +0 -0
  818. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/instance_information_ext.py +0 -0
  819. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/job_detailed_report_ext.py +0 -0
  820. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/job_extended_report_ext.py +0 -0
  821. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/job_file_content_ext.py +0 -0
  822. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/job_report_ext.py +0 -0
  823. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/job_specification_ext.py +0 -0
  824. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/job_state_aggregation_report_ext.py +0 -0
  825. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/job_state_ext.py +0 -0
  826. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/lexis_credentials_ext.py +0 -0
  827. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/modify_accounting_model.py +0 -0
  828. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/modify_cluster_model.py +0 -0
  829. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/modify_cluster_node_type_aggregation_model.py +0 -0
  830. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/modify_cluster_node_type_model.py +0 -0
  831. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/modify_cluster_proxy_connection_model.py +0 -0
  832. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/modify_command_template_from_generic_model.py +0 -0
  833. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/modify_command_template_model.py +0 -0
  834. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/modify_command_template_parameter_model.py +0 -0
  835. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/modify_file_transfer_method_model.py +0 -0
  836. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/modify_project_assignment_to_cluster_model.py +0 -0
  837. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/modify_project_cluster_node_type_aggregation_model.py +0 -0
  838. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/modify_project_model.py +0 -0
  839. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/modify_sub_project_model.py +0 -0
  840. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/node_used_cores_and_limitation_ext.py +0 -0
  841. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/open_id_credentials_ext.py +0 -0
  842. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/open_stack_application_credentials_ext.py +0 -0
  843. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/password_credentials_ext.py +0 -0
  844. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/problem_details.py +0 -0
  845. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/project_aggregated_report_ext.py +0 -0
  846. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/project_cluster_node_type_aggregation_ext.py +0 -0
  847. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/project_detailed_report_ext.py +0 -0
  848. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/project_ext.py +0 -0
  849. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/project_extended_report_ext.py +0 -0
  850. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/project_for_task_ext.py +0 -0
  851. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/project_list_report_ext.py +0 -0
  852. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/project_reference_ext.py +0 -0
  853. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/project_report_ext.py +0 -0
  854. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/project_resource_usage_ext.py +0 -0
  855. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/proxy_type.py +0 -0
  856. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/proxy_type_ext.py +0 -0
  857. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/public_key_ext.py +0 -0
  858. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/regenerate_secure_shell_key_model.py +0 -0
  859. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/regenerate_secure_shell_key_model_obsolete.py +0 -0
  860. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/remove_accounting_model.py +0 -0
  861. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/remove_cluster_model.py +0 -0
  862. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/remove_cluster_node_type_aggregation_accounting_model.py +0 -0
  863. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/remove_cluster_node_type_aggregation_model.py +0 -0
  864. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/remove_cluster_node_type_model.py +0 -0
  865. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/remove_cluster_proxy_connection_model.py +0 -0
  866. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/remove_command_template_model.py +0 -0
  867. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/remove_command_template_parameter_model.py +0 -0
  868. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/remove_file_transfer_method_model.py +0 -0
  869. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/remove_project_assignment_to_cluster_model.py +0 -0
  870. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/remove_project_cluster_node_type_aggregation_model.py +0 -0
  871. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/remove_project_model.py +0 -0
  872. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/remove_secure_shell_key_model.py +0 -0
  873. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/remove_secure_shell_key_model_obsolete.py +0 -0
  874. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/remove_sub_project_model.py +0 -0
  875. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/resource_allocation_type_ext.py +0 -0
  876. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/scheduler_type.py +0 -0
  877. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/scheduler_type_ext.py +0 -0
  878. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/ssh_key_user_credentials_model.py +0 -0
  879. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/sub_project_aggregated_report_ext.py +0 -0
  880. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/sub_project_ext.py +0 -0
  881. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/submit_job_model.py +0 -0
  882. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/submitted_job_info_ext.py +0 -0
  883. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/submitted_task_info_ext.py +0 -0
  884. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/synchronizable_files_ext.py +0 -0
  885. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/task_detailed_report_ext.py +0 -0
  886. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/task_extended_report_ext.py +0 -0
  887. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/task_file_offset_ext.py +0 -0
  888. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/task_paralization_parameter_ext.py +0 -0
  889. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/task_priority_ext.py +0 -0
  890. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/task_report_ext.py +0 -0
  891. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/task_specification_ext.py +0 -0
  892. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/task_state_ext.py +0 -0
  893. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/test_cluster_access_for_account_model_obsolete.py +0 -0
  894. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/unauthorized_result.py +0 -0
  895. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/usage_type_ext.py +0 -0
  896. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/user_group_list_report_ext.py +0 -0
  897. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/models/version_information_ext.py +0 -0
  898. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v5/core/rest.py +0 -0
  899. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v6/__init__.py +0 -0
  900. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v6/cli/__init__.py +0 -0
  901. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v6/cli/auth.py +0 -0
  902. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v6/cli/command_template.py +0 -0
  903. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v6/cli/configuration.py +0 -0
  904. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v6/cli/file_transfer.py +0 -0
  905. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v6/cli/information.py +0 -0
  906. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v6/cli/job_management.py +0 -0
  907. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v6/cli/report.py +0 -0
  908. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v6/cli/transfer.py +0 -0
  909. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v6/core/base/__init__.py +0 -0
  910. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v6/core/base/exceptions.py +0 -0
  911. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v6/core/base/logger.py +0 -0
  912. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe/heappe_v6/core/base/utils.py +0 -0
  913. {py4heappe-2.9.0 → py4heappe-3.0.0}/src/py4heappe_cli.py +0 -0
  914. {py4heappe-2.9.0 → py4heappe-3.0.0}/tests/__init__.py +0 -0
@@ -0,0 +1,34 @@
1
+ ## GENERATION STAGE
2
+
3
+ API_client_generation:
4
+ stage: API_generation
5
+ image: eclipse-temurin:11-jdk
6
+ when: manual
7
+ rules:
8
+ - if: '$CI_COMMIT_BRANCH != "develop" && $CI_COMMIT_BRANCH != "main"'
9
+ before_script:
10
+ - |
11
+ if [ -x "$(command -v dnf)" ]; then
12
+ dnf -y install wget zip
13
+ elif [ -x "$(command -v yum)" ]; then
14
+ yum -y install wget zip
15
+ else
16
+ export DEBIAN_FRONTEND=noninteractive
17
+ apt-get update -qq
18
+ apt-get install -y --no-install-recommends wget zip
19
+ rm -rf /var/lib/apt/lists/*
20
+ fi
21
+ - 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
22
+ script:
23
+ - echo "Generation API client"
24
+ - 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
25
+ - cd app/client/py4heappe
26
+ - zip -r ../../../APIWrapperGen.zip .
27
+ tags:
28
+ - Docker
29
+ - Centos9
30
+ - IT4I_Network
31
+ artifacts:
32
+ paths:
33
+ - APIWrapperGen.zip
34
+ expire_in: 1 days
@@ -0,0 +1,131 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## 3.0.0
9
+
10
+ ### Compatible with HEAppE V6.5.X, V6.4.X, V6.3.X, V6.2.X, V6.2.1, V5.0.X, V4.3.X and V4.2.X
11
+
12
+ ### Changed
13
+ - Updated Py4HEAppE wrapper to support new changes in HEAppE Version 6.5.0 [See HEAppE v6.4.0 CHANGELOG.md](https://github.com/It4innovations/HEAppE/blob/master/CHANGELOG.md#v650)
14
+
15
+
16
+ ## 2.9.0
17
+
18
+ ### Compatible with HEAppE V6.4.X, V6.3.X, V6.2.X, V6.2.1, V5.0.X, V4.3.X and V4.2.X
19
+
20
+ ### Added
21
+ - Added `--full/--minimal` to `py4heappe Job InitJobSpecification` so the initializer can generate either the original minimal template or a full swagger-shaped job specification.
22
+ - Added `--save-result-job-specification` to `py4heappe Job Create` to persist the final parsed job specification JSON in the current working directory before submission.
23
+
24
+ ## 2.8.0
25
+
26
+ ### Compatible with HEAppE V6.4.X, V6.3.X, V6.2.X, V6.2.1, V5.0.X, V4.3.X and V4.2.X
27
+
28
+ ### Added
29
+ - Added `py4heappe Job InitJobSpecification` to generate a minimal JSON job specification template in the current directory or in a user-provided destination.
30
+
31
+ ### Changed
32
+ - Expanded `py4heappe Job Create` to accept an optional JSON job specification file and merge CLI overrides on top of values loaded from that file.
33
+ - Added optional CLI overrides for the extended HEAppE V6 job specification, including indexed overrides for task attributes and nested collections such as environment variables, template parameter values, required nodes, task parallelization parameters, and task dependencies.
34
+ - Switched job specification parsing to build requests from the generated HEAppE V6 models, including generated-model handling for `Priority` and `DependsOn`.
35
+ - Replaced the previous `Job Remove` behavior with `Job Delete`, including support for the `--archive-logs` option.
36
+
37
+ ## 2.7.1
38
+
39
+ ### Compatible with HEAppE V6.4.X, V6.3.X, V6.2.X, V6.2.1, V5.0.X, V4.3.X and V4.2.X
40
+
41
+ ### Fixed
42
+ - Fixed syntax error (`IndentationError`) in `management_api.py` caused by an empty `if` block for single file upload parameters.
43
+ - Fixed the Swagger Codegen mustache template to correctly support single file (`isBinary`), list of files (`items.isBinary`), and regular form parameters.
44
+
45
+ ## 2.7.0
46
+
47
+ ### Compatible with HEAppE V6.4.X, V6.3.X, V6.2.X, V6.2.1, V5.0.X, V4.3.X and V4.2.X
48
+
49
+ ### Changed
50
+ - Updated Py4HEAppE wrapper to support new changes in HEAppE V6.4.0 [See HEAppE v6.4.0 CHANGELOG.md](https://github.com/It4innovations/HEAppE/blob/master/CHANGELOG.md#v640)
51
+
52
+
53
+ ## 2.6.0
54
+
55
+ ### Compatible with HEAppE V6.3.X, V6.2.X, V6.2.1, V5.0.X, V4.3.X and V4.2.X
56
+
57
+ ### Added
58
+
59
+ - **File Transfer CLI Commands**: Added full support for the `FileTransfer` HEAppE API suite to manage cluster data channels and job files:
60
+ - `py4heappe FileTransfer Single/Interactive` - Initiates and creates a secure file transfer tunnel via SSH and make a one-time transfer of file(s) or folder (Single) or interactively multiple times (Interactive) (`POST /heappe/FileTransfer/RequestFileTransfer`).
61
+ - Automatically closes an active file transfer tunnel after transfer (`POST /heappe/FileTransfer/CloseFileTransfer`).
62
+ - `py4heappe FileTransfer DownloadParts` - Downloads specific parts of job files from the cluster (`POST /heappe/FileTransfer/DownloadPartsOfJobFilesFromCluster`).
63
+ - `py4heappe FileTransfer ListChanged` - Retrieves a list of all files modified during job execution (`GET /heappe/FileTransfer/ListChangedFilesForJob`).
64
+ - `py4heappe FileTransfer Download` - Downloads a specific individual file directly from the cluster (`POST /heappe/FileTransfer/DownloadFileFromCluster`).
65
+ - `py4heappe FileTransfer Stream` - Uploads files directly into a designated job execution directory (`POST /heappe/FileTransfer/UploadFilesToJobExecutionDir`).
66
+
67
+ ## 2.5.2
68
+
69
+ ### Compatible with HEAppE V6.3.X, V6.2.X, V6.2.1, V5.0.X, V4.3.X and V4.2.X
70
+
71
+ ### Added
72
+
73
+ - Enhanced `ListAvailableClusters` response with cluster-specific storage paths (`ScratchStoragePath` and `ProjectStoragePath`) for each project.
74
+ - Storage paths are now returned in a structured collection `ClusterProjectStoragePaths` within the `ProjectExt` model, including Cluster ID and Name.
75
+
76
+ ## 2.5.1
77
+
78
+ ### Compatible with HEAppE V6.2.X, V6.0.X, V5.0.X, V4.3.X and V4.2.X
79
+
80
+ ### Changed
81
+
82
+ - Dependencies relaxation.
83
+
84
+ ## 2.5.0
85
+
86
+ ### Compatible with HEAppE V6.2.X, V6.0.X, V5.0.X, V4.3.X and V4.2.X
87
+
88
+ ## 2.4.0
89
+
90
+ ### Compatible with HEAppE V6.1.X, V6.0.X, V5.0.X, V4.3.X and V4.2.X
91
+
92
+ ## V2.3.0
93
+
94
+ ### Compatible with HEAppE V6.0.X, V5.0.X, V4.3.X and V4.2.X
95
+
96
+ ## V2.2.0
97
+
98
+ ### Compatible with HEAppE V5.0.X, V4.3.X and V4.2.X
99
+
100
+ ### Changed
101
+
102
+ - Update requirements package
103
+ - Adding File Commands Groups in CLI (support Job Management)
104
+
105
+ ## V2.1.2
106
+
107
+ ### Compatible with HEAppE V5.0.X, V4.3.X and V4.2.X
108
+
109
+ ### Changed
110
+
111
+ - Requirements package (python-dotenv)
112
+
113
+ ## V2.1.1
114
+
115
+ ### Compatible with HEAppE V5.0.X, V4.3.X and V4.2.X
116
+
117
+ ### Fixed
118
+
119
+ - Deserialization response for HEAppE 4.X.X
120
+
121
+ ## V2.1.0
122
+
123
+ ### Compatible with HEAppE V5.0.X, V4.3.X and V4.2.X
124
+
125
+ ## V2.0.0
126
+
127
+ ### Compatible with HEAppE V5.0.X
128
+
129
+ ## V1.0.0
130
+
131
+ ### Compatible with HEAppE V4.2.X and V4.3.X
@@ -0,0 +1,341 @@
1
+ Metadata-Version: 2.4
2
+ Name: Py4HEAppE
3
+ Version: 3.0.0
4
+ Summary: Py4HEAppE is client library for easy access to HEAppE Middleware
5
+ Author-email: IT4Innovations <support.heappe@it4i.cz>
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/It4innovations/Py4HEAppE
8
+ Project-URL: Repository, https://github.com/It4innovations/Py4HEAppE.git
9
+ Project-URL: Issues, https://github.com/It4innovations/Py4HEAppE/issues
10
+ Keywords: LEXIS,HEAppE,Client Library
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Operating System :: OS Independent
13
+ Requires-Python: >=3.11
14
+ Description-Content-Type: text/markdown
15
+ License-File: LICENSE
16
+ Requires-Dist: paramiko>=4.0.0
17
+ Requires-Dist: scp==0.15.0
18
+ Requires-Dist: urllib3>=2.0.2
19
+ Requires-Dist: certifi>=2025.1.31
20
+ Requires-Dist: six>=1.16.0
21
+ Requires-Dist: click>=8.1.0
22
+ Requires-Dist: typer>=0.15.0
23
+ Requires-Dist: python-dotenv>=0.21.1
24
+ Requires-Dist: validators==0.35.0
25
+ Dynamic: license-file
26
+
27
+ <img align="right" width="35%" src="https://raw.githubusercontent.com/It4innovations/Py4HEAppE/refs/heads/master/docs/imgs/logo.png">
28
+
29
+ # Py4HEAppE (Python for HEAppE Middleware)
30
+ Py4HEAppE provides both a command-line interface and versioned Python wrappers for the [HEAppE](https://heappe.eu) middleware API.
31
+
32
+ You can use it in two ways:
33
+ - HEAppE CLI commands for interactive and scripting use
34
+ - Versioned Python API wrappers for direct integration into your own applications
35
+
36
+ ## Supported HEAppE Versions
37
+ | Py4HEAppE | HEAppE Version | Notes |
38
+ |:---------:|:-------------------------------------------------------| :---- |
39
+ | 3.0.X | 6.5.X, 6.4.X, 6.3.X, 6.2.X, 6.2.1, 5.0.X, 4.3.X, 4.2.X | Without Admin CLI section |
40
+ | 2.9.X | 6.4.X, 6.3.X, 6.2.X, 6.2.1, 5.0.X, 4.3.X, 4.2.X | Without Admin CLI section |
41
+ | 2.8.X | 6.4.X, 6.3.X, 6.2.X, 6.2.1, 5.0.X, 4.3.X, 4.2.X | Without Admin CLI section |
42
+ | 2.7.X | 6.4.X, 6.3.X, 6.2.X, 6.2.1, 5.0.X, 4.3.X, 4.2.X | Without Admin CLI section |
43
+ | 2.6.X | 6.3.X, 6.2.X, 6.1.X, 5.0.X, 4.3.X, 4.2.X | Without Admin CLI section |
44
+ | 2.5.X | 6.3.X, 6.2.X, 6.1.X, 5.0.X, 4.3.X, 4.2.X | Without Admin CLI section |
45
+ | 2.4.X | 6.1.X, 6.0.X, 5.0.X, 4.3.X, 4.2.X | Without Admin CLI section |
46
+ | 2.3.X | 6.0.X, 5.0.X, 4.3.X, 4.2.X | Without Admin CLI section |
47
+ | 2.2.X | 5.0.X, 4.3.X, 4.2.X | Without Admin CLI section |
48
+ | 2.1.X | 5.0.X, 4.3.X, 4.2.X | Without Admin, Job, and File CLI sections |
49
+ | 2.0.X | 5.0.X | Without Admin, Job, and File CLI sections |
50
+ | 1.X.X | 4.3.X, 4.2.X | Without Admin, Job, and File CLI sections |
51
+
52
+ ## Requirements
53
+ - Python 3.11 or newer
54
+ - Access to a deployed HEAppE instance
55
+ - HEAppE instance URL
56
+ - HEAppE accounting string for the target computational project
57
+
58
+ ## Installation
59
+ If the `py4heappe` executable is not on your `PATH`, use the full path to the installed script or add the script directory to `PATH`.
60
+
61
+ On Windows, use `py4heappe.exe` instead of `py4heappe`.
62
+
63
+ ## HEAppE CLI
64
+ The CLI is intended for users who want to work with HEAppE directly from a terminal without writing Python code.
65
+
66
+ ### Initial Setup
67
+ Before using the CLI for the first time, initialize the HEAppE instance URL and the accounting string:
68
+
69
+ ```shell
70
+ py4heappe Conf Init
71
+ ```
72
+
73
+ ### Available Command Groups
74
+ ```shell
75
+ py4heappe --help
76
+ ```
77
+
78
+ Current command groups:
79
+
80
+ - `Conf` for local CLI configuration
81
+ - `Auth` for authentication
82
+ - `CmdTemp` for command template operations
83
+ - `Info` for version and cluster information
84
+ - `Job` for job lifecycle management
85
+ - `FileTransfer` for job file upload and download operations
86
+ - `Report` for resource usage and reporting
87
+
88
+ ### Useful Help Commands
89
+
90
+ ```shell
91
+ py4heappe Auth --help
92
+ py4heappe Info --help
93
+ py4heappe Job --help
94
+ py4heappe FileTransfer --help
95
+ py4heappe Report --help
96
+ ```
97
+
98
+ ### Basic CLI Examples
99
+
100
+ Authenticate with username and password:
101
+
102
+ ```shell
103
+ py4heappe Auth UserPass
104
+ ```
105
+
106
+ Show the HEAppE API version:
107
+
108
+ ```shell
109
+ py4heappe Info Version
110
+ ```
111
+
112
+ List available clusters:
113
+
114
+ ```shell
115
+ py4heappe Info ClusterInfo
116
+ ```
117
+
118
+ List your jobs:
119
+
120
+ ```shell
121
+ py4heappe Job List
122
+ ```
123
+
124
+ ### Create a Job from a JSON Template
125
+
126
+ Py4HEAppE supports a JSON-first workflow for job creation.
127
+
128
+ Generate a minimal job specification template in the current directory:
129
+
130
+ ```shell
131
+ py4heappe Job InitJobSpecification
132
+ ```
133
+
134
+ Generate the full swagger-shaped job specification template instead:
135
+
136
+ ```shell
137
+ py4heappe Job InitJobSpecification --full
138
+ ```
139
+
140
+ Or generate it in a specific directory or target file:
141
+
142
+ ```shell
143
+ py4heappe Job InitJobSpecification --file-destination ./job_specs
144
+ py4heappe Job InitJobSpecification --file-destination ./job_specs/demo_job.json
145
+ ```
146
+
147
+ Create a job from the JSON file and override selected values from the command line:
148
+
149
+ ```shell
150
+ py4heappe Job Create --json-job-spec-file ./job_specification.json \
151
+ --name demo-job \
152
+ --cluster-id 2 \
153
+ --project-id 1 \
154
+ --task-name 0:demo-task \
155
+ --task-max-cores 0:128 \
156
+ --walltime-limit 0:1800 \
157
+ --cluster-node-type-id 0:18 \
158
+ --cmd-template-id 0:3 \
159
+ --cmd-template-parameters inputParam:testValue
160
+ ```
161
+
162
+ CLI overrides always take precedence over values loaded from `--json-job-spec-file`.
163
+
164
+ Save the final parsed job specification that will be submitted to HEAppE:
165
+
166
+ ```shell
167
+ py4heappe Job Create --json-job-spec-file ./job_specification.json \
168
+ --save-result-job-specification
169
+ ```
170
+
171
+ This writes `resultJobSpecJson.json` into the current working directory.
172
+
173
+ ### Override Format for Nested Task Data
174
+
175
+ Some `Job Create` options work on indexed task items and nested collections.
176
+
177
+ Examples:
178
+
179
+ ```shell
180
+ # Task scalar override
181
+ py4heappe Job Create --json-job-spec-file ./job_specification.json --task-name 0:main-task
182
+
183
+ # Task environment variable override
184
+ py4heappe Job Create --json-job-spec-file ./job_specification.json \
185
+ --task-environment-variable 0:0:Name:OMP_NUM_THREADS \
186
+ --task-environment-variable 0:0:Value:8
187
+
188
+ # Task template parameter override
189
+ py4heappe Job Create --json-job-spec-file ./job_specification.json \
190
+ --task-template-parameter-value 0:0:CommandParameterIdentifier:inputParam \
191
+ --task-template-parameter-value 0:0:ParameterValue:testValue
192
+ ```
193
+
194
+ ### File Transfer Examples
195
+
196
+ List files changed during job execution:
197
+
198
+ ```shell
199
+ py4heappe FileTransfer ListChanged --help
200
+ ```
201
+
202
+ Download a single file from a job directory:
203
+
204
+ ```shell
205
+ py4heappe FileTransfer Download --help
206
+ ```
207
+
208
+ Upload files directly into the job execution directory:
209
+
210
+ ```shell
211
+ py4heappe FileTransfer Stream --help
212
+ ```
213
+
214
+ ## Python API Wrapper
215
+
216
+ Py4HEAppE also ships versioned Python wrappers generated from the HEAppE API.
217
+
218
+ Use the wrapper that matches your target HEAppE version:
219
+
220
+ ```python
221
+ import py4heappe.heappe_v6.core as hp
222
+ # or:
223
+ # import py4heappe.heappe_v5.core as hp
224
+ # import py4heappe.heappe_v4.core as hp
225
+ ```
226
+
227
+ There is no single unversioned `py4heappe.core` module. Use the versioned wrapper explicitly.
228
+
229
+ ### Minimal Python Example
230
+
231
+ ```python
232
+ import json
233
+
234
+ import py4heappe.heappe_v6.core as hp
235
+
236
+ configuration = hp.Configuration()
237
+ configuration.host = "https://heappe.example.org"
238
+ api_client = hp.ApiClient(configuration)
239
+
240
+ try:
241
+ auth_api = hp.UserAndLimitationManagementApi(api_client)
242
+ management_api = hp.ManagementApi(api_client)
243
+ cluster_api = hp.ClusterInformationApi(api_client)
244
+
245
+ auth_body = {
246
+ "_preload_content": False,
247
+ "body": {
248
+ "Credentials": {
249
+ "Username": "username",
250
+ "Password": "password",
251
+ }
252
+ },
253
+ }
254
+
255
+ auth_response = auth_api.heappe_user_and_limitation_management_authenticate_user_password_post(
256
+ **auth_body
257
+ )
258
+ session_code = json.loads(auth_response.data)
259
+
260
+ version_response = management_api.heappe_management_version_information_get(
261
+ _preload_content=False,
262
+ SessionCode=session_code,
263
+ )
264
+ print(json.dumps(json.loads(version_response.data), indent=2))
265
+
266
+ cluster_response = cluster_api.heappe_cluster_information_list_available_clusters_get(
267
+ _preload_content=False,
268
+ SessionCode=session_code,
269
+ )
270
+ print(json.dumps(json.loads(cluster_response.data), indent=2))
271
+
272
+ finally:
273
+ api_client.pool.close()
274
+ api_client.pool.join()
275
+ ```
276
+
277
+ ### Create a Job Through the Python Wrapper
278
+
279
+ ```python
280
+ import json
281
+
282
+ import py4heappe.heappe_v6.core as hp
283
+
284
+ configuration = hp.Configuration()
285
+ configuration.host = "https://heappe.example.org"
286
+ api_client = hp.ApiClient(configuration)
287
+
288
+ try:
289
+ job_api = hp.JobManagementApi(api_client)
290
+
291
+ body = {
292
+ "_preload_content": False,
293
+ "body": {
294
+ "SessionCode": "your-session-code",
295
+ "JobSpecification": {
296
+ "Name": "demo-job",
297
+ "ProjectId": 1,
298
+ "ClusterId": 2,
299
+ "FileTransferMethodId": 1,
300
+ "Tasks": [
301
+ {
302
+ "Name": "demo-task",
303
+ "MinCores": 1,
304
+ "MaxCores": 16,
305
+ "WalltimeLimit": 1800,
306
+ "StandardOutputFile": "stdout",
307
+ "StandardErrorFile": "stderr",
308
+ "ProgressFile": "stdprog",
309
+ "LogFile": "stdlog",
310
+ "ClusterNodeTypeId": 18,
311
+ "CommandTemplateId": 3,
312
+ "TemplateParameterValues": [
313
+ {
314
+ "CommandParameterIdentifier": "inputParam",
315
+ "ParameterValue": "testValue",
316
+ }
317
+ ],
318
+ }
319
+ ],
320
+ },
321
+ },
322
+ }
323
+
324
+ response = job_api.heappe_job_management_create_job_post(**body)
325
+ job_id = json.loads(response.data)["Id"]
326
+ print(f"Created job: {job_id}")
327
+
328
+ finally:
329
+ api_client.pool.close()
330
+ api_client.pool.join()
331
+ ```
332
+
333
+ ## Notes
334
+
335
+ - CLI configuration is stored locally after `py4heappe Conf Init`.
336
+ - Most CLI commands require a valid session, so authenticate before running job or file-transfer operations.
337
+ - For detailed option lists, use the built-in `--help` on each command group and subcommand.
338
+
339
+ ## Acknowledgement
340
+
341
+ This work was supported by the Ministry of Education, Youth and Sports of the Czech Republic through e-INFRA CZ (ID:90254).