aidp-python-client 1.0.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (847) hide show
  1. aidp_python_client/aidataplatform_dp/__init__.py +44 -0
  2. aidp_python_client/aidataplatform_dp/async_operations_client.py +322 -0
  3. aidp_python_client/aidataplatform_dp/async_operations_client_composite_operations.py +24 -0
  4. aidp_python_client/aidataplatform_dp/audit_client.py +294 -0
  5. aidp_python_client/aidataplatform_dp/audit_client_composite_operations.py +24 -0
  6. aidp_python_client/aidataplatform_dp/bundle_client.py +711 -0
  7. aidp_python_client/aidataplatform_dp/bundle_client_composite_operations.py +24 -0
  8. aidp_python_client/aidataplatform_dp/catalog_client.py +1071 -0
  9. aidp_python_client/aidataplatform_dp/catalog_client_composite_operations.py +24 -0
  10. aidp_python_client/aidataplatform_dp/cluster_client.py +1873 -0
  11. aidp_python_client/aidataplatform_dp/cluster_client_composite_operations.py +24 -0
  12. aidp_python_client/aidataplatform_dp/credentials_client.py +620 -0
  13. aidp_python_client/aidataplatform_dp/credentials_client_composite_operations.py +24 -0
  14. aidp_python_client/aidataplatform_dp/delta_share_client.py +2210 -0
  15. aidp_python_client/aidataplatform_dp/delta_share_client_composite_operations.py +110 -0
  16. aidp_python_client/aidataplatform_dp/git_client.py +1819 -0
  17. aidp_python_client/aidataplatform_dp/git_client_composite_operations.py +24 -0
  18. aidp_python_client/aidataplatform_dp/ml_ops_client.py +4689 -0
  19. aidp_python_client/aidataplatform_dp/ml_ops_client_composite_operations.py +24 -0
  20. aidp_python_client/aidataplatform_dp/models/__init__.py +1618 -0
  21. aidp_python_client/aidataplatform_dp/models/active_cluster_resources.py +194 -0
  22. aidp_python_client/aidataplatform_dp/models/add_member_to_role_details.py +70 -0
  23. aidp_python_client/aidataplatform_dp/models/admin_setting.py +159 -0
  24. aidp_python_client/aidataplatform_dp/models/admin_setting_collection.py +70 -0
  25. aidp_python_client/aidataplatform_dp/models/admin_setting_summary.py +277 -0
  26. aidp_python_client/aidataplatform_dp/models/adw_schema.py +134 -0
  27. aidp_python_client/aidataplatform_dp/models/adw_schema_summary.py +128 -0
  28. aidp_python_client/aidataplatform_dp/models/adw_table.py +177 -0
  29. aidp_python_client/aidataplatform_dp/models/adw_table_summary.py +107 -0
  30. aidp_python_client/aidataplatform_dp/models/agent_card_capabilities_detail.py +70 -0
  31. aidp_python_client/aidataplatform_dp/models/agent_card_config_detail.py +248 -0
  32. aidp_python_client/aidataplatform_dp/models/agent_card_preview_response.py +70 -0
  33. aidp_python_client/aidataplatform_dp/models/agent_card_skill_detail.py +194 -0
  34. aidp_python_client/aidataplatform_dp/models/agent_flow.py +803 -0
  35. aidp_python_client/aidataplatform_dp/models/agent_flow_attachment.py +101 -0
  36. aidp_python_client/aidataplatform_dp/models/agent_flow_collection.py +70 -0
  37. aidp_python_client/aidataplatform_dp/models/agent_flow_compute.py +170 -0
  38. aidp_python_client/aidataplatform_dp/models/agent_flow_dependency.py +132 -0
  39. aidp_python_client/aidataplatform_dp/models/agent_flow_dependency_item.py +132 -0
  40. aidp_python_client/aidataplatform_dp/models/agent_flow_deployment.py +577 -0
  41. aidp_python_client/aidataplatform_dp/models/agent_flow_deployment_collection.py +70 -0
  42. aidp_python_client/aidataplatform_dp/models/agent_flow_deployment_summary.py +461 -0
  43. aidp_python_client/aidataplatform_dp/models/agent_flow_detachment.py +101 -0
  44. aidp_python_client/aidataplatform_dp/models/agent_flow_diagram.py +287 -0
  45. aidp_python_client/aidataplatform_dp/models/agent_flow_edge.py +411 -0
  46. aidp_python_client/aidataplatform_dp/models/agent_flow_guardrails_collection.py +70 -0
  47. aidp_python_client/aidataplatform_dp/models/agent_flow_guardrails_summary.py +335 -0
  48. aidp_python_client/aidataplatform_dp/models/agent_flow_node.py +661 -0
  49. aidp_python_client/aidataplatform_dp/models/agent_flow_permission_collection.py +70 -0
  50. aidp_python_client/aidataplatform_dp/models/agent_flow_permission_summary.py +336 -0
  51. aidp_python_client/aidataplatform_dp/models/agent_flow_session.py +467 -0
  52. aidp_python_client/aidataplatform_dp/models/agent_flow_session_collection.py +70 -0
  53. aidp_python_client/aidataplatform_dp/models/agent_flow_session_context.py +66 -0
  54. aidp_python_client/aidataplatform_dp/models/agent_flow_session_metric.py +872 -0
  55. aidp_python_client/aidataplatform_dp/models/agent_flow_session_metrics_range.py +163 -0
  56. aidp_python_client/aidataplatform_dp/models/agent_flow_session_summary.py +440 -0
  57. aidp_python_client/aidataplatform_dp/models/agent_flow_summary.py +647 -0
  58. aidp_python_client/aidataplatform_dp/models/agent_flow_validation_issue.py +399 -0
  59. aidp_python_client/aidataplatform_dp/models/agent_flow_validation_metadata.py +257 -0
  60. aidp_python_client/aidataplatform_dp/models/agent_flow_validation_options.py +101 -0
  61. aidp_python_client/aidataplatform_dp/models/agent_flow_validation_result.py +203 -0
  62. aidp_python_client/aidataplatform_dp/models/agent_flow_validation_summary.py +194 -0
  63. aidp_python_client/aidataplatform_dp/models/agent_node.py +332 -0
  64. aidp_python_client/aidataplatform_dp/models/agent_provider.py +101 -0
  65. aidp_python_client/aidataplatform_dp/models/aggregated_data_point.py +101 -0
  66. aidp_python_client/aidataplatform_dp/models/aggregated_time_series_data_point.py +101 -0
  67. aidp_python_client/aidataplatform_dp/models/ai_compute_override_item.py +194 -0
  68. aidp_python_client/aidataplatform_dp/models/ai_data_platform.py +42 -0
  69. aidp_python_client/aidataplatform_dp/models/ai_model.py +251 -0
  70. aidp_python_client/aidataplatform_dp/models/airflow_cell_config.py +101 -0
  71. aidp_python_client/aidataplatform_dp/models/alh_schema.py +134 -0
  72. aidp_python_client/aidataplatform_dp/models/alh_schema_summary.py +128 -0
  73. aidp_python_client/aidataplatform_dp/models/alh_table.py +177 -0
  74. aidp_python_client/aidataplatform_dp/models/alh_table_summary.py +107 -0
  75. aidp_python_client/aidataplatform_dp/models/allowed_tool_details.py +128 -0
  76. aidp_python_client/aidataplatform_dp/models/artifact_file_info.py +132 -0
  77. aidp_python_client/aidataplatform_dp/models/artifact_list.py +132 -0
  78. aidp_python_client/aidataplatform_dp/models/assign_agent_flow_permission_details.py +187 -0
  79. aidp_python_client/aidataplatform_dp/models/assign_catalog_permission_details.py +125 -0
  80. aidp_python_client/aidataplatform_dp/models/assign_cluster_permission_details.py +121 -0
  81. aidp_python_client/aidataplatform_dp/models/assign_create_workspace_permission_details.py +66 -0
  82. aidp_python_client/aidataplatform_dp/models/assign_credential_permission_details.py +125 -0
  83. aidp_python_client/aidataplatform_dp/models/assign_job_permission_details.py +125 -0
  84. aidp_python_client/aidataplatform_dp/models/assign_knowledge_base_permission_details.py +121 -0
  85. aidp_python_client/aidataplatform_dp/models/assign_master_catalog_permission_details.py +129 -0
  86. aidp_python_client/aidataplatform_dp/models/assign_recipient_permission_details.py +121 -0
  87. aidp_python_client/aidataplatform_dp/models/assign_role_permission_details.py +70 -0
  88. aidp_python_client/aidataplatform_dp/models/assign_schema_permission_details.py +137 -0
  89. aidp_python_client/aidataplatform_dp/models/assign_share_permission_details.py +121 -0
  90. aidp_python_client/aidataplatform_dp/models/assign_table_permission_details.py +195 -0
  91. aidp_python_client/aidataplatform_dp/models/assign_tool_permission_details.py +183 -0
  92. aidp_python_client/aidataplatform_dp/models/assign_view_permission_details.py +183 -0
  93. aidp_python_client/aidataplatform_dp/models/assign_volume_permission_details.py +121 -0
  94. aidp_python_client/aidataplatform_dp/models/assign_workspace_object_permission_details.py +156 -0
  95. aidp_python_client/aidataplatform_dp/models/assign_workspace_permission_details.py +121 -0
  96. aidp_python_client/aidataplatform_dp/models/async_operation.py +747 -0
  97. aidp_python_client/aidataplatform_dp/models/async_operation_collection.py +70 -0
  98. aidp_python_client/aidataplatform_dp/models/async_operation_summary.py +685 -0
  99. aidp_python_client/aidataplatform_dp/models/atp_schema.py +134 -0
  100. aidp_python_client/aidataplatform_dp/models/atp_schema_summary.py +128 -0
  101. aidp_python_client/aidataplatform_dp/models/atp_table.py +177 -0
  102. aidp_python_client/aidataplatform_dp/models/atp_table_summary.py +107 -0
  103. aidp_python_client/aidataplatform_dp/models/attach_compute_details.py +70 -0
  104. aidp_python_client/aidataplatform_dp/models/attach_master_catalog_to_cluster_details.py +70 -0
  105. aidp_python_client/aidataplatform_dp/models/attach_to_notebook_config.py +70 -0
  106. aidp_python_client/aidataplatform_dp/models/attach_workspace_object_to_cluster_details.py +42 -0
  107. aidp_python_client/aidataplatform_dp/models/attached_session.py +195 -0
  108. aidp_python_client/aidataplatform_dp/models/audit_log_search_result_collection.py +70 -0
  109. aidp_python_client/aidataplatform_dp/models/audit_log_search_result_summary.py +542 -0
  110. aidp_python_client/aidataplatform_dp/models/auth.py +124 -0
  111. aidp_python_client/aidataplatform_dp/models/auto_scale.py +101 -0
  112. aidp_python_client/aidataplatform_dp/models/bearer_token_auth.py +80 -0
  113. aidp_python_client/aidataplatform_dp/models/bucket_collection.py +70 -0
  114. aidp_python_client/aidataplatform_dp/models/bucket_summary.py +204 -0
  115. aidp_python_client/aidataplatform_dp/models/bundle.py +42 -0
  116. aidp_python_client/aidataplatform_dp/models/bundle_deployed_resource.py +148 -0
  117. aidp_python_client/aidataplatform_dp/models/bundle_deployment_status.py +218 -0
  118. aidp_python_client/aidataplatform_dp/models/bundle_overrides.py +101 -0
  119. aidp_python_client/aidataplatform_dp/models/bundle_overrides_with_path.py +97 -0
  120. aidp_python_client/aidataplatform_dp/models/bundle_validation_result.py +153 -0
  121. aidp_python_client/aidataplatform_dp/models/bundled_resource.py +118 -0
  122. aidp_python_client/aidataplatform_dp/models/catalog.py +548 -0
  123. aidp_python_client/aidataplatform_dp/models/catalog_collection.py +70 -0
  124. aidp_python_client/aidataplatform_dp/models/catalog_connection_details.py +101 -0
  125. aidp_python_client/aidataplatform_dp/models/catalog_migration_detail.py +211 -0
  126. aidp_python_client/aidataplatform_dp/models/catalog_permission_collection.py +70 -0
  127. aidp_python_client/aidataplatform_dp/models/catalog_permission_summary.py +207 -0
  128. aidp_python_client/aidataplatform_dp/models/catalog_summary.py +569 -0
  129. aidp_python_client/aidataplatform_dp/models/catalog_test_connection_details.py +165 -0
  130. aidp_python_client/aidataplatform_dp/models/category_config.py +184 -0
  131. aidp_python_client/aidataplatform_dp/models/chat_message.py +184 -0
  132. aidp_python_client/aidataplatform_dp/models/checkout_branch_details.py +101 -0
  133. aidp_python_client/aidataplatform_dp/models/clear_outputs_details.py +70 -0
  134. aidp_python_client/aidataplatform_dp/models/cluster.py +757 -0
  135. aidp_python_client/aidataplatform_dp/models/cluster_collection.py +70 -0
  136. aidp_python_client/aidataplatform_dp/models/cluster_event.py +116 -0
  137. aidp_python_client/aidataplatform_dp/models/cluster_execution_context_availability_event.py +80 -0
  138. aidp_python_client/aidataplatform_dp/models/cluster_instance.py +102 -0
  139. aidp_python_client/aidataplatform_dp/models/cluster_library_collection.py +70 -0
  140. aidp_python_client/aidataplatform_dp/models/cluster_library_details.py +156 -0
  141. aidp_python_client/aidataplatform_dp/models/cluster_library_summary.py +261 -0
  142. aidp_python_client/aidataplatform_dp/models/cluster_log_collection.py +70 -0
  143. aidp_python_client/aidataplatform_dp/models/cluster_logs_summary.py +128 -0
  144. aidp_python_client/aidataplatform_dp/models/cluster_patch_event.py +205 -0
  145. aidp_python_client/aidataplatform_dp/models/cluster_permission_collection.py +70 -0
  146. aidp_python_client/aidataplatform_dp/models/cluster_permission_summary.py +203 -0
  147. aidp_python_client/aidataplatform_dp/models/cluster_runtime_config.py +130 -0
  148. aidp_python_client/aidataplatform_dp/models/cluster_spec.py +124 -0
  149. aidp_python_client/aidataplatform_dp/models/cluster_state_event.py +157 -0
  150. aidp_python_client/aidataplatform_dp/models/cluster_summary.py +690 -0
  151. aidp_python_client/aidataplatform_dp/models/commit_push_details.py +194 -0
  152. aidp_python_client/aidataplatform_dp/models/compute_dependency.py +80 -0
  153. aidp_python_client/aidataplatform_dp/models/compute_override_item.py +194 -0
  154. aidp_python_client/aidataplatform_dp/models/conflict_resolve_details.py +122 -0
  155. aidp_python_client/aidataplatform_dp/models/content.py +502 -0
  156. aidp_python_client/aidataplatform_dp/models/content_moderation_category_config.py +217 -0
  157. aidp_python_client/aidataplatform_dp/models/content_moderation_config.py +149 -0
  158. aidp_python_client/aidataplatform_dp/models/content_moderation_policy.py +117 -0
  159. aidp_python_client/aidataplatform_dp/models/continuous.py +86 -0
  160. aidp_python_client/aidataplatform_dp/models/copy_agent_flow_details.py +163 -0
  161. aidp_python_client/aidataplatform_dp/models/copy_workspace_object_details.py +225 -0
  162. aidp_python_client/aidataplatform_dp/models/create_admin_setting_details.py +128 -0
  163. aidp_python_client/aidataplatform_dp/models/create_agent_flow_compute_details.py +77 -0
  164. aidp_python_client/aidataplatform_dp/models/create_agent_flow_details.py +381 -0
  165. aidp_python_client/aidataplatform_dp/models/create_agent_flow_edge_details.py +262 -0
  166. aidp_python_client/aidataplatform_dp/models/create_agent_flow_node_details.py +482 -0
  167. aidp_python_client/aidataplatform_dp/models/create_agent_flow_session_details.py +128 -0
  168. aidp_python_client/aidataplatform_dp/models/create_agent_node_details.py +266 -0
  169. aidp_python_client/aidataplatform_dp/models/create_bundle_details.py +165 -0
  170. aidp_python_client/aidataplatform_dp/models/create_catalog_details.py +275 -0
  171. aidp_python_client/aidataplatform_dp/models/create_cluster_details.py +228 -0
  172. aidp_python_client/aidataplatform_dp/models/create_connection_details.py +70 -0
  173. aidp_python_client/aidataplatform_dp/models/create_content_details.py +132 -0
  174. aidp_python_client/aidataplatform_dp/models/create_custom_tool_details.py +190 -0
  175. aidp_python_client/aidataplatform_dp/models/create_custom_tool_node_details.py +208 -0
  176. aidp_python_client/aidataplatform_dp/models/create_data_lake_credential_details.py +180 -0
  177. aidp_python_client/aidataplatform_dp/models/create_data_table_details.py +417 -0
  178. aidp_python_client/aidataplatform_dp/models/create_experiment_details.py +132 -0
  179. aidp_python_client/aidataplatform_dp/models/create_experiment_response_details.py +70 -0
  180. aidp_python_client/aidataplatform_dp/models/create_experiment_run_details.py +163 -0
  181. aidp_python_client/aidataplatform_dp/models/create_experiment_run_response_details.py +66 -0
  182. aidp_python_client/aidataplatform_dp/models/create_git_branch.py +256 -0
  183. aidp_python_client/aidataplatform_dp/models/create_git_branch_details.py +101 -0
  184. aidp_python_client/aidataplatform_dp/models/create_git_folder_details.py +225 -0
  185. aidp_python_client/aidataplatform_dp/models/create_http_tool_details.py +128 -0
  186. aidp_python_client/aidataplatform_dp/models/create_http_tool_node_details.py +208 -0
  187. aidp_python_client/aidataplatform_dp/models/create_job_details.py +426 -0
  188. aidp_python_client/aidataplatform_dp/models/create_job_run_details.py +248 -0
  189. aidp_python_client/aidataplatform_dp/models/create_knowledge_base_details.py +516 -0
  190. aidp_python_client/aidataplatform_dp/models/create_knowledge_base_job_details.py +290 -0
  191. aidp_python_client/aidataplatform_dp/models/create_knowledge_base_job_run_details.py +70 -0
  192. aidp_python_client/aidataplatform_dp/models/create_master_catalog_details.py +101 -0
  193. aidp_python_client/aidataplatform_dp/models/create_mcp_tool_node_details.py +208 -0
  194. aidp_python_client/aidataplatform_dp/models/create_model_version_details.py +256 -0
  195. aidp_python_client/aidataplatform_dp/models/create_model_version_response_details.py +66 -0
  196. aidp_python_client/aidataplatform_dp/models/create_nl_to_sql_tool_details.py +124 -0
  197. aidp_python_client/aidataplatform_dp/models/create_or_update_bundle_overrides_details.py +97 -0
  198. aidp_python_client/aidataplatform_dp/models/create_prompt_tool_details.py +128 -0
  199. aidp_python_client/aidataplatform_dp/models/create_prompt_tool_node_details.py +208 -0
  200. aidp_python_client/aidataplatform_dp/models/create_rag_tool_details.py +124 -0
  201. aidp_python_client/aidataplatform_dp/models/create_rag_tool_node_details.py +204 -0
  202. aidp_python_client/aidataplatform_dp/models/create_recipient_details.py +134 -0
  203. aidp_python_client/aidataplatform_dp/models/create_registered_model_details.py +163 -0
  204. aidp_python_client/aidataplatform_dp/models/create_registered_model_response_details.py +66 -0
  205. aidp_python_client/aidataplatform_dp/models/create_role_details.py +101 -0
  206. aidp_python_client/aidataplatform_dp/models/create_schema_details.py +163 -0
  207. aidp_python_client/aidataplatform_dp/models/create_session_details.py +252 -0
  208. aidp_python_client/aidataplatform_dp/models/create_setting_details.py +128 -0
  209. aidp_python_client/aidataplatform_dp/models/create_share_details.py +101 -0
  210. aidp_python_client/aidataplatform_dp/models/create_spark_cluster_details.py +243 -0
  211. aidp_python_client/aidataplatform_dp/models/create_sql_tool_details.py +128 -0
  212. aidp_python_client/aidataplatform_dp/models/create_sql_tool_node_details.py +208 -0
  213. aidp_python_client/aidataplatform_dp/models/create_table_details.py +358 -0
  214. aidp_python_client/aidataplatform_dp/models/create_tool_details.py +237 -0
  215. aidp_python_client/aidataplatform_dp/models/create_user_setting_details.py +128 -0
  216. aidp_python_client/aidataplatform_dp/models/create_view_details.py +256 -0
  217. aidp_python_client/aidataplatform_dp/models/create_volume_details.py +242 -0
  218. aidp_python_client/aidataplatform_dp/models/create_workspace_details.py +165 -0
  219. aidp_python_client/aidataplatform_dp/models/create_workspace_permission_collection.py +70 -0
  220. aidp_python_client/aidataplatform_dp/models/create_workspace_permission_summary.py +152 -0
  221. aidp_python_client/aidataplatform_dp/models/credential.py +420 -0
  222. aidp_python_client/aidataplatform_dp/models/credential_collection.py +70 -0
  223. aidp_python_client/aidataplatform_dp/models/credential_details.py +117 -0
  224. aidp_python_client/aidataplatform_dp/models/credential_summary.py +362 -0
  225. aidp_python_client/aidataplatform_dp/models/credential_v2.py +422 -0
  226. aidp_python_client/aidataplatform_dp/models/credential_v2_collection.py +70 -0
  227. aidp_python_client/aidataplatform_dp/models/credential_v2_name_and_secret_key.py +102 -0
  228. aidp_python_client/aidataplatform_dp/models/credential_v2_summary.py +364 -0
  229. aidp_python_client/aidataplatform_dp/models/credentials_permission_collection.py +70 -0
  230. aidp_python_client/aidataplatform_dp/models/custom_pii_rule.py +256 -0
  231. aidp_python_client/aidataplatform_dp/models/custom_result.py +163 -0
  232. aidp_python_client/aidataplatform_dp/models/custom_test_tool_result.py +76 -0
  233. aidp_python_client/aidataplatform_dp/models/custom_tool.py +246 -0
  234. aidp_python_client/aidataplatform_dp/models/custom_tool_configuration.py +283 -0
  235. aidp_python_client/aidataplatform_dp/models/custom_tool_entry.py +225 -0
  236. aidp_python_client/aidataplatform_dp/models/custom_tool_node.py +185 -0
  237. aidp_python_client/aidataplatform_dp/models/dac_endpoint_collection.py +70 -0
  238. aidp_python_client/aidataplatform_dp/models/dac_endpoint_summary.py +458 -0
  239. aidp_python_client/aidataplatform_dp/models/data_lake.py +48 -0
  240. aidp_python_client/aidataplatform_dp/models/data_lake_cluster_collection.py +70 -0
  241. aidp_python_client/aidataplatform_dp/models/data_lake_cluster_summary.py +132 -0
  242. aidp_python_client/aidataplatform_dp/models/data_lake_metadata.py +163 -0
  243. aidp_python_client/aidataplatform_dp/models/dataset.py +225 -0
  244. aidp_python_client/aidataplatform_dp/models/dataset_input.py +97 -0
  245. aidp_python_client/aidataplatform_dp/models/de_provision_user_schemas_details.py +48 -0
  246. aidp_python_client/aidataplatform_dp/models/default_cluster.py +438 -0
  247. aidp_python_client/aidataplatform_dp/models/delete_experiment_details.py +70 -0
  248. aidp_python_client/aidataplatform_dp/models/delete_experiment_response_details.py +42 -0
  249. aidp_python_client/aidataplatform_dp/models/delete_experiment_run_details.py +70 -0
  250. aidp_python_client/aidataplatform_dp/models/delete_experiment_run_response_details.py +42 -0
  251. aidp_python_client/aidataplatform_dp/models/delete_experiment_run_tag_details.py +101 -0
  252. aidp_python_client/aidataplatform_dp/models/delete_experiment_run_tag_response_details.py +42 -0
  253. aidp_python_client/aidataplatform_dp/models/delete_experiment_tag_details.py +101 -0
  254. aidp_python_client/aidataplatform_dp/models/delete_experiment_tag_response_details.py +42 -0
  255. aidp_python_client/aidataplatform_dp/models/delete_model_version_details.py +101 -0
  256. aidp_python_client/aidataplatform_dp/models/delete_model_version_response_details.py +42 -0
  257. aidp_python_client/aidataplatform_dp/models/delete_model_version_tag_details.py +132 -0
  258. aidp_python_client/aidataplatform_dp/models/delete_model_version_tag_response_details.py +42 -0
  259. aidp_python_client/aidataplatform_dp/models/delete_registered_model_details.py +70 -0
  260. aidp_python_client/aidataplatform_dp/models/delete_registered_model_response_details.py +42 -0
  261. aidp_python_client/aidataplatform_dp/models/delete_registered_model_tag_details.py +101 -0
  262. aidp_python_client/aidataplatform_dp/models/delete_registered_model_tag_response_details.py +42 -0
  263. aidp_python_client/aidataplatform_dp/models/denied_topic.py +132 -0
  264. aidp_python_client/aidataplatform_dp/models/denied_topics_policy.py +117 -0
  265. aidp_python_client/aidataplatform_dp/models/dependency.py +116 -0
  266. aidp_python_client/aidataplatform_dp/models/depends_on.py +101 -0
  267. aidp_python_client/aidataplatform_dp/models/deploy_agent_flow_details.py +269 -0
  268. aidp_python_client/aidataplatform_dp/models/deploy_bundle_details.py +70 -0
  269. aidp_python_client/aidataplatform_dp/models/detach_compute_details.py +70 -0
  270. aidp_python_client/aidataplatform_dp/models/detach_workspace_object_from_cluster_details.py +42 -0
  271. aidp_python_client/aidataplatform_dp/models/download_cluster_logs_details.py +404 -0
  272. aidp_python_client/aidataplatform_dp/models/download_file_with_par_result.py +353 -0
  273. aidp_python_client/aidataplatform_dp/models/driver_config.py +128 -0
  274. aidp_python_client/aidataplatform_dp/models/embedding_model_details.py +110 -0
  275. aidp_python_client/aidataplatform_dp/models/exadata_schema.py +134 -0
  276. aidp_python_client/aidataplatform_dp/models/exadata_schema_summary.py +128 -0
  277. aidp_python_client/aidataplatform_dp/models/exadata_table.py +177 -0
  278. aidp_python_client/aidataplatform_dp/models/exadata_table_summary.py +107 -0
  279. aidp_python_client/aidataplatform_dp/models/execute_database_user_workflows_details.py +99 -0
  280. aidp_python_client/aidataplatform_dp/models/execute_sql_command_details.py +110 -0
  281. aidp_python_client/aidataplatform_dp/models/experiment.py +256 -0
  282. aidp_python_client/aidataplatform_dp/models/experiment_collection.py +101 -0
  283. aidp_python_client/aidataplatform_dp/models/experiment_response.py +66 -0
  284. aidp_python_client/aidataplatform_dp/models/experiment_run.py +147 -0
  285. aidp_python_client/aidataplatform_dp/models/experiment_run_collection.py +101 -0
  286. aidp_python_client/aidataplatform_dp/models/experiment_run_data.py +132 -0
  287. aidp_python_client/aidataplatform_dp/models/experiment_run_info.py +381 -0
  288. aidp_python_client/aidataplatform_dp/models/experiment_run_inputs.py +101 -0
  289. aidp_python_client/aidataplatform_dp/models/experiment_run_metric.py +163 -0
  290. aidp_python_client/aidataplatform_dp/models/experiment_run_metric_history_collection.py +101 -0
  291. aidp_python_client/aidataplatform_dp/models/experiment_run_outputs.py +70 -0
  292. aidp_python_client/aidataplatform_dp/models/experiment_run_param.py +101 -0
  293. aidp_python_client/aidataplatform_dp/models/experiment_run_tag.py +101 -0
  294. aidp_python_client/aidataplatform_dp/models/experiment_run_tag_key.py +70 -0
  295. aidp_python_client/aidataplatform_dp/models/experiment_tag.py +101 -0
  296. aidp_python_client/aidataplatform_dp/models/experiment_tag_key.py +70 -0
  297. aidp_python_client/aidataplatform_dp/models/export_contents_details.py +87 -0
  298. aidp_python_client/aidataplatform_dp/models/export_task_run_output_details.py +87 -0
  299. aidp_python_client/aidataplatform_dp/models/exported_contents.py +181 -0
  300. aidp_python_client/aidataplatform_dp/models/exported_task_run_output_contents.py +181 -0
  301. aidp_python_client/aidataplatform_dp/models/expression.py +101 -0
  302. aidp_python_client/aidataplatform_dp/models/external_agent_node.py +216 -0
  303. aidp_python_client/aidataplatform_dp/models/external_catalog_migration_result.py +194 -0
  304. aidp_python_client/aidataplatform_dp/models/external_table_definition.py +215 -0
  305. aidp_python_client/aidataplatform_dp/models/feature.py +101 -0
  306. aidp_python_client/aidataplatform_dp/models/feature_status_collection.py +70 -0
  307. aidp_python_client/aidataplatform_dp/models/feature_status_result.py +66 -0
  308. aidp_python_client/aidataplatform_dp/models/feature_status_summary.py +132 -0
  309. aidp_python_client/aidataplatform_dp/models/fetch_bundle_deployment_status_details.py +70 -0
  310. aidp_python_client/aidataplatform_dp/models/fetch_mcp_objects_details.py +352 -0
  311. aidp_python_client/aidataplatform_dp/models/fetch_mcp_objects_result.py +181 -0
  312. aidp_python_client/aidataplatform_dp/models/fetch_output_details.py +70 -0
  313. aidp_python_client/aidataplatform_dp/models/field_info.py +125 -0
  314. aidp_python_client/aidataplatform_dp/models/file_dependency.py +80 -0
  315. aidp_python_client/aidataplatform_dp/models/filter_types.py +101 -0
  316. aidp_python_client/aidataplatform_dp/models/generate_temp_file_upload_target_response_details.py +132 -0
  317. aidp_python_client/aidataplatform_dp/models/get_bundle_overrides_details.py +70 -0
  318. aidp_python_client/aidataplatform_dp/models/get_experiment_run_response_details.py +66 -0
  319. aidp_python_client/aidataplatform_dp/models/get_model_version_response_details.py +66 -0
  320. aidp_python_client/aidataplatform_dp/models/get_registered_model_response_details.py +66 -0
  321. aidp_python_client/aidataplatform_dp/models/git_account_user_setting.py +210 -0
  322. aidp_python_client/aidataplatform_dp/models/git_branch.py +225 -0
  323. aidp_python_client/aidataplatform_dp/models/git_branch_collection.py +70 -0
  324. aidp_python_client/aidataplatform_dp/models/git_branch_summary.py +101 -0
  325. aidp_python_client/aidataplatform_dp/models/git_config.py +187 -0
  326. aidp_python_client/aidataplatform_dp/models/git_diff_detail.py +249 -0
  327. aidp_python_client/aidataplatform_dp/models/git_diff_summary.py +270 -0
  328. aidp_python_client/aidataplatform_dp/models/git_diff_summary_collection.py +70 -0
  329. aidp_python_client/aidataplatform_dp/models/git_folder.py +225 -0
  330. aidp_python_client/aidataplatform_dp/models/git_folder_metadatum.py +101 -0
  331. aidp_python_client/aidataplatform_dp/models/git_merge_details.py +163 -0
  332. aidp_python_client/aidataplatform_dp/models/git_operation_state.py +381 -0
  333. aidp_python_client/aidataplatform_dp/models/git_pull_details.py +215 -0
  334. aidp_python_client/aidataplatform_dp/models/git_rebase_details.py +163 -0
  335. aidp_python_client/aidataplatform_dp/models/git_repair_work_tree_details.py +101 -0
  336. aidp_python_client/aidataplatform_dp/models/git_repository.py +225 -0
  337. aidp_python_client/aidataplatform_dp/models/git_reset_details.py +184 -0
  338. aidp_python_client/aidataplatform_dp/models/git_restore_branch_details.py +132 -0
  339. aidp_python_client/aidataplatform_dp/models/grouped_search_criteria.py +252 -0
  340. aidp_python_client/aidataplatform_dp/models/guardrail_node.py +216 -0
  341. aidp_python_client/aidataplatform_dp/models/guardrails_configuration.py +163 -0
  342. aidp_python_client/aidataplatform_dp/models/history_collection.py +101 -0
  343. aidp_python_client/aidataplatform_dp/models/history_summary.py +256 -0
  344. aidp_python_client/aidataplatform_dp/models/http_result.py +256 -0
  345. aidp_python_client/aidataplatform_dp/models/http_test_tool_result.py +76 -0
  346. aidp_python_client/aidataplatform_dp/models/http_tool.py +184 -0
  347. aidp_python_client/aidataplatform_dp/models/http_tool_configuration.py +312 -0
  348. aidp_python_client/aidataplatform_dp/models/http_tool_node.py +185 -0
  349. aidp_python_client/aidataplatform_dp/models/human_in_the_loop_node.py +185 -0
  350. aidp_python_client/aidataplatform_dp/models/iam_user_credential_user_setting.py +204 -0
  351. aidp_python_client/aidataplatform_dp/models/identity_domain_collection.py +70 -0
  352. aidp_python_client/aidataplatform_dp/models/identity_domain_summary.py +188 -0
  353. aidp_python_client/aidataplatform_dp/models/identity_group_collection.py +70 -0
  354. aidp_python_client/aidataplatform_dp/models/identity_group_summary.py +101 -0
  355. aidp_python_client/aidataplatform_dp/models/identity_user_collection.py +70 -0
  356. aidp_python_client/aidataplatform_dp/models/identity_user_summary.py +132 -0
  357. aidp_python_client/aidataplatform_dp/models/if_else_task.py +185 -0
  358. aidp_python_client/aidataplatform_dp/models/infer_schema.py +70 -0
  359. aidp_python_client/aidataplatform_dp/models/infer_schema_column.py +163 -0
  360. aidp_python_client/aidataplatform_dp/models/infer_schema_properties.py +101 -0
  361. aidp_python_client/aidataplatform_dp/models/infer_schema_with_preview.py +101 -0
  362. aidp_python_client/aidataplatform_dp/models/init_script_path.py +70 -0
  363. aidp_python_client/aidataplatform_dp/models/input_tag.py +101 -0
  364. aidp_python_client/aidataplatform_dp/models/install_cluster_library_details.py +88 -0
  365. aidp_python_client/aidataplatform_dp/models/is_principal_admin.py +70 -0
  366. aidp_python_client/aidataplatform_dp/models/is_principal_aidp_admin.py +70 -0
  367. aidp_python_client/aidataplatform_dp/models/jar_task.py +381 -0
  368. aidp_python_client/aidataplatform_dp/models/job.py +652 -0
  369. aidp_python_client/aidataplatform_dp/models/job_cluster.py +128 -0
  370. aidp_python_client/aidataplatform_dp/models/job_collection.py +70 -0
  371. aidp_python_client/aidataplatform_dp/models/job_dependency.py +111 -0
  372. aidp_python_client/aidataplatform_dp/models/job_permission_collection.py +70 -0
  373. aidp_python_client/aidataplatform_dp/models/job_permission_summary.py +207 -0
  374. aidp_python_client/aidataplatform_dp/models/job_run.py +1178 -0
  375. aidp_python_client/aidataplatform_dp/models/job_run_collection.py +70 -0
  376. aidp_python_client/aidataplatform_dp/models/job_run_summary.py +454 -0
  377. aidp_python_client/aidataplatform_dp/models/job_summary.py +442 -0
  378. aidp_python_client/aidataplatform_dp/models/job_task.py +185 -0
  379. aidp_python_client/aidataplatform_dp/models/kafka_topic_schema.py +258 -0
  380. aidp_python_client/aidataplatform_dp/models/kafka_topic_schema_summary.py +190 -0
  381. aidp_python_client/aidataplatform_dp/models/kb_v_hnsw_index_details.py +200 -0
  382. aidp_python_client/aidataplatform_dp/models/kb_v_ivf_index_details.py +200 -0
  383. aidp_python_client/aidataplatform_dp/models/kernel.py +242 -0
  384. aidp_python_client/aidataplatform_dp/models/kernel_collection.py +70 -0
  385. aidp_python_client/aidataplatform_dp/models/kernel_summary.py +202 -0
  386. aidp_python_client/aidataplatform_dp/models/keyed_time_series.py +101 -0
  387. aidp_python_client/aidataplatform_dp/models/knowledge_base.py +1339 -0
  388. aidp_python_client/aidataplatform_dp/models/knowledge_base_collection.py +101 -0
  389. aidp_python_client/aidataplatform_dp/models/knowledge_base_job.py +656 -0
  390. aidp_python_client/aidataplatform_dp/models/knowledge_base_job_collection.py +101 -0
  391. aidp_python_client/aidataplatform_dp/models/knowledge_base_job_run.py +502 -0
  392. aidp_python_client/aidataplatform_dp/models/knowledge_base_job_run_collection.py +70 -0
  393. aidp_python_client/aidataplatform_dp/models/knowledge_base_job_run_data.py +211 -0
  394. aidp_python_client/aidataplatform_dp/models/knowledge_base_job_run_summary.py +502 -0
  395. aidp_python_client/aidataplatform_dp/models/knowledge_base_job_summary.py +546 -0
  396. aidp_python_client/aidataplatform_dp/models/knowledge_base_permission_collection.py +70 -0
  397. aidp_python_client/aidataplatform_dp/models/knowledge_base_permission_summary.py +274 -0
  398. aidp_python_client/aidataplatform_dp/models/knowledge_base_source_metadata_details.py +428 -0
  399. aidp_python_client/aidataplatform_dp/models/knowledge_base_summary.py +452 -0
  400. aidp_python_client/aidataplatform_dp/models/knowledge_base_vector_index_details.py +141 -0
  401. aidp_python_client/aidataplatform_dp/models/libraries.py +70 -0
  402. aidp_python_client/aidataplatform_dp/models/lifecycle_state.py +294 -0
  403. aidp_python_client/aidataplatform_dp/models/list_experiment_runs_details.py +268 -0
  404. aidp_python_client/aidataplatform_dp/models/list_experiments_details.py +231 -0
  405. aidp_python_client/aidataplatform_dp/models/list_filter.py +194 -0
  406. aidp_python_client/aidataplatform_dp/models/list_logged_models_details.py +196 -0
  407. aidp_python_client/aidataplatform_dp/models/list_permissions_with_resource_details.py +206 -0
  408. aidp_python_client/aidataplatform_dp/models/llm_config.py +132 -0
  409. aidp_python_client/aidataplatform_dp/models/log_experiment_run_batch_details.py +163 -0
  410. aidp_python_client/aidataplatform_dp/models/log_experiment_run_batch_response_details.py +42 -0
  411. aidp_python_client/aidataplatform_dp/models/log_experiment_run_inputs_details.py +101 -0
  412. aidp_python_client/aidataplatform_dp/models/log_experiment_run_inputs_response_details.py +42 -0
  413. aidp_python_client/aidataplatform_dp/models/log_experiment_run_metric_details.py +194 -0
  414. aidp_python_client/aidataplatform_dp/models/log_experiment_run_metric_response_details.py +42 -0
  415. aidp_python_client/aidataplatform_dp/models/log_experiment_run_model_details.py +101 -0
  416. aidp_python_client/aidataplatform_dp/models/log_experiment_run_model_response_details.py +42 -0
  417. aidp_python_client/aidataplatform_dp/models/log_experiment_run_param_details.py +132 -0
  418. aidp_python_client/aidataplatform_dp/models/log_experiment_run_param_response_details.py +42 -0
  419. aidp_python_client/aidataplatform_dp/models/log_group.py +132 -0
  420. aidp_python_client/aidataplatform_dp/models/logged_model.py +97 -0
  421. aidp_python_client/aidataplatform_dp/models/logged_model_collection.py +101 -0
  422. aidp_python_client/aidataplatform_dp/models/logged_model_info.py +349 -0
  423. aidp_python_client/aidataplatform_dp/models/logged_model_order.py +101 -0
  424. aidp_python_client/aidataplatform_dp/models/logged_model_tag.py +101 -0
  425. aidp_python_client/aidataplatform_dp/models/logging_config.py +99 -0
  426. aidp_python_client/aidataplatform_dp/models/manage_agent_flow_permission_details.py +93 -0
  427. aidp_python_client/aidataplatform_dp/models/manage_audit_logs_details.py +118 -0
  428. aidp_python_client/aidataplatform_dp/models/manage_catalog_permission_details.py +93 -0
  429. aidp_python_client/aidataplatform_dp/models/manage_cluster_permission_details.py +93 -0
  430. aidp_python_client/aidataplatform_dp/models/manage_create_workspace_permission_details.py +93 -0
  431. aidp_python_client/aidataplatform_dp/models/manage_credential_permission_details.py +93 -0
  432. aidp_python_client/aidataplatform_dp/models/manage_job_permission_details.py +93 -0
  433. aidp_python_client/aidataplatform_dp/models/manage_knowledge_base_permission_details.py +93 -0
  434. aidp_python_client/aidataplatform_dp/models/manage_master_catalog_permission_details.py +93 -0
  435. aidp_python_client/aidataplatform_dp/models/manage_recipient_permission_details.py +93 -0
  436. aidp_python_client/aidataplatform_dp/models/manage_role_permission_details.py +93 -0
  437. aidp_python_client/aidataplatform_dp/models/manage_schema_permission_details.py +93 -0
  438. aidp_python_client/aidataplatform_dp/models/manage_share_access_details.py +118 -0
  439. aidp_python_client/aidataplatform_dp/models/manage_share_data_asset_details.py +263 -0
  440. aidp_python_client/aidataplatform_dp/models/manage_share_permission_details.py +93 -0
  441. aidp_python_client/aidataplatform_dp/models/manage_table_permission_details.py +93 -0
  442. aidp_python_client/aidataplatform_dp/models/manage_tool_permission_details.py +93 -0
  443. aidp_python_client/aidataplatform_dp/models/manage_view_permission_details.py +93 -0
  444. aidp_python_client/aidataplatform_dp/models/manage_volume_permission_details.py +93 -0
  445. aidp_python_client/aidataplatform_dp/models/manage_workspace_object_permission_details.py +93 -0
  446. aidp_python_client/aidataplatform_dp/models/manage_workspace_permission_details.py +93 -0
  447. aidp_python_client/aidataplatform_dp/models/managed_table_definition.py +110 -0
  448. aidp_python_client/aidataplatform_dp/models/master_catalog.py +357 -0
  449. aidp_python_client/aidataplatform_dp/models/master_catalog_collection.py +70 -0
  450. aidp_python_client/aidataplatform_dp/models/master_catalog_permission_collection.py +70 -0
  451. aidp_python_client/aidataplatform_dp/models/master_catalog_permission_summary.py +216 -0
  452. aidp_python_client/aidataplatform_dp/models/master_catalog_summary.py +351 -0
  453. aidp_python_client/aidataplatform_dp/models/mcp_object.py +178 -0
  454. aidp_python_client/aidataplatform_dp/models/mcp_prompt_object.py +94 -0
  455. aidp_python_client/aidataplatform_dp/models/mcp_resource_object.py +94 -0
  456. aidp_python_client/aidataplatform_dp/models/mcp_result.py +70 -0
  457. aidp_python_client/aidataplatform_dp/models/mcp_test_tool_result.py +76 -0
  458. aidp_python_client/aidataplatform_dp/models/mcp_tool.py +184 -0
  459. aidp_python_client/aidataplatform_dp/models/mcp_tool_configuration.py +159 -0
  460. aidp_python_client/aidataplatform_dp/models/mcp_tool_node.py +185 -0
  461. aidp_python_client/aidataplatform_dp/models/mcp_tool_object.py +94 -0
  462. aidp_python_client/aidataplatform_dp/models/memory_configuration.py +128 -0
  463. aidp_python_client/aidataplatform_dp/models/memory_limit_configuration.py +110 -0
  464. aidp_python_client/aidataplatform_dp/models/memory_limit_configuration_details.py +101 -0
  465. aidp_python_client/aidataplatform_dp/models/metrics_summary.py +287 -0
  466. aidp_python_client/aidataplatform_dp/models/mkdir_details.py +101 -0
  467. aidp_python_client/aidataplatform_dp/models/model.py +470 -0
  468. aidp_python_client/aidataplatform_dp/models/model_input.py +70 -0
  469. aidp_python_client/aidataplatform_dp/models/model_metric.py +163 -0
  470. aidp_python_client/aidataplatform_dp/models/model_output.py +101 -0
  471. aidp_python_client/aidataplatform_dp/models/model_param.py +101 -0
  472. aidp_python_client/aidataplatform_dp/models/model_parameter.py +97 -0
  473. aidp_python_client/aidataplatform_dp/models/model_parameter_detail.py +132 -0
  474. aidp_python_client/aidataplatform_dp/models/model_parameter_response.py +363 -0
  475. aidp_python_client/aidataplatform_dp/models/model_summary.py +238 -0
  476. aidp_python_client/aidataplatform_dp/models/model_version.py +613 -0
  477. aidp_python_client/aidataplatform_dp/models/model_version_collection.py +101 -0
  478. aidp_python_client/aidataplatform_dp/models/model_version_deployment_job_state.py +258 -0
  479. aidp_python_client/aidataplatform_dp/models/model_version_tag.py +101 -0
  480. aidp_python_client/aidataplatform_dp/models/model_version_tag_key.py +70 -0
  481. aidp_python_client/aidataplatform_dp/models/models_collection.py +70 -0
  482. aidp_python_client/aidataplatform_dp/models/modify_content_details.py +70 -0
  483. aidp_python_client/aidataplatform_dp/models/move_workspace_object_details.py +101 -0
  484. aidp_python_client/aidataplatform_dp/models/nested_agent_flow_node.py +243 -0
  485. aidp_python_client/aidataplatform_dp/models/new_cluster_configuration.py +190 -0
  486. aidp_python_client/aidataplatform_dp/models/nl_to_sql_tool.py +180 -0
  487. aidp_python_client/aidataplatform_dp/models/nl_to_sql_tool_configuration.py +225 -0
  488. aidp_python_client/aidataplatform_dp/models/nl_to_sql_tool_input_schema.py +70 -0
  489. aidp_python_client/aidataplatform_dp/models/no_auth.py +49 -0
  490. aidp_python_client/aidataplatform_dp/models/node_input.py +246 -0
  491. aidp_python_client/aidataplatform_dp/models/node_io.py +158 -0
  492. aidp_python_client/aidataplatform_dp/models/node_io_color.py +149 -0
  493. aidp_python_client/aidataplatform_dp/models/node_output.py +215 -0
  494. aidp_python_client/aidataplatform_dp/models/notebook_task.py +319 -0
  495. aidp_python_client/aidataplatform_dp/models/notify_cluster_event_handler_details.py +253 -0
  496. aidp_python_client/aidataplatform_dp/models/o_auth.py +173 -0
  497. aidp_python_client/aidataplatform_dp/models/o_auth_admin_setting.py +111 -0
  498. aidp_python_client/aidataplatform_dp/models/o_auth_configuration.py +132 -0
  499. aidp_python_client/aidataplatform_dp/models/oac_schema.py +134 -0
  500. aidp_python_client/aidataplatform_dp/models/oac_schema_summary.py +128 -0
  501. aidp_python_client/aidataplatform_dp/models/oac_table.py +177 -0
  502. aidp_python_client/aidataplatform_dp/models/oac_table_summary.py +107 -0
  503. aidp_python_client/aidataplatform_dp/models/object_recent_search_summary.py +70 -0
  504. aidp_python_client/aidataplatform_dp/models/object_search_summary.py +516 -0
  505. aidp_python_client/aidataplatform_dp/models/object_suggest_summary.py +287 -0
  506. aidp_python_client/aidataplatform_dp/models/oci_logging.py +80 -0
  507. aidp_python_client/aidataplatform_dp/models/oci_resource_principal_auth.py +49 -0
  508. aidp_python_client/aidataplatform_dp/models/oracle_schema.py +134 -0
  509. aidp_python_client/aidataplatform_dp/models/oracle_schema_summary.py +128 -0
  510. aidp_python_client/aidataplatform_dp/models/oracle_table.py +177 -0
  511. aidp_python_client/aidataplatform_dp/models/oracle_table_summary.py +107 -0
  512. aidp_python_client/aidataplatform_dp/models/output_parameter.py +101 -0
  513. aidp_python_client/aidataplatform_dp/models/par_details.py +195 -0
  514. aidp_python_client/aidataplatform_dp/models/parameter.py +101 -0
  515. aidp_python_client/aidataplatform_dp/models/patch_cluster_library_details.py +70 -0
  516. aidp_python_client/aidataplatform_dp/models/patch_session_details.py +252 -0
  517. aidp_python_client/aidataplatform_dp/models/perform_infer_schema_details.py +204 -0
  518. aidp_python_client/aidataplatform_dp/models/permission_assignees.py +122 -0
  519. aidp_python_client/aidataplatform_dp/models/permission_summary.py +274 -0
  520. aidp_python_client/aidataplatform_dp/models/permission_with_resource_details.py +288 -0
  521. aidp_python_client/aidataplatform_dp/models/pii_category.py +209 -0
  522. aidp_python_client/aidataplatform_dp/models/pii_detection_policy.py +148 -0
  523. aidp_python_client/aidataplatform_dp/models/playground_cache.py +70 -0
  524. aidp_python_client/aidataplatform_dp/models/point.py +101 -0
  525. aidp_python_client/aidataplatform_dp/models/preview_agent_flow_agent_card_details.py +66 -0
  526. aidp_python_client/aidataplatform_dp/models/principals_with_workspace_access_collection.py +70 -0
  527. aidp_python_client/aidataplatform_dp/models/principals_with_workspace_access_summary.py +153 -0
  528. aidp_python_client/aidataplatform_dp/models/prompt_attacks_prevention_policy.py +86 -0
  529. aidp_python_client/aidataplatform_dp/models/prompt_result.py +101 -0
  530. aidp_python_client/aidataplatform_dp/models/prompt_test_tool_result.py +76 -0
  531. aidp_python_client/aidataplatform_dp/models/prompt_tool.py +184 -0
  532. aidp_python_client/aidataplatform_dp/models/prompt_tool_configuration.py +128 -0
  533. aidp_python_client/aidataplatform_dp/models/prompt_tool_node.py +185 -0
  534. aidp_python_client/aidataplatform_dp/models/provision_user_schema_details.py +110 -0
  535. aidp_python_client/aidataplatform_dp/models/purge_bundle_details.py +70 -0
  536. aidp_python_client/aidataplatform_dp/models/python_task.py +319 -0
  537. aidp_python_client/aidataplatform_dp/models/queue.py +70 -0
  538. aidp_python_client/aidataplatform_dp/models/rag_result.py +101 -0
  539. aidp_python_client/aidataplatform_dp/models/rag_test_tool_result.py +76 -0
  540. aidp_python_client/aidataplatform_dp/models/rag_tool.py +180 -0
  541. aidp_python_client/aidataplatform_dp/models/rag_tool_configuration.py +221 -0
  542. aidp_python_client/aidataplatform_dp/models/rag_tool_input_schema.py +70 -0
  543. aidp_python_client/aidataplatform_dp/models/rag_tool_node.py +181 -0
  544. aidp_python_client/aidataplatform_dp/models/range_filter.py +201 -0
  545. aidp_python_client/aidataplatform_dp/models/recent_resource_item.py +283 -0
  546. aidp_python_client/aidataplatform_dp/models/recent_search_results_collection.py +101 -0
  547. aidp_python_client/aidataplatform_dp/models/recent_searches_criteria.py +70 -0
  548. aidp_python_client/aidataplatform_dp/models/recently_accessed.py +101 -0
  549. aidp_python_client/aidataplatform_dp/models/recently_accessed_resource.py +101 -0
  550. aidp_python_client/aidataplatform_dp/models/recipient.py +402 -0
  551. aidp_python_client/aidataplatform_dp/models/recipient_collection.py +70 -0
  552. aidp_python_client/aidataplatform_dp/models/recipient_permission_collection.py +70 -0
  553. aidp_python_client/aidataplatform_dp/models/recipient_permission_summary.py +203 -0
  554. aidp_python_client/aidataplatform_dp/models/recipient_summary.py +369 -0
  555. aidp_python_client/aidataplatform_dp/models/registered_model.py +346 -0
  556. aidp_python_client/aidataplatform_dp/models/registered_model_alias.py +101 -0
  557. aidp_python_client/aidataplatform_dp/models/registered_model_collection.py +101 -0
  558. aidp_python_client/aidataplatform_dp/models/registered_model_tag.py +101 -0
  559. aidp_python_client/aidataplatform_dp/models/registered_model_tag_key.py +70 -0
  560. aidp_python_client/aidataplatform_dp/models/remove_member_from_role_details.py +70 -0
  561. aidp_python_client/aidataplatform_dp/models/rename_registered_model_details.py +101 -0
  562. aidp_python_client/aidataplatform_dp/models/rename_registered_model_response_details.py +66 -0
  563. aidp_python_client/aidataplatform_dp/models/rename_table_field_details.py +101 -0
  564. aidp_python_client/aidataplatform_dp/models/rename_workspace_object_details.py +101 -0
  565. aidp_python_client/aidataplatform_dp/models/repair_history.py +361 -0
  566. aidp_python_client/aidataplatform_dp/models/repair_job_run_details.py +101 -0
  567. aidp_python_client/aidataplatform_dp/models/reset_git_folder_state_details.py +157 -0
  568. aidp_python_client/aidataplatform_dp/models/restart_cluster_details.py +42 -0
  569. aidp_python_client/aidataplatform_dp/models/restore_experiment_details.py +70 -0
  570. aidp_python_client/aidataplatform_dp/models/restore_experiment_response_details.py +42 -0
  571. aidp_python_client/aidataplatform_dp/models/restore_experiment_run_details.py +70 -0
  572. aidp_python_client/aidataplatform_dp/models/restore_experiment_run_response_details.py +42 -0
  573. aidp_python_client/aidataplatform_dp/models/retrieved_chunk.py +132 -0
  574. aidp_python_client/aidataplatform_dp/models/revoke_agent_flow_permission_details.py +187 -0
  575. aidp_python_client/aidataplatform_dp/models/revoke_catalog_permission_details.py +125 -0
  576. aidp_python_client/aidataplatform_dp/models/revoke_cluster_permission_details.py +121 -0
  577. aidp_python_client/aidataplatform_dp/models/revoke_create_workspace_permission_details.py +66 -0
  578. aidp_python_client/aidataplatform_dp/models/revoke_credential_permission_details.py +125 -0
  579. aidp_python_client/aidataplatform_dp/models/revoke_job_permission_details.py +125 -0
  580. aidp_python_client/aidataplatform_dp/models/revoke_knowledge_base_permission_details.py +121 -0
  581. aidp_python_client/aidataplatform_dp/models/revoke_master_catalog_permission_details.py +129 -0
  582. aidp_python_client/aidataplatform_dp/models/revoke_recipient_permission_details.py +121 -0
  583. aidp_python_client/aidataplatform_dp/models/revoke_role_permission_details.py +70 -0
  584. aidp_python_client/aidataplatform_dp/models/revoke_schema_permission_details.py +137 -0
  585. aidp_python_client/aidataplatform_dp/models/revoke_share_permission_details.py +121 -0
  586. aidp_python_client/aidataplatform_dp/models/revoke_table_permission_details.py +195 -0
  587. aidp_python_client/aidataplatform_dp/models/revoke_tool_permission_details.py +183 -0
  588. aidp_python_client/aidataplatform_dp/models/revoke_view_permission_details.py +183 -0
  589. aidp_python_client/aidataplatform_dp/models/revoke_volume_permission_details.py +121 -0
  590. aidp_python_client/aidataplatform_dp/models/revoke_workspace_object_permission_details.py +156 -0
  591. aidp_python_client/aidataplatform_dp/models/revoke_workspace_permission_details.py +121 -0
  592. aidp_python_client/aidataplatform_dp/models/role.py +439 -0
  593. aidp_python_client/aidataplatform_dp/models/role_assignee.py +152 -0
  594. aidp_python_client/aidataplatform_dp/models/role_collection.py +70 -0
  595. aidp_python_client/aidataplatform_dp/models/role_permission_collection.py +70 -0
  596. aidp_python_client/aidataplatform_dp/models/role_permission_summary.py +128 -0
  597. aidp_python_client/aidataplatform_dp/models/role_summary.py +396 -0
  598. aidp_python_client/aidataplatform_dp/models/run_output_data.py +313 -0
  599. aidp_python_client/aidataplatform_dp/models/safety_policy.py +337 -0
  600. aidp_python_client/aidataplatform_dp/models/scan.py +101 -0
  601. aidp_python_client/aidataplatform_dp/models/schedule.py +148 -0
  602. aidp_python_client/aidataplatform_dp/models/schema.py +551 -0
  603. aidp_python_client/aidataplatform_dp/models/schema_collection.py +70 -0
  604. aidp_python_client/aidataplatform_dp/models/schema_permission_collection.py +70 -0
  605. aidp_python_client/aidataplatform_dp/models/schema_permission_summary.py +285 -0
  606. aidp_python_client/aidataplatform_dp/models/schema_summary.py +536 -0
  607. aidp_python_client/aidataplatform_dp/models/search_audit_logs_details.py +626 -0
  608. aidp_python_client/aidataplatform_dp/models/search_cluster_logs_details.py +437 -0
  609. aidp_python_client/aidataplatform_dp/models/search_criteria.py +221 -0
  610. aidp_python_client/aidataplatform_dp/models/search_object_type.py +101 -0
  611. aidp_python_client/aidataplatform_dp/models/search_result.py +70 -0
  612. aidp_python_client/aidataplatform_dp/models/search_result_summary.py +101 -0
  613. aidp_python_client/aidataplatform_dp/models/search_results_collection.py +163 -0
  614. aidp_python_client/aidataplatform_dp/models/search_results_group_by_collection.py +163 -0
  615. aidp_python_client/aidataplatform_dp/models/secret_pair.py +101 -0
  616. aidp_python_client/aidataplatform_dp/models/secret_token_credential_details.py +81 -0
  617. aidp_python_client/aidataplatform_dp/models/service_account_credential_details.py +236 -0
  618. aidp_python_client/aidataplatform_dp/models/session.py +324 -0
  619. aidp_python_client/aidataplatform_dp/models/session_chat_history_collection.py +70 -0
  620. aidp_python_client/aidataplatform_dp/models/session_chat_history_summary.py +287 -0
  621. aidp_python_client/aidataplatform_dp/models/session_collection.py +70 -0
  622. aidp_python_client/aidataplatform_dp/models/session_configuration.py +97 -0
  623. aidp_python_client/aidataplatform_dp/models/session_retention_configuration.py +132 -0
  624. aidp_python_client/aidataplatform_dp/models/session_summary.py +283 -0
  625. aidp_python_client/aidataplatform_dp/models/session_variable.py +101 -0
  626. aidp_python_client/aidataplatform_dp/models/session_variable_details.py +225 -0
  627. aidp_python_client/aidataplatform_dp/models/set_experiment_run_tag_details.py +132 -0
  628. aidp_python_client/aidataplatform_dp/models/set_experiment_run_tag_response_details.py +42 -0
  629. aidp_python_client/aidataplatform_dp/models/set_experiment_tag_details.py +132 -0
  630. aidp_python_client/aidataplatform_dp/models/set_experiment_tag_response_details.py +42 -0
  631. aidp_python_client/aidataplatform_dp/models/set_model_version_tag_details.py +163 -0
  632. aidp_python_client/aidataplatform_dp/models/set_model_version_tag_response_details.py +42 -0
  633. aidp_python_client/aidataplatform_dp/models/set_registered_model_tag_details.py +132 -0
  634. aidp_python_client/aidataplatform_dp/models/set_registered_model_tag_response_details.py +42 -0
  635. aidp_python_client/aidataplatform_dp/models/setting.py +159 -0
  636. aidp_python_client/aidataplatform_dp/models/setting_data.py +115 -0
  637. aidp_python_client/aidataplatform_dp/models/shape_config.py +132 -0
  638. aidp_python_client/aidataplatform_dp/models/share.py +396 -0
  639. aidp_python_client/aidataplatform_dp/models/share_collection.py +70 -0
  640. aidp_python_client/aidataplatform_dp/models/share_data_asset_collection.py +70 -0
  641. aidp_python_client/aidataplatform_dp/models/share_data_asset_summary.py +311 -0
  642. aidp_python_client/aidataplatform_dp/models/share_permission_collection.py +70 -0
  643. aidp_python_client/aidataplatform_dp/models/share_permission_summary.py +203 -0
  644. aidp_python_client/aidataplatform_dp/models/share_summary.py +365 -0
  645. aidp_python_client/aidataplatform_dp/models/sort_details.py +143 -0
  646. aidp_python_client/aidataplatform_dp/models/span_details.py +345 -0
  647. aidp_python_client/aidataplatform_dp/models/span_status.py +101 -0
  648. aidp_python_client/aidataplatform_dp/models/spark_cluster.py +497 -0
  649. aidp_python_client/aidataplatform_dp/models/spark_runtime_config.py +155 -0
  650. aidp_python_client/aidataplatform_dp/models/sql_result.py +70 -0
  651. aidp_python_client/aidataplatform_dp/models/sql_test_tool_result.py +76 -0
  652. aidp_python_client/aidataplatform_dp/models/sql_tool.py +184 -0
  653. aidp_python_client/aidataplatform_dp/models/sql_tool_configuration.py +194 -0
  654. aidp_python_client/aidataplatform_dp/models/sql_tool_node.py +185 -0
  655. aidp_python_client/aidataplatform_dp/models/standard_schema.py +134 -0
  656. aidp_python_client/aidataplatform_dp/models/standard_schema_summary.py +128 -0
  657. aidp_python_client/aidataplatform_dp/models/standard_table.py +177 -0
  658. aidp_python_client/aidataplatform_dp/models/standard_table_summary.py +107 -0
  659. aidp_python_client/aidataplatform_dp/models/start_cluster_details.py +42 -0
  660. aidp_python_client/aidataplatform_dp/models/start_node.py +185 -0
  661. aidp_python_client/aidataplatform_dp/models/state.py +231 -0
  662. aidp_python_client/aidataplatform_dp/models/stop_agent_flow_session_details.py +42 -0
  663. aidp_python_client/aidataplatform_dp/models/stop_cluster_details.py +42 -0
  664. aidp_python_client/aidataplatform_dp/models/subscription_details.py +101 -0
  665. aidp_python_client/aidataplatform_dp/models/suggest_criteria.py +101 -0
  666. aidp_python_client/aidataplatform_dp/models/suggest_results_collection.py +132 -0
  667. aidp_python_client/aidataplatform_dp/models/summarize_metrics_data_details.py +308 -0
  668. aidp_python_client/aidataplatform_dp/models/summarize_metrics_response.py +70 -0
  669. aidp_python_client/aidataplatform_dp/models/supervisor_agent_node.py +363 -0
  670. aidp_python_client/aidataplatform_dp/models/sync_bundle_details.py +70 -0
  671. aidp_python_client/aidataplatform_dp/models/table.py +737 -0
  672. aidp_python_client/aidataplatform_dp/models/table_collection.py +70 -0
  673. aidp_python_client/aidataplatform_dp/models/table_field_details.py +194 -0
  674. aidp_python_client/aidataplatform_dp/models/table_permission_collection.py +70 -0
  675. aidp_python_client/aidataplatform_dp/models/table_permission_summary.py +347 -0
  676. aidp_python_client/aidataplatform_dp/models/table_property.py +101 -0
  677. aidp_python_client/aidataplatform_dp/models/table_summary.py +435 -0
  678. aidp_python_client/aidataplatform_dp/models/task.py +357 -0
  679. aidp_python_client/aidataplatform_dp/models/task_execution_result.py +221 -0
  680. aidp_python_client/aidataplatform_dp/models/task_run.py +771 -0
  681. aidp_python_client/aidataplatform_dp/models/task_run_collection.py +70 -0
  682. aidp_python_client/aidataplatform_dp/models/task_run_output.py +288 -0
  683. aidp_python_client/aidataplatform_dp/models/task_run_retry.py +345 -0
  684. aidp_python_client/aidataplatform_dp/models/task_run_summary.py +407 -0
  685. aidp_python_client/aidataplatform_dp/models/test_custom_tool_details.py +141 -0
  686. aidp_python_client/aidataplatform_dp/models/test_http_tool_details.py +110 -0
  687. aidp_python_client/aidataplatform_dp/models/test_mcp_connection.py +49 -0
  688. aidp_python_client/aidataplatform_dp/models/test_mcp_external_tool.py +107 -0
  689. aidp_python_client/aidataplatform_dp/models/test_mcp_operation.py +108 -0
  690. aidp_python_client/aidataplatform_dp/models/test_mcp_tool_details.py +168 -0
  691. aidp_python_client/aidataplatform_dp/models/test_prompt_tool_details.py +110 -0
  692. aidp_python_client/aidataplatform_dp/models/test_rag_tool_details.py +114 -0
  693. aidp_python_client/aidataplatform_dp/models/test_sql_tool_details.py +110 -0
  694. aidp_python_client/aidataplatform_dp/models/test_tool_details.py +171 -0
  695. aidp_python_client/aidataplatform_dp/models/test_tool_param_values.py +70 -0
  696. aidp_python_client/aidataplatform_dp/models/test_tool_result.py +140 -0
  697. aidp_python_client/aidataplatform_dp/models/time_created.py +42 -0
  698. aidp_python_client/aidataplatform_dp/models/time_updated.py +42 -0
  699. aidp_python_client/aidataplatform_dp/models/tool.py +489 -0
  700. aidp_python_client/aidataplatform_dp/models/tool_collection.py +70 -0
  701. aidp_python_client/aidataplatform_dp/models/tool_permission_collection.py +70 -0
  702. aidp_python_client/aidataplatform_dp/models/tool_permission_summary.py +332 -0
  703. aidp_python_client/aidataplatform_dp/models/tool_summary.py +355 -0
  704. aidp_python_client/aidataplatform_dp/models/trace_details.py +225 -0
  705. aidp_python_client/aidataplatform_dp/models/trace_event.py +132 -0
  706. aidp_python_client/aidataplatform_dp/models/transition_model_version_stage_details.py +163 -0
  707. aidp_python_client/aidataplatform_dp/models/transition_model_version_stage_response_details.py +66 -0
  708. aidp_python_client/aidataplatform_dp/models/txt_file_definition.py +101 -0
  709. aidp_python_client/aidataplatform_dp/models/uninstall_cluster_library_details.py +88 -0
  710. aidp_python_client/aidataplatform_dp/models/update_admin_setting_details.py +128 -0
  711. aidp_python_client/aidataplatform_dp/models/update_agent_flow_compute_details.py +77 -0
  712. aidp_python_client/aidataplatform_dp/models/update_agent_flow_deployment_details.py +242 -0
  713. aidp_python_client/aidataplatform_dp/models/update_agent_flow_deployment_metadata_details.py +97 -0
  714. aidp_python_client/aidataplatform_dp/models/update_agent_flow_details.py +395 -0
  715. aidp_python_client/aidataplatform_dp/models/update_agent_flow_node_details.py +451 -0
  716. aidp_python_client/aidataplatform_dp/models/update_agent_flow_session_details.py +159 -0
  717. aidp_python_client/aidataplatform_dp/models/update_agent_flow_session_playground_cache_details.py +70 -0
  718. aidp_python_client/aidataplatform_dp/models/update_agent_node_details.py +259 -0
  719. aidp_python_client/aidataplatform_dp/models/update_catalog_details.py +159 -0
  720. aidp_python_client/aidataplatform_dp/models/update_cluster_async_operation_status_details.py +293 -0
  721. aidp_python_client/aidataplatform_dp/models/update_cluster_details.py +228 -0
  722. aidp_python_client/aidataplatform_dp/models/update_connection_details.py +70 -0
  723. aidp_python_client/aidataplatform_dp/models/update_content_details.py +252 -0
  724. aidp_python_client/aidataplatform_dp/models/update_custom_tool_details.py +190 -0
  725. aidp_python_client/aidataplatform_dp/models/update_custom_tool_node_details.py +201 -0
  726. aidp_python_client/aidataplatform_dp/models/update_data_lake_credential_details.py +180 -0
  727. aidp_python_client/aidataplatform_dp/models/update_dir_details.py +70 -0
  728. aidp_python_client/aidataplatform_dp/models/update_experiment_details.py +101 -0
  729. aidp_python_client/aidataplatform_dp/models/update_experiment_response_details.py +42 -0
  730. aidp_python_client/aidataplatform_dp/models/update_experiment_run_details.py +196 -0
  731. aidp_python_client/aidataplatform_dp/models/update_experiment_run_response_details.py +66 -0
  732. aidp_python_client/aidataplatform_dp/models/update_experiment_run_tags_details.py +132 -0
  733. aidp_python_client/aidataplatform_dp/models/update_experiment_run_tags_response_details.py +42 -0
  734. aidp_python_client/aidataplatform_dp/models/update_experiment_tags_details.py +132 -0
  735. aidp_python_client/aidataplatform_dp/models/update_experiment_tags_response_details.py +42 -0
  736. aidp_python_client/aidataplatform_dp/models/update_file_metadata_details.py +126 -0
  737. aidp_python_client/aidataplatform_dp/models/update_git_repository_details.py +132 -0
  738. aidp_python_client/aidataplatform_dp/models/update_http_tool_details.py +128 -0
  739. aidp_python_client/aidataplatform_dp/models/update_http_tool_node_details.py +143 -0
  740. aidp_python_client/aidataplatform_dp/models/update_job_details.py +426 -0
  741. aidp_python_client/aidataplatform_dp/models/update_knowledge_base_add_source_details.py +366 -0
  742. aidp_python_client/aidataplatform_dp/models/update_knowledge_base_delete_source_details.py +118 -0
  743. aidp_python_client/aidataplatform_dp/models/update_knowledge_base_details.py +176 -0
  744. aidp_python_client/aidataplatform_dp/models/update_knowledge_base_metadata_update_details.py +101 -0
  745. aidp_python_client/aidataplatform_dp/models/update_knowledge_base_source_update_details.py +70 -0
  746. aidp_python_client/aidataplatform_dp/models/update_knowledge_base_source_update_details_item.py +141 -0
  747. aidp_python_client/aidataplatform_dp/models/update_master_catalog_details.py +70 -0
  748. aidp_python_client/aidataplatform_dp/models/update_mcp_tool_node_details.py +143 -0
  749. aidp_python_client/aidataplatform_dp/models/update_model_version_details.py +132 -0
  750. aidp_python_client/aidataplatform_dp/models/update_model_version_response_details.py +66 -0
  751. aidp_python_client/aidataplatform_dp/models/update_model_version_tags_details.py +163 -0
  752. aidp_python_client/aidataplatform_dp/models/update_model_version_tags_response_details.py +42 -0
  753. aidp_python_client/aidataplatform_dp/models/update_nl_to_sql_tool_details.py +124 -0
  754. aidp_python_client/aidataplatform_dp/models/update_prompt_tool_details.py +128 -0
  755. aidp_python_client/aidataplatform_dp/models/update_prompt_tool_node_details.py +143 -0
  756. aidp_python_client/aidataplatform_dp/models/update_rag_tool_details.py +124 -0
  757. aidp_python_client/aidataplatform_dp/models/update_rag_tool_node_details.py +139 -0
  758. aidp_python_client/aidataplatform_dp/models/update_recipient_details.py +134 -0
  759. aidp_python_client/aidataplatform_dp/models/update_registered_model_details.py +132 -0
  760. aidp_python_client/aidataplatform_dp/models/update_registered_model_response_details.py +66 -0
  761. aidp_python_client/aidataplatform_dp/models/update_registered_model_tags_details.py +132 -0
  762. aidp_python_client/aidataplatform_dp/models/update_registered_model_tags_response_details.py +42 -0
  763. aidp_python_client/aidataplatform_dp/models/update_role_details.py +101 -0
  764. aidp_python_client/aidataplatform_dp/models/update_schema_details.py +132 -0
  765. aidp_python_client/aidataplatform_dp/models/update_setting_details.py +128 -0
  766. aidp_python_client/aidataplatform_dp/models/update_share_details.py +101 -0
  767. aidp_python_client/aidataplatform_dp/models/update_spark_cluster_details.py +216 -0
  768. aidp_python_client/aidataplatform_dp/models/update_sql_tool_details.py +128 -0
  769. aidp_python_client/aidataplatform_dp/models/update_sql_tool_node_details.py +143 -0
  770. aidp_python_client/aidataplatform_dp/models/update_table_details.py +287 -0
  771. aidp_python_client/aidataplatform_dp/models/update_table_field_details.py +101 -0
  772. aidp_python_client/aidataplatform_dp/models/update_tool_details.py +237 -0
  773. aidp_python_client/aidataplatform_dp/models/update_user_setting_details.py +128 -0
  774. aidp_python_client/aidataplatform_dp/models/update_view_details.py +130 -0
  775. aidp_python_client/aidataplatform_dp/models/update_volume_details.py +101 -0
  776. aidp_python_client/aidataplatform_dp/models/update_workspace_async_operation_status_details.py +196 -0
  777. aidp_python_client/aidataplatform_dp/models/update_workspace_details.py +165 -0
  778. aidp_python_client/aidataplatform_dp/models/upload_file_with_par_details.py +188 -0
  779. aidp_python_client/aidataplatform_dp/models/upload_file_with_par_result.py +353 -0
  780. aidp_python_client/aidataplatform_dp/models/user_setting.py +159 -0
  781. aidp_python_client/aidataplatform_dp/models/user_setting_collection.py +70 -0
  782. aidp_python_client/aidataplatform_dp/models/user_setting_summary.py +276 -0
  783. aidp_python_client/aidataplatform_dp/models/validate_agent_flow_diagram_details.py +203 -0
  784. aidp_python_client/aidataplatform_dp/models/validate_agent_flow_response.py +101 -0
  785. aidp_python_client/aidataplatform_dp/models/validate_bundle_details.py +70 -0
  786. aidp_python_client/aidataplatform_dp/models/validate_view_sql_details.py +70 -0
  787. aidp_python_client/aidataplatform_dp/models/validation_error.py +163 -0
  788. aidp_python_client/aidataplatform_dp/models/vault_reference_credential_details.py +81 -0
  789. aidp_python_client/aidataplatform_dp/models/view.py +489 -0
  790. aidp_python_client/aidataplatform_dp/models/view_collection.py +70 -0
  791. aidp_python_client/aidataplatform_dp/models/view_field_details.py +194 -0
  792. aidp_python_client/aidataplatform_dp/models/view_permission_collection.py +70 -0
  793. aidp_python_client/aidataplatform_dp/models/view_permission_summary.py +347 -0
  794. aidp_python_client/aidataplatform_dp/models/view_property.py +101 -0
  795. aidp_python_client/aidataplatform_dp/models/view_sql_parse_details.py +132 -0
  796. aidp_python_client/aidataplatform_dp/models/view_summary.py +303 -0
  797. aidp_python_client/aidataplatform_dp/models/view_update_details.py +225 -0
  798. aidp_python_client/aidataplatform_dp/models/volume.py +559 -0
  799. aidp_python_client/aidataplatform_dp/models/volume_collection.py +70 -0
  800. aidp_python_client/aidataplatform_dp/models/volume_file.py +42 -0
  801. aidp_python_client/aidataplatform_dp/models/volume_file_cluster_library_summary.py +139 -0
  802. aidp_python_client/aidataplatform_dp/models/volume_file_collection.py +70 -0
  803. aidp_python_client/aidataplatform_dp/models/volume_file_summary.py +408 -0
  804. aidp_python_client/aidataplatform_dp/models/volume_permission_collection.py +70 -0
  805. aidp_python_client/aidataplatform_dp/models/volume_permission_summary.py +273 -0
  806. aidp_python_client/aidataplatform_dp/models/volume_summary.py +435 -0
  807. aidp_python_client/aidataplatform_dp/models/word_filters_policy.py +148 -0
  808. aidp_python_client/aidataplatform_dp/models/worker_config.py +159 -0
  809. aidp_python_client/aidataplatform_dp/models/workspace.py +665 -0
  810. aidp_python_client/aidataplatform_dp/models/workspace_collection.py +70 -0
  811. aidp_python_client/aidataplatform_dp/models/workspace_file_cluster_library_summary.py +139 -0
  812. aidp_python_client/aidataplatform_dp/models/workspace_network_configuration_details.py +134 -0
  813. aidp_python_client/aidataplatform_dp/models/workspace_object.py +42 -0
  814. aidp_python_client/aidataplatform_dp/models/workspace_object_collection.py +70 -0
  815. aidp_python_client/aidataplatform_dp/models/workspace_object_details.py +342 -0
  816. aidp_python_client/aidataplatform_dp/models/workspace_object_permission_collection.py +70 -0
  817. aidp_python_client/aidataplatform_dp/models/workspace_object_permission_summary.py +238 -0
  818. aidp_python_client/aidataplatform_dp/models/workspace_object_search_results_collection.py +70 -0
  819. aidp_python_client/aidataplatform_dp/models/workspace_object_search_summary.py +423 -0
  820. aidp_python_client/aidataplatform_dp/models/workspace_object_summary.py +392 -0
  821. aidp_python_client/aidataplatform_dp/models/workspace_permission_collection.py +70 -0
  822. aidp_python_client/aidataplatform_dp/models/workspace_permission_summary.py +203 -0
  823. aidp_python_client/aidataplatform_dp/models/workspace_search_criteria.py +252 -0
  824. aidp_python_client/aidataplatform_dp/models/workspace_summary.py +567 -0
  825. aidp_python_client/aidataplatform_dp/notebook_client.py +1199 -0
  826. aidp_python_client/aidataplatform_dp/notebook_client_composite_operations.py +70 -0
  827. aidp_python_client/aidataplatform_dp/role_client.py +965 -0
  828. aidp_python_client/aidataplatform_dp/role_client_composite_operations.py +113 -0
  829. aidp_python_client/aidataplatform_dp/schema_client.py +3023 -0
  830. aidp_python_client/aidataplatform_dp/schema_client_composite_operations.py +159 -0
  831. aidp_python_client/aidataplatform_dp/user_setting_client.py +610 -0
  832. aidp_python_client/aidataplatform_dp/user_setting_client_composite_operations.py +24 -0
  833. aidp_python_client/aidataplatform_dp/volume_client.py +1838 -0
  834. aidp_python_client/aidataplatform_dp/volume_client_composite_operations.py +113 -0
  835. aidp_python_client/aidataplatform_dp/workflow_client.py +2220 -0
  836. aidp_python_client/aidataplatform_dp/workflow_client_composite_operations.py +24 -0
  837. aidp_python_client/aidataplatform_dp/workspace_client.py +1294 -0
  838. aidp_python_client/aidataplatform_dp/workspace_client_composite_operations.py +162 -0
  839. aidp_python_client/aidataplatform_dp/workspace_object_client.py +1595 -0
  840. aidp_python_client/aidataplatform_dp/workspace_object_client_composite_operations.py +24 -0
  841. aidp_python_client/service_endpoints.py +22 -0
  842. aidp_python_client-1.0.0.dist-info/METADATA +9 -0
  843. aidp_python_client-1.0.0.dist-info/RECORD +847 -0
  844. aidp_python_client-1.0.0.dist-info/WHEEL +5 -0
  845. aidp_python_client-1.0.0.dist-info/licenses/LICENSE.txt +35 -0
  846. aidp_python_client-1.0.0.dist-info/licenses/NOTICE.txt +1 -0
  847. aidp_python_client-1.0.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,1178 @@
1
+ # coding: utf-8
2
+ # Copyright (c) 2026, Oracle and/or its affiliates. All rights reserved.
3
+
4
+
5
+
6
+ from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401
7
+ from oci.decorators import init_model_state_from_kwargs
8
+
9
+
10
+ @init_model_state_from_kwargs
11
+ class JobRun(object):
12
+ """
13
+ Description of a job run.
14
+ """
15
+
16
+ #: A constant which can be used with the launched property of a JobRun.
17
+ #: This constant has a value of "SCHEDULED"
18
+ LAUNCHED_SCHEDULED = "SCHEDULED"
19
+
20
+ #: A constant which can be used with the launched property of a JobRun.
21
+ #: This constant has a value of "MANUAL"
22
+ LAUNCHED_MANUAL = "MANUAL"
23
+
24
+ def __init__(self, **kwargs):
25
+ """
26
+ Initializes a new JobRun object with values from keyword arguments.
27
+ The following keyword arguments are supported (corresponding to the getters/setters of this class):
28
+
29
+ :param key:
30
+ The value to assign to the key property of this JobRun.
31
+ :type key: str
32
+
33
+ :param name:
34
+ The value to assign to the name property of this JobRun.
35
+ :type name: str
36
+
37
+ :param job_key:
38
+ The value to assign to the job_key property of this JobRun.
39
+ :type job_key: str
40
+
41
+ :param job_name:
42
+ The value to assign to the job_name property of this JobRun.
43
+ :type job_name: str
44
+
45
+ :param parent_job_run_key:
46
+ The value to assign to the parent_job_run_key property of this JobRun.
47
+ :type parent_job_run_key: str
48
+
49
+ :param root_job_run_key:
50
+ The value to assign to the root_job_run_key property of this JobRun.
51
+ :type root_job_run_key: str
52
+
53
+ :param parent_task_run_key:
54
+ The value to assign to the parent_task_run_key property of this JobRun.
55
+ :type parent_task_run_key: str
56
+
57
+ :param tasks:
58
+ The value to assign to the tasks property of this JobRun.
59
+ :type tasks: list[oci.aidataplatform_dp.models.Task]
60
+
61
+ :param created_by:
62
+ The value to assign to the created_by property of this JobRun.
63
+ :type created_by: str
64
+
65
+ :param created_by_name:
66
+ The value to assign to the created_by_name property of this JobRun.
67
+ :type created_by_name: str
68
+
69
+ :param max_concurrent_runs:
70
+ The value to assign to the max_concurrent_runs property of this JobRun.
71
+ :type max_concurrent_runs: int
72
+
73
+ :param git_config:
74
+ The value to assign to the git_config property of this JobRun.
75
+ :type git_config: oci.aidataplatform_dp.models.GitConfig
76
+
77
+ :param queue:
78
+ The value to assign to the queue property of this JobRun.
79
+ :type queue: oci.aidataplatform_dp.models.Queue
80
+
81
+ :param original_attempt_run_id:
82
+ The value to assign to the original_attempt_run_id property of this JobRun.
83
+ :type original_attempt_run_id: str
84
+
85
+ :param state:
86
+ The value to assign to the state property of this JobRun.
87
+ :type state: oci.aidataplatform_dp.models.State
88
+
89
+ :param schedule:
90
+ The value to assign to the schedule property of this JobRun.
91
+ :type schedule: oci.aidataplatform_dp.models.Schedule
92
+
93
+ :param cluster_spec:
94
+ The value to assign to the cluster_spec property of this JobRun.
95
+ :type cluster_spec: oci.aidataplatform_dp.models.ClusterSpec
96
+
97
+ :param cluster_instance:
98
+ The value to assign to the cluster_instance property of this JobRun.
99
+ :type cluster_instance: oci.aidataplatform_dp.models.ClusterInstance
100
+
101
+ :param parameters:
102
+ The value to assign to the parameters property of this JobRun.
103
+ :type parameters: list[oci.aidataplatform_dp.models.Parameter]
104
+
105
+ :param unified_job_and_job_run_parameters:
106
+ The value to assign to the unified_job_and_job_run_parameters property of this JobRun.
107
+ :type unified_job_and_job_run_parameters: list[oci.aidataplatform_dp.models.Parameter]
108
+
109
+ :param repair_history:
110
+ The value to assign to the repair_history property of this JobRun.
111
+ :type repair_history: list[oci.aidataplatform_dp.models.RepairHistory]
112
+
113
+ :param system_parameters:
114
+ The value to assign to the system_parameters property of this JobRun.
115
+ :type system_parameters: dict(str, str)
116
+
117
+ :param start_time:
118
+ The value to assign to the start_time property of this JobRun.
119
+ :type start_time: int
120
+
121
+ :param end_time:
122
+ The value to assign to the end_time property of this JobRun.
123
+ :type end_time: int
124
+
125
+ :param setup_duration:
126
+ The value to assign to the setup_duration property of this JobRun.
127
+ :type setup_duration: int
128
+
129
+ :param execution_duration:
130
+ The value to assign to the execution_duration property of this JobRun.
131
+ :type execution_duration: int
132
+
133
+ :param cleanup_duration:
134
+ The value to assign to the cleanup_duration property of this JobRun.
135
+ :type cleanup_duration: int
136
+
137
+ :param run_duration:
138
+ The value to assign to the run_duration property of this JobRun.
139
+ :type run_duration: int
140
+
141
+ :param time_created:
142
+ The value to assign to the time_created property of this JobRun.
143
+ :type time_created: datetime
144
+
145
+ :param time_updated:
146
+ The value to assign to the time_updated property of this JobRun.
147
+ :type time_updated: datetime
148
+
149
+ :param launched:
150
+ The value to assign to the launched property of this JobRun.
151
+ Allowed values for this property are: "SCHEDULED", "MANUAL", 'UNKNOWN_ENUM_VALUE'.
152
+ Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'.
153
+ :type launched: str
154
+
155
+ :param version:
156
+ The value to assign to the version property of this JobRun.
157
+ :type version: int
158
+
159
+ :param task_to_task_run_map:
160
+ The value to assign to the task_to_task_run_map property of this JobRun.
161
+ :type task_to_task_run_map: dict(str, str)
162
+
163
+ :param task_run_summary_map:
164
+ The value to assign to the task_run_summary_map property of this JobRun.
165
+ :type task_run_summary_map: dict(str, object)
166
+
167
+ :param timeout_seconds:
168
+ The value to assign to the timeout_seconds property of this JobRun.
169
+ :type timeout_seconds: int
170
+
171
+ :param repaired_tasks:
172
+ The value to assign to the repaired_tasks property of this JobRun.
173
+ :type repaired_tasks: list[str]
174
+
175
+ :param lifecycle_states:
176
+ The value to assign to the lifecycle_states property of this JobRun.
177
+ :type lifecycle_states: list[oci.aidataplatform_dp.models.LifecycleState]
178
+
179
+ """
180
+ self.swagger_types = {
181
+ 'key': 'str',
182
+ 'name': 'str',
183
+ 'job_key': 'str',
184
+ 'job_name': 'str',
185
+ 'parent_job_run_key': 'str',
186
+ 'root_job_run_key': 'str',
187
+ 'parent_task_run_key': 'str',
188
+ 'tasks': 'list[Task]',
189
+ 'created_by': 'str',
190
+ 'created_by_name': 'str',
191
+ 'max_concurrent_runs': 'int',
192
+ 'git_config': 'GitConfig',
193
+ 'queue': 'Queue',
194
+ 'original_attempt_run_id': 'str',
195
+ 'state': 'State',
196
+ 'schedule': 'Schedule',
197
+ 'cluster_spec': 'ClusterSpec',
198
+ 'cluster_instance': 'ClusterInstance',
199
+ 'parameters': 'list[Parameter]',
200
+ 'unified_job_and_job_run_parameters': 'list[Parameter]',
201
+ 'repair_history': 'list[RepairHistory]',
202
+ 'system_parameters': 'dict(str, str)',
203
+ 'start_time': 'int',
204
+ 'end_time': 'int',
205
+ 'setup_duration': 'int',
206
+ 'execution_duration': 'int',
207
+ 'cleanup_duration': 'int',
208
+ 'run_duration': 'int',
209
+ 'time_created': 'datetime',
210
+ 'time_updated': 'datetime',
211
+ 'launched': 'str',
212
+ 'version': 'int',
213
+ 'task_to_task_run_map': 'dict(str, str)',
214
+ 'task_run_summary_map': 'dict(str, object)',
215
+ 'timeout_seconds': 'int',
216
+ 'repaired_tasks': 'list[str]',
217
+ 'lifecycle_states': 'list[LifecycleState]'
218
+ }
219
+
220
+ self.attribute_map = {
221
+ 'key': 'key',
222
+ 'name': 'name',
223
+ 'job_key': 'jobKey',
224
+ 'job_name': 'jobName',
225
+ 'parent_job_run_key': 'parentJobRunKey',
226
+ 'root_job_run_key': 'rootJobRunKey',
227
+ 'parent_task_run_key': 'parentTaskRunKey',
228
+ 'tasks': 'tasks',
229
+ 'created_by': 'createdBy',
230
+ 'created_by_name': 'createdByName',
231
+ 'max_concurrent_runs': 'maxConcurrentRuns',
232
+ 'git_config': 'gitConfig',
233
+ 'queue': 'queue',
234
+ 'original_attempt_run_id': 'originalAttemptRunId',
235
+ 'state': 'state',
236
+ 'schedule': 'schedule',
237
+ 'cluster_spec': 'clusterSpec',
238
+ 'cluster_instance': 'clusterInstance',
239
+ 'parameters': 'parameters',
240
+ 'unified_job_and_job_run_parameters': 'unifiedJobAndJobRunParameters',
241
+ 'repair_history': 'repairHistory',
242
+ 'system_parameters': 'systemParameters',
243
+ 'start_time': 'startTime',
244
+ 'end_time': 'endTime',
245
+ 'setup_duration': 'setupDuration',
246
+ 'execution_duration': 'executionDuration',
247
+ 'cleanup_duration': 'cleanupDuration',
248
+ 'run_duration': 'runDuration',
249
+ 'time_created': 'timeCreated',
250
+ 'time_updated': 'timeUpdated',
251
+ 'launched': 'launched',
252
+ 'version': 'version',
253
+ 'task_to_task_run_map': 'taskToTaskRunMap',
254
+ 'task_run_summary_map': 'taskRunSummaryMap',
255
+ 'timeout_seconds': 'timeoutSeconds',
256
+ 'repaired_tasks': 'repairedTasks',
257
+ 'lifecycle_states': 'lifecycleStates'
258
+ }
259
+
260
+ self._key = None
261
+ self._name = None
262
+ self._job_key = None
263
+ self._job_name = None
264
+ self._parent_job_run_key = None
265
+ self._root_job_run_key = None
266
+ self._parent_task_run_key = None
267
+ self._tasks = None
268
+ self._created_by = None
269
+ self._created_by_name = None
270
+ self._max_concurrent_runs = None
271
+ self._git_config = None
272
+ self._queue = None
273
+ self._original_attempt_run_id = None
274
+ self._state = None
275
+ self._schedule = None
276
+ self._cluster_spec = None
277
+ self._cluster_instance = None
278
+ self._parameters = None
279
+ self._unified_job_and_job_run_parameters = None
280
+ self._repair_history = None
281
+ self._system_parameters = None
282
+ self._start_time = None
283
+ self._end_time = None
284
+ self._setup_duration = None
285
+ self._execution_duration = None
286
+ self._cleanup_duration = None
287
+ self._run_duration = None
288
+ self._time_created = None
289
+ self._time_updated = None
290
+ self._launched = None
291
+ self._version = None
292
+ self._task_to_task_run_map = None
293
+ self._task_run_summary_map = None
294
+ self._timeout_seconds = None
295
+ self._repaired_tasks = None
296
+ self._lifecycle_states = None
297
+
298
+ @property
299
+ def key(self):
300
+ """
301
+ **[Required]** Gets the key of this JobRun.
302
+ The OCID of the job.
303
+
304
+
305
+ :return: The key of this JobRun.
306
+ :rtype: str
307
+ """
308
+ return self._key
309
+
310
+ @key.setter
311
+ def key(self, key):
312
+ """
313
+ Sets the key of this JobRun.
314
+ The OCID of the job.
315
+
316
+
317
+ :param key: The key of this JobRun.
318
+ :type: str
319
+ """
320
+ self._key = key
321
+
322
+ @property
323
+ def name(self):
324
+ """
325
+ **[Required]** Gets the name of this JobRun.
326
+ A user-friendly name. Does not have to be unique, and is changeable.
327
+
328
+
329
+ :return: The name of this JobRun.
330
+ :rtype: str
331
+ """
332
+ return self._name
333
+
334
+ @name.setter
335
+ def name(self, name):
336
+ """
337
+ Sets the name of this JobRun.
338
+ A user-friendly name. Does not have to be unique, and is changeable.
339
+
340
+
341
+ :param name: The name of this JobRun.
342
+ :type: str
343
+ """
344
+ self._name = name
345
+
346
+ @property
347
+ def job_key(self):
348
+ """
349
+ **[Required]** Gets the job_key of this JobRun.
350
+ The OCID of the job.
351
+
352
+
353
+ :return: The job_key of this JobRun.
354
+ :rtype: str
355
+ """
356
+ return self._job_key
357
+
358
+ @job_key.setter
359
+ def job_key(self, job_key):
360
+ """
361
+ Sets the job_key of this JobRun.
362
+ The OCID of the job.
363
+
364
+
365
+ :param job_key: The job_key of this JobRun.
366
+ :type: str
367
+ """
368
+ self._job_key = job_key
369
+
370
+ @property
371
+ def job_name(self):
372
+ """
373
+ Gets the job_name of this JobRun.
374
+ A user-friendly name. Does not have to be unique, and is changeable.
375
+
376
+
377
+ :return: The job_name of this JobRun.
378
+ :rtype: str
379
+ """
380
+ return self._job_name
381
+
382
+ @job_name.setter
383
+ def job_name(self, job_name):
384
+ """
385
+ Sets the job_name of this JobRun.
386
+ A user-friendly name. Does not have to be unique, and is changeable.
387
+
388
+
389
+ :param job_name: The job_name of this JobRun.
390
+ :type: str
391
+ """
392
+ self._job_name = job_name
393
+
394
+ @property
395
+ def parent_job_run_key(self):
396
+ """
397
+ Gets the parent_job_run_key of this JobRun.
398
+ The OCID of the job.
399
+
400
+
401
+ :return: The parent_job_run_key of this JobRun.
402
+ :rtype: str
403
+ """
404
+ return self._parent_job_run_key
405
+
406
+ @parent_job_run_key.setter
407
+ def parent_job_run_key(self, parent_job_run_key):
408
+ """
409
+ Sets the parent_job_run_key of this JobRun.
410
+ The OCID of the job.
411
+
412
+
413
+ :param parent_job_run_key: The parent_job_run_key of this JobRun.
414
+ :type: str
415
+ """
416
+ self._parent_job_run_key = parent_job_run_key
417
+
418
+ @property
419
+ def root_job_run_key(self):
420
+ """
421
+ Gets the root_job_run_key of this JobRun.
422
+ The OCID of the job.
423
+
424
+
425
+ :return: The root_job_run_key of this JobRun.
426
+ :rtype: str
427
+ """
428
+ return self._root_job_run_key
429
+
430
+ @root_job_run_key.setter
431
+ def root_job_run_key(self, root_job_run_key):
432
+ """
433
+ Sets the root_job_run_key of this JobRun.
434
+ The OCID of the job.
435
+
436
+
437
+ :param root_job_run_key: The root_job_run_key of this JobRun.
438
+ :type: str
439
+ """
440
+ self._root_job_run_key = root_job_run_key
441
+
442
+ @property
443
+ def parent_task_run_key(self):
444
+ """
445
+ Gets the parent_task_run_key of this JobRun.
446
+ The OCID of the task run.
447
+
448
+
449
+ :return: The parent_task_run_key of this JobRun.
450
+ :rtype: str
451
+ """
452
+ return self._parent_task_run_key
453
+
454
+ @parent_task_run_key.setter
455
+ def parent_task_run_key(self, parent_task_run_key):
456
+ """
457
+ Sets the parent_task_run_key of this JobRun.
458
+ The OCID of the task run.
459
+
460
+
461
+ :param parent_task_run_key: The parent_task_run_key of this JobRun.
462
+ :type: str
463
+ """
464
+ self._parent_task_run_key = parent_task_run_key
465
+
466
+ @property
467
+ def tasks(self):
468
+ """
469
+ Gets the tasks of this JobRun.
470
+ List of tasks in a job.
471
+
472
+
473
+ :return: The tasks of this JobRun.
474
+ :rtype: list[oci.aidataplatform_dp.models.Task]
475
+ """
476
+ return self._tasks
477
+
478
+ @tasks.setter
479
+ def tasks(self, tasks):
480
+ """
481
+ Sets the tasks of this JobRun.
482
+ List of tasks in a job.
483
+
484
+
485
+ :param tasks: The tasks of this JobRun.
486
+ :type: list[oci.aidataplatform_dp.models.Task]
487
+ """
488
+ self._tasks = tasks
489
+
490
+ @property
491
+ def created_by(self):
492
+ """
493
+ Gets the created_by of this JobRun.
494
+ The OCID of the IAM user.
495
+
496
+
497
+ :return: The created_by of this JobRun.
498
+ :rtype: str
499
+ """
500
+ return self._created_by
501
+
502
+ @created_by.setter
503
+ def created_by(self, created_by):
504
+ """
505
+ Sets the created_by of this JobRun.
506
+ The OCID of the IAM user.
507
+
508
+
509
+ :param created_by: The created_by of this JobRun.
510
+ :type: str
511
+ """
512
+ self._created_by = created_by
513
+
514
+ @property
515
+ def created_by_name(self):
516
+ """
517
+ Gets the created_by_name of this JobRun.
518
+ Name of the user who created this record
519
+
520
+
521
+ :return: The created_by_name of this JobRun.
522
+ :rtype: str
523
+ """
524
+ return self._created_by_name
525
+
526
+ @created_by_name.setter
527
+ def created_by_name(self, created_by_name):
528
+ """
529
+ Sets the created_by_name of this JobRun.
530
+ Name of the user who created this record
531
+
532
+
533
+ :param created_by_name: The created_by_name of this JobRun.
534
+ :type: str
535
+ """
536
+ self._created_by_name = created_by_name
537
+
538
+ @property
539
+ def max_concurrent_runs(self):
540
+ """
541
+ Gets the max_concurrent_runs of this JobRun.
542
+ Indicates the number of executions for the same job that can be run concurrently. The maximum value cannot exceed 1000.
543
+
544
+
545
+ :return: The max_concurrent_runs of this JobRun.
546
+ :rtype: int
547
+ """
548
+ return self._max_concurrent_runs
549
+
550
+ @max_concurrent_runs.setter
551
+ def max_concurrent_runs(self, max_concurrent_runs):
552
+ """
553
+ Sets the max_concurrent_runs of this JobRun.
554
+ Indicates the number of executions for the same job that can be run concurrently. The maximum value cannot exceed 1000.
555
+
556
+
557
+ :param max_concurrent_runs: The max_concurrent_runs of this JobRun.
558
+ :type: int
559
+ """
560
+ self._max_concurrent_runs = max_concurrent_runs
561
+
562
+ @property
563
+ def git_config(self):
564
+ """
565
+ Gets the git_config of this JobRun.
566
+
567
+ :return: The git_config of this JobRun.
568
+ :rtype: oci.aidataplatform_dp.models.GitConfig
569
+ """
570
+ return self._git_config
571
+
572
+ @git_config.setter
573
+ def git_config(self, git_config):
574
+ """
575
+ Sets the git_config of this JobRun.
576
+
577
+ :param git_config: The git_config of this JobRun.
578
+ :type: oci.aidataplatform_dp.models.GitConfig
579
+ """
580
+ self._git_config = git_config
581
+
582
+ @property
583
+ def queue(self):
584
+ """
585
+ Gets the queue of this JobRun.
586
+
587
+ :return: The queue of this JobRun.
588
+ :rtype: oci.aidataplatform_dp.models.Queue
589
+ """
590
+ return self._queue
591
+
592
+ @queue.setter
593
+ def queue(self, queue):
594
+ """
595
+ Sets the queue of this JobRun.
596
+
597
+ :param queue: The queue of this JobRun.
598
+ :type: oci.aidataplatform_dp.models.Queue
599
+ """
600
+ self._queue = queue
601
+
602
+ @property
603
+ def original_attempt_run_id(self):
604
+ """
605
+ Gets the original_attempt_run_id of this JobRun.
606
+ The OCID of the job.
607
+
608
+
609
+ :return: The original_attempt_run_id of this JobRun.
610
+ :rtype: str
611
+ """
612
+ return self._original_attempt_run_id
613
+
614
+ @original_attempt_run_id.setter
615
+ def original_attempt_run_id(self, original_attempt_run_id):
616
+ """
617
+ Sets the original_attempt_run_id of this JobRun.
618
+ The OCID of the job.
619
+
620
+
621
+ :param original_attempt_run_id: The original_attempt_run_id of this JobRun.
622
+ :type: str
623
+ """
624
+ self._original_attempt_run_id = original_attempt_run_id
625
+
626
+ @property
627
+ def state(self):
628
+ """
629
+ Gets the state of this JobRun.
630
+
631
+ :return: The state of this JobRun.
632
+ :rtype: oci.aidataplatform_dp.models.State
633
+ """
634
+ return self._state
635
+
636
+ @state.setter
637
+ def state(self, state):
638
+ """
639
+ Sets the state of this JobRun.
640
+
641
+ :param state: The state of this JobRun.
642
+ :type: oci.aidataplatform_dp.models.State
643
+ """
644
+ self._state = state
645
+
646
+ @property
647
+ def schedule(self):
648
+ """
649
+ Gets the schedule of this JobRun.
650
+
651
+ :return: The schedule of this JobRun.
652
+ :rtype: oci.aidataplatform_dp.models.Schedule
653
+ """
654
+ return self._schedule
655
+
656
+ @schedule.setter
657
+ def schedule(self, schedule):
658
+ """
659
+ Sets the schedule of this JobRun.
660
+
661
+ :param schedule: The schedule of this JobRun.
662
+ :type: oci.aidataplatform_dp.models.Schedule
663
+ """
664
+ self._schedule = schedule
665
+
666
+ @property
667
+ def cluster_spec(self):
668
+ """
669
+ Gets the cluster_spec of this JobRun.
670
+
671
+ :return: The cluster_spec of this JobRun.
672
+ :rtype: oci.aidataplatform_dp.models.ClusterSpec
673
+ """
674
+ return self._cluster_spec
675
+
676
+ @cluster_spec.setter
677
+ def cluster_spec(self, cluster_spec):
678
+ """
679
+ Sets the cluster_spec of this JobRun.
680
+
681
+ :param cluster_spec: The cluster_spec of this JobRun.
682
+ :type: oci.aidataplatform_dp.models.ClusterSpec
683
+ """
684
+ self._cluster_spec = cluster_spec
685
+
686
+ @property
687
+ def cluster_instance(self):
688
+ """
689
+ Gets the cluster_instance of this JobRun.
690
+
691
+ :return: The cluster_instance of this JobRun.
692
+ :rtype: oci.aidataplatform_dp.models.ClusterInstance
693
+ """
694
+ return self._cluster_instance
695
+
696
+ @cluster_instance.setter
697
+ def cluster_instance(self, cluster_instance):
698
+ """
699
+ Sets the cluster_instance of this JobRun.
700
+
701
+ :param cluster_instance: The cluster_instance of this JobRun.
702
+ :type: oci.aidataplatform_dp.models.ClusterInstance
703
+ """
704
+ self._cluster_instance = cluster_instance
705
+
706
+ @property
707
+ def parameters(self):
708
+ """
709
+ Gets the parameters of this JobRun.
710
+ An optional list of parameters.
711
+
712
+
713
+ :return: The parameters of this JobRun.
714
+ :rtype: list[oci.aidataplatform_dp.models.Parameter]
715
+ """
716
+ return self._parameters
717
+
718
+ @parameters.setter
719
+ def parameters(self, parameters):
720
+ """
721
+ Sets the parameters of this JobRun.
722
+ An optional list of parameters.
723
+
724
+
725
+ :param parameters: The parameters of this JobRun.
726
+ :type: list[oci.aidataplatform_dp.models.Parameter]
727
+ """
728
+ self._parameters = parameters
729
+
730
+ @property
731
+ def unified_job_and_job_run_parameters(self):
732
+ """
733
+ Gets the unified_job_and_job_run_parameters of this JobRun.
734
+ Unified List of job and job run parameters after resolving dynamic value references and parameter resolution as per precedence.
735
+
736
+
737
+ :return: The unified_job_and_job_run_parameters of this JobRun.
738
+ :rtype: list[oci.aidataplatform_dp.models.Parameter]
739
+ """
740
+ return self._unified_job_and_job_run_parameters
741
+
742
+ @unified_job_and_job_run_parameters.setter
743
+ def unified_job_and_job_run_parameters(self, unified_job_and_job_run_parameters):
744
+ """
745
+ Sets the unified_job_and_job_run_parameters of this JobRun.
746
+ Unified List of job and job run parameters after resolving dynamic value references and parameter resolution as per precedence.
747
+
748
+
749
+ :param unified_job_and_job_run_parameters: The unified_job_and_job_run_parameters of this JobRun.
750
+ :type: list[oci.aidataplatform_dp.models.Parameter]
751
+ """
752
+ self._unified_job_and_job_run_parameters = unified_job_and_job_run_parameters
753
+
754
+ @property
755
+ def repair_history(self):
756
+ """
757
+ Gets the repair_history of this JobRun.
758
+ Array of repaired runs.
759
+
760
+
761
+ :return: The repair_history of this JobRun.
762
+ :rtype: list[oci.aidataplatform_dp.models.RepairHistory]
763
+ """
764
+ return self._repair_history
765
+
766
+ @repair_history.setter
767
+ def repair_history(self, repair_history):
768
+ """
769
+ Sets the repair_history of this JobRun.
770
+ Array of repaired runs.
771
+
772
+
773
+ :param repair_history: The repair_history of this JobRun.
774
+ :type: list[oci.aidataplatform_dp.models.RepairHistory]
775
+ """
776
+ self._repair_history = repair_history
777
+
778
+ @property
779
+ def system_parameters(self):
780
+ """
781
+ Gets the system_parameters of this JobRun.
782
+ Map of system parameters with their values for this job run.
783
+
784
+
785
+ :return: The system_parameters of this JobRun.
786
+ :rtype: dict(str, str)
787
+ """
788
+ return self._system_parameters
789
+
790
+ @system_parameters.setter
791
+ def system_parameters(self, system_parameters):
792
+ """
793
+ Sets the system_parameters of this JobRun.
794
+ Map of system parameters with their values for this job run.
795
+
796
+
797
+ :param system_parameters: The system_parameters of this JobRun.
798
+ :type: dict(str, str)
799
+ """
800
+ self._system_parameters = system_parameters
801
+
802
+ @property
803
+ def start_time(self):
804
+ """
805
+ Gets the start_time of this JobRun.
806
+ The time at which the job execution started in epoch milliseconds.
807
+
808
+
809
+ :return: The start_time of this JobRun.
810
+ :rtype: int
811
+ """
812
+ return self._start_time
813
+
814
+ @start_time.setter
815
+ def start_time(self, start_time):
816
+ """
817
+ Sets the start_time of this JobRun.
818
+ The time at which the job execution started in epoch milliseconds.
819
+
820
+
821
+ :param start_time: The start_time of this JobRun.
822
+ :type: int
823
+ """
824
+ self._start_time = start_time
825
+
826
+ @property
827
+ def end_time(self):
828
+ """
829
+ Gets the end_time of this JobRun.
830
+ The time at which the job execution started in epoch milliseconds.
831
+
832
+
833
+ :return: The end_time of this JobRun.
834
+ :rtype: int
835
+ """
836
+ return self._end_time
837
+
838
+ @end_time.setter
839
+ def end_time(self, end_time):
840
+ """
841
+ Sets the end_time of this JobRun.
842
+ The time at which the job execution started in epoch milliseconds.
843
+
844
+
845
+ :param end_time: The end_time of this JobRun.
846
+ :type: int
847
+ """
848
+ self._end_time = end_time
849
+
850
+ @property
851
+ def setup_duration(self):
852
+ """
853
+ Gets the setup_duration of this JobRun.
854
+ The time (in milliseconds) taken to setup the cluster.
855
+
856
+
857
+ :return: The setup_duration of this JobRun.
858
+ :rtype: int
859
+ """
860
+ return self._setup_duration
861
+
862
+ @setup_duration.setter
863
+ def setup_duration(self, setup_duration):
864
+ """
865
+ Sets the setup_duration of this JobRun.
866
+ The time (in milliseconds) taken to setup the cluster.
867
+
868
+
869
+ :param setup_duration: The setup_duration of this JobRun.
870
+ :type: int
871
+ """
872
+ self._setup_duration = setup_duration
873
+
874
+ @property
875
+ def execution_duration(self):
876
+ """
877
+ Gets the execution_duration of this JobRun.
878
+ The time (in milliseconds) taken to complete the job execution.
879
+
880
+
881
+ :return: The execution_duration of this JobRun.
882
+ :rtype: int
883
+ """
884
+ return self._execution_duration
885
+
886
+ @execution_duration.setter
887
+ def execution_duration(self, execution_duration):
888
+ """
889
+ Sets the execution_duration of this JobRun.
890
+ The time (in milliseconds) taken to complete the job execution.
891
+
892
+
893
+ :param execution_duration: The execution_duration of this JobRun.
894
+ :type: int
895
+ """
896
+ self._execution_duration = execution_duration
897
+
898
+ @property
899
+ def cleanup_duration(self):
900
+ """
901
+ Gets the cleanup_duration of this JobRun.
902
+ The time (in milliseconds) taken to terminate the cluster and to clean up any associated artifacts.
903
+
904
+
905
+ :return: The cleanup_duration of this JobRun.
906
+ :rtype: int
907
+ """
908
+ return self._cleanup_duration
909
+
910
+ @cleanup_duration.setter
911
+ def cleanup_duration(self, cleanup_duration):
912
+ """
913
+ Sets the cleanup_duration of this JobRun.
914
+ The time (in milliseconds) taken to terminate the cluster and to clean up any associated artifacts.
915
+
916
+
917
+ :param cleanup_duration: The cleanup_duration of this JobRun.
918
+ :type: int
919
+ """
920
+ self._cleanup_duration = cleanup_duration
921
+
922
+ @property
923
+ def run_duration(self):
924
+ """
925
+ Gets the run_duration of this JobRun.
926
+ The time (in milliseconds) taken to complete the job execution and all its repairs to finish.
927
+
928
+
929
+ :return: The run_duration of this JobRun.
930
+ :rtype: int
931
+ """
932
+ return self._run_duration
933
+
934
+ @run_duration.setter
935
+ def run_duration(self, run_duration):
936
+ """
937
+ Sets the run_duration of this JobRun.
938
+ The time (in milliseconds) taken to complete the job execution and all its repairs to finish.
939
+
940
+
941
+ :param run_duration: The run_duration of this JobRun.
942
+ :type: int
943
+ """
944
+ self._run_duration = run_duration
945
+
946
+ @property
947
+ def time_created(self):
948
+ """
949
+ Gets the time_created of this JobRun.
950
+ The time at which the job execution started.
951
+
952
+
953
+ :return: The time_created of this JobRun.
954
+ :rtype: datetime
955
+ """
956
+ return self._time_created
957
+
958
+ @time_created.setter
959
+ def time_created(self, time_created):
960
+ """
961
+ Sets the time_created of this JobRun.
962
+ The time at which the job execution started.
963
+
964
+
965
+ :param time_created: The time_created of this JobRun.
966
+ :type: datetime
967
+ """
968
+ self._time_created = time_created
969
+
970
+ @property
971
+ def time_updated(self):
972
+ """
973
+ Gets the time_updated of this JobRun.
974
+ The time at which the job execution was updated.
975
+
976
+
977
+ :return: The time_updated of this JobRun.
978
+ :rtype: datetime
979
+ """
980
+ return self._time_updated
981
+
982
+ @time_updated.setter
983
+ def time_updated(self, time_updated):
984
+ """
985
+ Sets the time_updated of this JobRun.
986
+ The time at which the job execution was updated.
987
+
988
+
989
+ :param time_updated: The time_updated of this JobRun.
990
+ :type: datetime
991
+ """
992
+ self._time_updated = time_updated
993
+
994
+ @property
995
+ def launched(self):
996
+ """
997
+ Gets the launched of this JobRun.
998
+ Identify job run launched by schedule or manually.
999
+
1000
+ Allowed values for this property are: "SCHEDULED", "MANUAL", 'UNKNOWN_ENUM_VALUE'.
1001
+ Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'.
1002
+
1003
+
1004
+ :return: The launched of this JobRun.
1005
+ :rtype: str
1006
+ """
1007
+ return self._launched
1008
+
1009
+ @launched.setter
1010
+ def launched(self, launched):
1011
+ """
1012
+ Sets the launched of this JobRun.
1013
+ Identify job run launched by schedule or manually.
1014
+
1015
+
1016
+ :param launched: The launched of this JobRun.
1017
+ :type: str
1018
+ """
1019
+ allowed_values = ["SCHEDULED", "MANUAL"]
1020
+ if not value_allowed_none_or_none_sentinel(launched, allowed_values):
1021
+ launched = 'UNKNOWN_ENUM_VALUE'
1022
+ self._launched = launched
1023
+
1024
+ @property
1025
+ def version(self):
1026
+ """
1027
+ Gets the version of this JobRun.
1028
+ Current version of job run object in repository.
1029
+
1030
+
1031
+ :return: The version of this JobRun.
1032
+ :rtype: int
1033
+ """
1034
+ return self._version
1035
+
1036
+ @version.setter
1037
+ def version(self, version):
1038
+ """
1039
+ Sets the version of this JobRun.
1040
+ Current version of job run object in repository.
1041
+
1042
+
1043
+ :param version: The version of this JobRun.
1044
+ :type: int
1045
+ """
1046
+ self._version = version
1047
+
1048
+ @property
1049
+ def task_to_task_run_map(self):
1050
+ """
1051
+ Gets the task_to_task_run_map of this JobRun.
1052
+ Task to TaskRun map for given job run.
1053
+
1054
+
1055
+ :return: The task_to_task_run_map of this JobRun.
1056
+ :rtype: dict(str, str)
1057
+ """
1058
+ return self._task_to_task_run_map
1059
+
1060
+ @task_to_task_run_map.setter
1061
+ def task_to_task_run_map(self, task_to_task_run_map):
1062
+ """
1063
+ Sets the task_to_task_run_map of this JobRun.
1064
+ Task to TaskRun map for given job run.
1065
+
1066
+
1067
+ :param task_to_task_run_map: The task_to_task_run_map of this JobRun.
1068
+ :type: dict(str, str)
1069
+ """
1070
+ self._task_to_task_run_map = task_to_task_run_map
1071
+
1072
+ @property
1073
+ def task_run_summary_map(self):
1074
+ """
1075
+ Gets the task_run_summary_map of this JobRun.
1076
+ TaskRun to TaskRunSummary map for given job run.
1077
+
1078
+
1079
+ :return: The task_run_summary_map of this JobRun.
1080
+ :rtype: dict(str, object)
1081
+ """
1082
+ return self._task_run_summary_map
1083
+
1084
+ @task_run_summary_map.setter
1085
+ def task_run_summary_map(self, task_run_summary_map):
1086
+ """
1087
+ Sets the task_run_summary_map of this JobRun.
1088
+ TaskRun to TaskRunSummary map for given job run.
1089
+
1090
+
1091
+ :param task_run_summary_map: The task_run_summary_map of this JobRun.
1092
+ :type: dict(str, object)
1093
+ """
1094
+ self._task_run_summary_map = task_run_summary_map
1095
+
1096
+ @property
1097
+ def timeout_seconds(self):
1098
+ """
1099
+ Gets the timeout_seconds of this JobRun.
1100
+ An optional value to indicate the max run duration of a job after which job will be timed out. The default is Zero indicating no timeout value.
1101
+
1102
+
1103
+ :return: The timeout_seconds of this JobRun.
1104
+ :rtype: int
1105
+ """
1106
+ return self._timeout_seconds
1107
+
1108
+ @timeout_seconds.setter
1109
+ def timeout_seconds(self, timeout_seconds):
1110
+ """
1111
+ Sets the timeout_seconds of this JobRun.
1112
+ An optional value to indicate the max run duration of a job after which job will be timed out. The default is Zero indicating no timeout value.
1113
+
1114
+
1115
+ :param timeout_seconds: The timeout_seconds of this JobRun.
1116
+ :type: int
1117
+ """
1118
+ self._timeout_seconds = timeout_seconds
1119
+
1120
+ @property
1121
+ def repaired_tasks(self):
1122
+ """
1123
+ Gets the repaired_tasks of this JobRun.
1124
+ A list of repaired tasks.
1125
+
1126
+
1127
+ :return: The repaired_tasks of this JobRun.
1128
+ :rtype: list[str]
1129
+ """
1130
+ return self._repaired_tasks
1131
+
1132
+ @repaired_tasks.setter
1133
+ def repaired_tasks(self, repaired_tasks):
1134
+ """
1135
+ Sets the repaired_tasks of this JobRun.
1136
+ A list of repaired tasks.
1137
+
1138
+
1139
+ :param repaired_tasks: The repaired_tasks of this JobRun.
1140
+ :type: list[str]
1141
+ """
1142
+ self._repaired_tasks = repaired_tasks
1143
+
1144
+ @property
1145
+ def lifecycle_states(self):
1146
+ """
1147
+ Gets the lifecycle_states of this JobRun.
1148
+ The collection of lifecycle states.
1149
+
1150
+
1151
+ :return: The lifecycle_states of this JobRun.
1152
+ :rtype: list[oci.aidataplatform_dp.models.LifecycleState]
1153
+ """
1154
+ return self._lifecycle_states
1155
+
1156
+ @lifecycle_states.setter
1157
+ def lifecycle_states(self, lifecycle_states):
1158
+ """
1159
+ Sets the lifecycle_states of this JobRun.
1160
+ The collection of lifecycle states.
1161
+
1162
+
1163
+ :param lifecycle_states: The lifecycle_states of this JobRun.
1164
+ :type: list[oci.aidataplatform_dp.models.LifecycleState]
1165
+ """
1166
+ self._lifecycle_states = lifecycle_states
1167
+
1168
+ def __repr__(self):
1169
+ return formatted_flat_dict(self)
1170
+
1171
+ def __eq__(self, other):
1172
+ if other is None:
1173
+ return False
1174
+
1175
+ return self.__dict__ == other.__dict__
1176
+
1177
+ def __ne__(self, other):
1178
+ return not self == other