lightning-sdk 2025.12.5__py3-none-any.whl → 2025.12.9__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 (309) hide show
  1. lightning_sdk/__version__.py +1 -1
  2. lightning_sdk/api/agents_api.py +4 -4
  3. lightning_sdk/api/ai_hub_api.py +2 -2
  4. lightning_sdk/api/base_studio_api.py +3 -1
  5. lightning_sdk/api/deployment_api.py +2 -2
  6. lightning_sdk/api/job_api.py +9 -7
  7. lightning_sdk/api/license_api.py +2 -2
  8. lightning_sdk/api/mmt_api.py +5 -5
  9. lightning_sdk/api/pipeline_api.py +4 -4
  10. lightning_sdk/api/studio_api.py +33 -33
  11. lightning_sdk/api/teamspace_api.py +38 -26
  12. lightning_sdk/api/user_api.py +2 -2
  13. lightning_sdk/api/utils.py +17 -24
  14. lightning_sdk/cli/entrypoint.py +16 -12
  15. lightning_sdk/lightning_cloud/login.py +1 -1
  16. lightning_sdk/lightning_cloud/openapi/__init__.py +204 -195
  17. lightning_sdk/lightning_cloud/openapi/api/agent_service_api.py +28 -28
  18. lightning_sdk/lightning_cloud/openapi/api/assistants_service_api.py +108 -108
  19. lightning_sdk/lightning_cloud/openapi/api/billing_service_api.py +69 -57
  20. lightning_sdk/lightning_cloud/openapi/api/blog_posts_service_api.py +4 -4
  21. lightning_sdk/lightning_cloud/openapi/api/cloud_space_environment_template_service_api.py +14 -14
  22. lightning_sdk/lightning_cloud/openapi/api/cloud_space_service_api.py +331 -168
  23. lightning_sdk/lightning_cloud/openapi/api/cloudy_service_api.py +4 -4
  24. lightning_sdk/lightning_cloud/openapi/api/cluster_service_api.py +58 -58
  25. lightning_sdk/lightning_cloud/openapi/api/data_connection_service_api.py +24 -24
  26. lightning_sdk/lightning_cloud/openapi/api/dataset_service_api.py +8 -8
  27. lightning_sdk/lightning_cloud/openapi/api/deployment_templates_service_api.py +8 -8
  28. lightning_sdk/lightning_cloud/openapi/api/endpoint_service_api.py +8 -8
  29. lightning_sdk/lightning_cloud/openapi/api/experiments_service_api.py +8 -8
  30. lightning_sdk/lightning_cloud/openapi/api/file_system_service_api.py +16 -16
  31. lightning_sdk/lightning_cloud/openapi/api/incidents_service_api.py +18 -18
  32. lightning_sdk/lightning_cloud/openapi/api/jobs_service_api.py +514 -254
  33. lightning_sdk/lightning_cloud/openapi/api/k8_s_cluster_service_api.py +67 -59
  34. lightning_sdk/lightning_cloud/openapi/api/lightningapp_instance_service_api.py +16 -16
  35. lightning_sdk/lightning_cloud/openapi/api/lightningapp_v2_service_api.py +6 -6
  36. lightning_sdk/lightning_cloud/openapi/api/lightningwork_service_api.py +16 -16
  37. lightning_sdk/lightning_cloud/openapi/api/lit_dataset_service_api.py +42 -42
  38. lightning_sdk/lightning_cloud/openapi/api/lit_logger_service_api.py +28 -28
  39. lightning_sdk/lightning_cloud/openapi/api/lit_page_service_api.py +4 -4
  40. lightning_sdk/lightning_cloud/openapi/api/lit_registry_service_api.py +8 -8
  41. lightning_sdk/lightning_cloud/openapi/api/models_store_api.py +42 -42
  42. lightning_sdk/lightning_cloud/openapi/api/organizations_service_api.py +34 -34
  43. lightning_sdk/lightning_cloud/openapi/api/pipeline_templates_service_api.py +4 -4
  44. lightning_sdk/lightning_cloud/openapi/api/pipelines_service_api.py +38 -38
  45. lightning_sdk/lightning_cloud/openapi/api/product_license_service_api.py +4 -4
  46. lightning_sdk/lightning_cloud/openapi/api/profiler_service_api.py +12 -12
  47. lightning_sdk/lightning_cloud/openapi/api/projects_service_api.py +32 -32
  48. lightning_sdk/lightning_cloud/openapi/api/quest_service_api.py +8 -8
  49. lightning_sdk/lightning_cloud/openapi/api/schedules_service_api.py +48 -48
  50. lightning_sdk/lightning_cloud/openapi/api/secret_service_api.py +12 -12
  51. lightning_sdk/lightning_cloud/openapi/api/slurm_jobs_user_service_api.py +16 -16
  52. lightning_sdk/lightning_cloud/openapi/api/snowflake_service_api.py +16 -16
  53. lightning_sdk/lightning_cloud/openapi/api/storage_service_api.py +40 -40
  54. lightning_sdk/lightning_cloud/openapi/api/studio_jobs_service_api.py +8 -8
  55. lightning_sdk/lightning_cloud/openapi/api/user_service_api.py +20 -20
  56. lightning_sdk/lightning_cloud/openapi/api/volume_service_api.py +4 -4
  57. lightning_sdk/lightning_cloud/openapi/models/__init__.py +204 -181
  58. lightning_sdk/lightning_cloud/openapi/models/agent_service_agent_complete_part_body.py +97 -0
  59. lightning_sdk/lightning_cloud/openapi/models/{multipartuploads_upload_id_body.py → agent_service_agent_upload_part_body.py} +10 -10
  60. lightning_sdk/lightning_cloud/openapi/models/{id_multipartuploads_body.py → agent_service_create_agent_multipart_upload_body.py} +14 -14
  61. lightning_sdk/lightning_cloud/openapi/models/{jobs_id_body.py → agent_service_update_agent_job_body.py} +30 -30
  62. lightning_sdk/lightning_cloud/openapi/models/{id_artifacts_body.py → agent_service_upload_agent_job_artifact_body.py} +10 -10
  63. lightning_sdk/lightning_cloud/openapi/models/{id_output_body.py → agent_service_upload_agent_job_output_body.py} +18 -18
  64. lightning_sdk/lightning_cloud/openapi/models/{id_contactowner_body.py → assistants_service_contact_assistant_owner_body.py} +14 -14
  65. lightning_sdk/lightning_cloud/openapi/models/{project_id_agents_body.py → assistants_service_create_assistant_body.py} +74 -74
  66. lightning_sdk/lightning_cloud/openapi/models/{project_id_agentmanagedendpoints_body.py → assistants_service_create_assistant_managed_endpoint_body.py} +14 -14
  67. lightning_sdk/lightning_cloud/openapi/models/{message_id_actions_body.py → assistants_service_create_conversation_message_action_body.py} +28 -26
  68. lightning_sdk/lightning_cloud/openapi/models/{models_model_id_body.py → assistants_service_create_model_metrics_body.py} +26 -26
  69. lightning_sdk/lightning_cloud/openapi/models/{assistant_id_conversations_body.py → assistants_service_start_conversation_body.py} +74 -74
  70. lightning_sdk/lightning_cloud/openapi/models/{agents_id_body.py → assistants_service_update_assistant_body.py} +102 -102
  71. lightning_sdk/lightning_cloud/openapi/models/{agentmanagedendpoints_id_body.py → assistants_service_update_assistant_managed_endpoint_body.py} +42 -42
  72. lightning_sdk/lightning_cloud/openapi/models/{models_id_body.py → assistants_service_update_assistant_managed_endpoint_model_body.py} +10 -10
  73. lightning_sdk/lightning_cloud/openapi/models/assistants_service_update_conversation_body.py +149 -0
  74. lightning_sdk/lightning_cloud/openapi/models/{conversations_id_body1.py → assistants_service_update_conversation_like_body.py} +10 -10
  75. lightning_sdk/lightning_cloud/openapi/models/{id_content_body.py → assistants_service_update_conversation_message_content_body.py} +10 -10
  76. lightning_sdk/lightning_cloud/openapi/models/{messages_id_body.py → assistants_service_update_conversation_message_like_body.py} +10 -10
  77. lightning_sdk/lightning_cloud/openapi/models/assistants_service_validate_assistant_status_body.py +97 -0
  78. lightning_sdk/lightning_cloud/openapi/models/assistants_service_validate_managed_model_body.py +97 -0
  79. lightning_sdk/lightning_cloud/openapi/models/{user_id_upgradetrigger_body.py → billing_service_create_billing_upgrade_trigger_record_body.py} +22 -22
  80. lightning_sdk/lightning_cloud/openapi/models/{billing_checkout_body.py → billing_service_create_org_checkout_session_body.py} +18 -18
  81. lightning_sdk/lightning_cloud/openapi/models/{billing_transfer_body.py → billing_service_transfer_org_balance_body.py} +14 -14
  82. lightning_sdk/lightning_cloud/openapi/models/{billing_transfer_body1.py → billing_service_transfer_project_balance_body.py} +18 -18
  83. lightning_sdk/lightning_cloud/openapi/models/{blogposts_id_body.py → blog_posts_service_update_blog_post_body.py} +38 -38
  84. lightning_sdk/lightning_cloud/openapi/models/{update.py → cloud_space_environment_template_service_update_cloud_space_environment_template_body.py} +58 -58
  85. lightning_sdk/lightning_cloud/openapi/models/{apps_id_body1.py → cloud_space_service_create_cloud_space_app_instance_body.py} +34 -34
  86. lightning_sdk/lightning_cloud/openapi/models/{project_id_cloudspaces_body.py → cloud_space_service_create_cloud_space_body.py} +78 -78
  87. lightning_sdk/lightning_cloud/openapi/models/{cloudspace_id_metric_body.py → cloud_space_service_create_cloud_space_instance_metric_body.py} +22 -22
  88. lightning_sdk/lightning_cloud/openapi/models/{cloud_space_id_versions_body.py → cloud_space_service_create_cloud_space_version_body.py} +54 -54
  89. lightning_sdk/lightning_cloud/openapi/models/{cloud_space_id_versionpublications_body.py → cloud_space_service_create_cloud_space_version_publication_body.py} +18 -18
  90. lightning_sdk/lightning_cloud/openapi/models/{cloudspace_id_runs_body.py → cloud_space_service_create_lightning_run_body.py} +86 -86
  91. lightning_sdk/lightning_cloud/openapi/models/{id_get_body.py → cloud_space_service_create_lightning_run_instance_body.py} +58 -58
  92. lightning_sdk/lightning_cloud/openapi/models/{id_engage_body1.py → cloud_space_service_engage_cloud_space_body.py} +14 -14
  93. lightning_sdk/lightning_cloud/openapi/models/{id_execute_body1.py → cloud_space_service_execute_command_in_cloud_space_body.py} +18 -18
  94. lightning_sdk/lightning_cloud/openapi/models/{id_execute_body.py → cloud_space_service_execute_in_cloud_space_session_body.py} +10 -10
  95. lightning_sdk/lightning_cloud/openapi/models/{id_fork_body.py → cloud_space_service_fork_cloud_space_app_instance_body.py} +14 -14
  96. lightning_sdk/lightning_cloud/openapi/models/{id_fork_body1.py → cloud_space_service_fork_cloud_space_body.py} +22 -22
  97. lightning_sdk/lightning_cloud/openapi/models/cloud_space_service_keep_alive_cloud_space_instance_body.py +97 -0
  98. lightning_sdk/lightning_cloud/openapi/models/{cluster_id_proxies_body.py → cloud_space_service_publish_cloud_space_body.py} +10 -10
  99. lightning_sdk/lightning_cloud/openapi/models/{id_index_body1.py → cloud_space_service_refresh_cloud_space_index_body.py} +10 -10
  100. lightning_sdk/lightning_cloud/openapi/models/{cloudspace_id_systemmetrics_body.py → cloud_space_service_report_cloud_space_instance_system_metrics_body.py} +14 -14
  101. lightning_sdk/lightning_cloud/openapi/models/cloud_space_service_request_cloud_space_access_body.py +97 -0
  102. lightning_sdk/lightning_cloud/openapi/models/{id_start_body.py → cloud_space_service_start_cloud_space_instance_body.py} +14 -14
  103. lightning_sdk/lightning_cloud/openapi/models/{id_transfer_body.py → cloud_space_service_transfer_cloud_space_body.py} +18 -18
  104. lightning_sdk/lightning_cloud/openapi/models/{apps_id_body.py → cloud_space_service_update_cloud_space_app_body.py} +86 -86
  105. lightning_sdk/lightning_cloud/openapi/models/{cloudspaces_id_body.py → cloud_space_service_update_cloud_space_body.py} +114 -114
  106. lightning_sdk/lightning_cloud/openapi/models/{id_collaborate_body.py → cloud_space_service_update_cloud_space_collab_body.py} +18 -18
  107. lightning_sdk/lightning_cloud/openapi/models/{conversations_id_body.py → cloud_space_service_update_cloud_space_ide_body.py} +21 -21
  108. lightning_sdk/lightning_cloud/openapi/models/{id_index_body.py → cloud_space_service_update_cloud_space_index_body.py} +18 -18
  109. lightning_sdk/lightning_cloud/openapi/models/{id_codeconfig_body.py → cloud_space_service_update_cloud_space_instance_config_body.py} +22 -22
  110. lightning_sdk/lightning_cloud/openapi/models/{id_publications_body.py → cloud_space_service_update_cloud_space_publication_body.py} +14 -14
  111. lightning_sdk/lightning_cloud/openapi/models/{id_sleepconfig_body.py → cloud_space_service_update_cloud_space_sleep_config_body.py} +18 -18
  112. lightning_sdk/lightning_cloud/openapi/models/{versions_id_body.py → cloud_space_service_update_cloud_space_version_body.py} +46 -46
  113. lightning_sdk/lightning_cloud/openapi/models/{cloud_space_id_versionpublications_body1.py → cloud_space_service_update_cloud_space_version_publication_body.py} +18 -18
  114. lightning_sdk/lightning_cloud/openapi/models/{dataset_id_visibility_body.py → cloud_space_service_update_cloud_space_visibility_body.py} +14 -14
  115. lightning_sdk/lightning_cloud/openapi/models/{user_user_id_body.py → cloudy_service_update_user_cloudy_settings_body.py} +22 -22
  116. lightning_sdk/lightning_cloud/openapi/models/{cluster_id_capacityreservations_body.py → cluster_service_create_cluster_capacity_reservation_body.py} +42 -42
  117. lightning_sdk/lightning_cloud/openapi/models/{id_publications_body1.py → cluster_service_create_cluster_proxy_body.py} +10 -10
  118. lightning_sdk/lightning_cloud/openapi/models/{cluster_id_usagerestrictions_body.py → cluster_service_create_cluster_usage_restriction_body.py} +22 -22
  119. lightning_sdk/lightning_cloud/openapi/models/{create_machine_request_represents_the_request_to_create_a_machine.py → cluster_service_create_machine_body.py} +62 -62
  120. lightning_sdk/lightning_cloud/openapi/models/{project_id_clusters_body.py → cluster_service_create_project_cluster_body.py} +14 -14
  121. lightning_sdk/lightning_cloud/openapi/models/{server_id_alerts_body.py → cluster_service_create_server_alert_body.py} +22 -22
  122. lightning_sdk/lightning_cloud/openapi/models/cluster_service_interrupt_server_body.py +97 -0
  123. lightning_sdk/lightning_cloud/openapi/models/{cluster_id_capacityblock_body.py → cluster_service_purchase_capacity_block_body.py} +30 -30
  124. lightning_sdk/lightning_cloud/openapi/models/{servers_server_id_body.py → cluster_service_server_check_in_body.py} +10 -10
  125. lightning_sdk/lightning_cloud/openapi/models/cluster_service_sleep_server_body.py +97 -0
  126. lightning_sdk/lightning_cloud/openapi/models/{clusters_id_body.py → cluster_service_update_cluster_body.py} +18 -18
  127. lightning_sdk/lightning_cloud/openapi/models/{usagerestrictions_id_body.py → cluster_service_update_cluster_usage_restriction_body.py} +22 -22
  128. lightning_sdk/lightning_cloud/openapi/models/{clusters_id_body1.py → cluster_service_update_project_cluster_body.py} +14 -14
  129. lightning_sdk/lightning_cloud/openapi/models/{create.py → data_connection_service_create_data_connection_body.py} +82 -82
  130. lightning_sdk/lightning_cloud/openapi/models/{id_index_body2.py → data_connection_service_refresh_data_connection_index_body.py} +10 -10
  131. lightning_sdk/lightning_cloud/openapi/models/{setup.py → data_connection_service_setup_data_connection_body.py} +14 -14
  132. lightning_sdk/lightning_cloud/openapi/models/{update1.py → data_connection_service_update_data_connection_body.py} +50 -50
  133. lightning_sdk/lightning_cloud/openapi/models/{validate.py → data_connection_service_validate_data_connection_body.py} +42 -42
  134. lightning_sdk/lightning_cloud/openapi/models/{project_id_datasets_body.py → dataset_service_create_dataset_body.py} +70 -70
  135. lightning_sdk/lightning_cloud/openapi/models/{datasets_id_body.py → dataset_service_update_dataset_body.py} +22 -22
  136. lightning_sdk/lightning_cloud/openapi/models/{id_engage_body.py → deployment_templates_service_engage_deployment_template_body.py} +10 -10
  137. lightning_sdk/lightning_cloud/openapi/models/{deploymenttemplates_id_body.py → deployment_templates_service_update_deployment_template_body.py} +70 -70
  138. lightning_sdk/lightning_cloud/openapi/models/{project_id_endpoints_body.py → endpoint_service_create_endpoint_body.py} +30 -30
  139. lightning_sdk/lightning_cloud/openapi/models/{endpoints_id_body.py → endpoint_service_update_endpoint_body.py} +62 -62
  140. lightning_sdk/lightning_cloud/openapi/models/{experiment_name_variant_name_body.py → experiments_service_assign_variant_body.py} +10 -10
  141. lightning_sdk/lightning_cloud/openapi/models/{incident_id_messages_body.py → incidents_service_create_incident_message_body.py} +10 -10
  142. lightning_sdk/lightning_cloud/openapi/models/{incidents_id_body.py → incidents_service_update_incident_body.py} +34 -34
  143. lightning_sdk/lightning_cloud/openapi/models/{messages_message_id_body.py → incidents_service_update_incident_message_body.py} +10 -10
  144. lightning_sdk/lightning_cloud/openapi/models/{deployment_id_alertingpolicies_body1.py → jobs_service_create_deployment_alerting_policy_body.py} +42 -42
  145. lightning_sdk/lightning_cloud/openapi/models/{create_deployment_request_defines_a_spec_for_the_job_that_allows_for_autoscaling_jobs.py → jobs_service_create_deployment_body.py} +70 -70
  146. lightning_sdk/lightning_cloud/openapi/models/{project_id_jobs_body.py → jobs_service_create_job_body.py} +18 -18
  147. lightning_sdk/lightning_cloud/openapi/models/{project_id_multimachinejobs_body.py → jobs_service_create_multi_machine_job_body.py} +26 -26
  148. lightning_sdk/lightning_cloud/openapi/models/{job_id_reportroutingtelemetry_body.py → jobs_service_report_deployment_routing_telemetry_body.py} +10 -10
  149. lightning_sdk/lightning_cloud/openapi/models/{job_id_systemmetrics_body.py → jobs_service_report_job_system_metrics_body.py} +10 -10
  150. lightning_sdk/lightning_cloud/openapi/models/{id_reportlogsactivity_body.py → jobs_service_report_logs_activity_body.py} +10 -10
  151. lightning_sdk/lightning_cloud/openapi/models/{id_reportrestarttimings_body.py → jobs_service_report_restart_timings_body.py} +10 -10
  152. lightning_sdk/lightning_cloud/openapi/models/jobs_service_restore_deployment_release_body.py +97 -0
  153. lightning_sdk/lightning_cloud/openapi/models/{alertingevents_id_body.py → jobs_service_update_deployment_alerting_event_body.py} +54 -54
  154. lightning_sdk/lightning_cloud/openapi/models/jobs_service_update_deployment_alerting_events_bulk_body.py +123 -0
  155. lightning_sdk/lightning_cloud/openapi/models/{deployment_id_alertingpolicies_body.py → jobs_service_update_deployment_alerting_policy_body.py} +46 -46
  156. lightning_sdk/lightning_cloud/openapi/models/{deployments_id_body.py → jobs_service_update_deployment_body.py} +128 -126
  157. lightning_sdk/lightning_cloud/openapi/models/{id_visibility_body1.py → jobs_service_update_deployment_visibility_body.py} +10 -10
  158. lightning_sdk/lightning_cloud/openapi/models/{jobs_id_body1.py → jobs_service_update_job_body.py} +14 -14
  159. lightning_sdk/lightning_cloud/openapi/models/{id_index_body3.py → jobs_service_update_job_index_body.py} +18 -18
  160. lightning_sdk/lightning_cloud/openapi/models/{id_visibility_body.py → jobs_service_update_job_visibility_body.py} +10 -10
  161. lightning_sdk/lightning_cloud/openapi/models/{multimachinejobs_id_body.py → jobs_service_update_multi_machine_job_body.py} +10 -10
  162. lightning_sdk/lightning_cloud/openapi/models/{deployments_deployment_id_body.py → jobs_service_update_org_deployment_visibility_body.py} +14 -14
  163. lightning_sdk/lightning_cloud/openapi/models/{kubernetestemplates_id_body.py → k8_s_cluster_service_create_kubernetes_template_body.py} +22 -22
  164. lightning_sdk/lightning_cloud/openapi/models/{id_render_body.py → k8_s_cluster_service_render_kubernetes_template_body.py} +10 -10
  165. lightning_sdk/lightning_cloud/openapi/models/{cluster_id_metrics_body.py → k8_s_cluster_service_report_k8_s_cluster_metrics_body.py} +42 -42
  166. lightning_sdk/lightning_cloud/openapi/models/{cluster_id_kubernetestemplates_body.py → k8_s_cluster_service_update_kubernetes_template_body.py} +22 -22
  167. lightning_sdk/lightning_cloud/openapi/models/{appinstances_id_body.py → lightningapp_instance_service_update_lightningapp_instance_body.py} +18 -18
  168. lightning_sdk/lightning_cloud/openapi/models/{id_release_body.py → lightningapp_instance_service_update_lightningapp_instance_release_body.py} +10 -10
  169. lightning_sdk/lightning_cloud/openapi/models/{id_uploads_body.py → lightningapp_instance_service_upload_lightningapp_instance_artifact_body.py} +10 -10
  170. lightning_sdk/lightning_cloud/openapi/models/{project_id_getapp_body.py → lightningapp_v2_service_create_lightningapp_from_gallery_body.py} +30 -30
  171. lightning_sdk/lightning_cloud/openapi/models/{app_id_works_body.py → lightningwork_service_batch_update_lightningworks_body.py} +14 -14
  172. lightning_sdk/lightning_cloud/openapi/models/{spec_lightningapp_instance_id_works_body.py → lightningwork_service_create_lightningwork_body.py} +24 -24
  173. lightning_sdk/lightning_cloud/openapi/models/lightningwork_service_create_lightningwork_body_spec.py +487 -0
  174. lightning_sdk/lightning_cloud/openapi/models/{works_id_body.py → lightningwork_service_update_lightningwork_body.py} +16 -16
  175. lightning_sdk/lightning_cloud/openapi/models/{upload_id_complete_body1.py → lit_dataset_service_complete_lit_dataset_multi_part_upload_body.py} +14 -14
  176. lightning_sdk/lightning_cloud/openapi/models/lit_dataset_service_complete_lit_dataset_upload_body.py +97 -0
  177. lightning_sdk/lightning_cloud/openapi/models/{project_id_models_body.py → lit_dataset_service_create_lit_dataset_body.py} +26 -26
  178. lightning_sdk/lightning_cloud/openapi/models/{version_uploads_body1.py → lit_dataset_service_create_lit_dataset_multi_part_upload_body.py} +10 -10
  179. lightning_sdk/lightning_cloud/openapi/models/{dataset_id_versions_body.py → lit_dataset_service_create_lit_dataset_version_body.py} +16 -14
  180. lightning_sdk/lightning_cloud/openapi/models/{upload_id_parts_body.py → lit_dataset_service_get_lit_dataset_file_upload_urls_body.py} +14 -14
  181. lightning_sdk/lightning_cloud/openapi/models/{version_default_body.py → lit_dataset_service_set_lit_dataset_default_version_body.py} +14 -14
  182. lightning_sdk/lightning_cloud/openapi/models/{litdatasets_dataset_id_body.py → lit_dataset_service_update_lit_dataset_body.py} +14 -14
  183. lightning_sdk/lightning_cloud/openapi/models/{versions_version_body.py → lit_dataset_service_update_lit_dataset_version_body.py} +10 -10
  184. lightning_sdk/lightning_cloud/openapi/models/{id_visibility_body2.py → lit_dataset_service_update_lit_dataset_visibility_body.py} +14 -14
  185. lightning_sdk/lightning_cloud/openapi/models/{loggermetrics_id_body.py → lit_logger_service_append_logger_metrics_body.py} +10 -10
  186. lightning_sdk/lightning_cloud/openapi/models/{metrics_stream_id_loggerartifacts_body.py → lit_logger_service_create_logger_artifact_body.py} +10 -10
  187. lightning_sdk/lightning_cloud/openapi/models/{metricsstream_create_body.py → lit_logger_service_create_metrics_stream_body.py} +62 -62
  188. lightning_sdk/lightning_cloud/openapi/models/{metricsstream_delete_body.py → lit_logger_service_delete_metrics_stream_body.py} +10 -10
  189. lightning_sdk/lightning_cloud/openapi/models/{metricsstream_id_body.py → lit_logger_service_update_metrics_stream_body.py} +22 -22
  190. lightning_sdk/lightning_cloud/openapi/models/{model_id_visibility_body.py → lit_logger_service_update_metrics_stream_visibility_body.py} +14 -14
  191. lightning_sdk/lightning_cloud/openapi/models/{litloggermetrics_id_body.py → lit_logger_service_update_shared_metrics_stream_body.py} +18 -18
  192. lightning_sdk/lightning_cloud/openapi/models/{litpages_id_body.py → lit_page_service_update_lit_page_body.py} +42 -42
  193. lightning_sdk/lightning_cloud/openapi/models/{project_id_litregistry_body.py → lit_registry_service_create_lit_project_registry_body.py} +12 -12
  194. lightning_sdk/lightning_cloud/openapi/models/{litregistry_lit_repo_name_body.py → lit_registry_service_update_lit_repository_metadata_body.py} +10 -10
  195. lightning_sdk/lightning_cloud/openapi/models/models_store_complete_model_upload_body.py +97 -0
  196. lightning_sdk/lightning_cloud/openapi/models/{upload_id_complete_body.py → models_store_complete_multi_part_upload_body.py} +14 -14
  197. lightning_sdk/lightning_cloud/openapi/models/{project_id_litdatasets_body.py → models_store_create_model_body.py} +26 -26
  198. lightning_sdk/lightning_cloud/openapi/models/{model_id_versions_body.py → models_store_create_model_version_body.py} +20 -18
  199. lightning_sdk/lightning_cloud/openapi/models/{version_uploads_body.py → models_store_create_multi_part_upload_body.py} +10 -10
  200. lightning_sdk/lightning_cloud/openapi/models/{upload_id_parts_body1.py → models_store_get_model_file_upload_urls_body.py} +14 -14
  201. lightning_sdk/lightning_cloud/openapi/models/{version_default_body1.py → models_store_set_model_default_version_body.py} +14 -14
  202. lightning_sdk/lightning_cloud/openapi/models/{models_model_id_body1.py → models_store_update_model_body.py} +14 -14
  203. lightning_sdk/lightning_cloud/openapi/models/{versions_version_body1.py → models_store_update_model_version_body.py} +10 -10
  204. lightning_sdk/lightning_cloud/openapi/models/{cloudspace_id_visibility_body.py → models_store_update_model_visibility_body.py} +14 -14
  205. lightning_sdk/lightning_cloud/openapi/models/{approveautojoindomain_domain_body.py → organizations_service_approve_auto_join_domain_body.py} +10 -10
  206. lightning_sdk/lightning_cloud/openapi/models/organizations_service_auto_join_org_body.py +97 -0
  207. lightning_sdk/lightning_cloud/openapi/models/{org_id_memberships_body.py → organizations_service_create_org_membership_body.py} +22 -22
  208. lightning_sdk/lightning_cloud/openapi/models/{user_id_membershiprolebindings_body1.py → organizations_service_create_org_membership_role_binding_body.py} +10 -10
  209. lightning_sdk/lightning_cloud/openapi/models/{org_id_roles_body.py → organizations_service_create_org_role_body.py} +18 -18
  210. lightning_sdk/lightning_cloud/openapi/models/{orgs_id_body.py → organizations_service_update_organization_body.py} +162 -162
  211. lightning_sdk/lightning_cloud/openapi/models/{credits_autoreplenish_body.py → organizations_service_update_organization_credits_auto_replenish_body.py} +18 -18
  212. lightning_sdk/lightning_cloud/openapi/models/{validateautojoindomain_domain_body.py → organizations_service_validate_auto_join_domain_body.py} +10 -10
  213. lightning_sdk/lightning_cloud/openapi/models/{pipelinetemplates_id_body.py → pipeline_templates_service_update_pipeline_template_body.py} +42 -42
  214. lightning_sdk/lightning_cloud/openapi/models/{pipelines_id_body1.py → pipelines_service_create_child_pipeline_body.py} +10 -10
  215. lightning_sdk/lightning_cloud/openapi/models/{project_id_pipelines_body.py → pipelines_service_create_pipeline_body.py} +30 -30
  216. lightning_sdk/lightning_cloud/openapi/models/{pipelines_id_body.py → pipelines_service_update_pipeline_body.py} +74 -74
  217. lightning_sdk/lightning_cloud/openapi/models/{license_key_validate_body.py → product_license_service_validate_license_body.py} +10 -10
  218. lightning_sdk/lightning_cloud/openapi/models/{profiler_captures_body.py → profiler_service_create_profiler_capture_body.py} +34 -34
  219. lightning_sdk/lightning_cloud/openapi/models/{captures_id_body.py → profiler_service_update_profiler_capture_body.py} +10 -10
  220. lightning_sdk/lightning_cloud/openapi/models/{profiler_enabled_body.py → profiler_service_update_profiler_enabled_body.py} +14 -14
  221. lightning_sdk/lightning_cloud/openapi/models/{project_id_projectclustersbindings_body.py → projects_service_create_project_cluster_binding_body.py} +14 -14
  222. lightning_sdk/lightning_cloud/openapi/models/{project_id_memberships_body.py → projects_service_create_project_membership_body.py} +22 -22
  223. lightning_sdk/lightning_cloud/openapi/models/{user_id_membershiprolebindings_body.py → projects_service_create_project_membership_role_binding_body.py} +10 -10
  224. lightning_sdk/lightning_cloud/openapi/models/{projects_project_id_body.py → projects_service_create_project_role_body.py} +18 -18
  225. lightning_sdk/lightning_cloud/openapi/models/{project_id_invite_body.py → projects_service_invite_project_membership_body.py} +18 -18
  226. lightning_sdk/lightning_cloud/openapi/models/{projects_id_body.py → projects_service_update_project_body.py} +110 -110
  227. lightning_sdk/lightning_cloud/openapi/models/{project_tab_management_messages.py → projects_service_update_project_tab_order_body.py} +10 -10
  228. lightning_sdk/lightning_cloud/openapi/models/protobuf_any.py +7 -58
  229. lightning_sdk/lightning_cloud/openapi/models/quest_service_complete_quest_body.py +97 -0
  230. lightning_sdk/lightning_cloud/openapi/models/quest_service_start_quest_body.py +97 -0
  231. lightning_sdk/lightning_cloud/openapi/models/{project_id_schedules_body.py → schedules_service_create_schedule_body.py} +42 -42
  232. lightning_sdk/lightning_cloud/openapi/models/schedules_service_create_schedule_run_body.py +97 -0
  233. lightning_sdk/lightning_cloud/openapi/models/{schedules_id_body.py → schedules_service_update_schedule_body.py} +70 -70
  234. lightning_sdk/lightning_cloud/openapi/models/{project_id_secrets_body.py → secret_service_create_secret_body.py} +18 -18
  235. lightning_sdk/lightning_cloud/openapi/models/{secrets_id_body1.py → secret_service_update_secret_body.py} +10 -10
  236. lightning_sdk/lightning_cloud/openapi/models/{secrets_id_body.py → secret_service_update_user_secret_body.py} +10 -10
  237. lightning_sdk/lightning_cloud/openapi/models/{cluster_id_slurmusers_body.py → slurm_jobs_user_service_create_slurm_cluster_user_body.py} +22 -22
  238. lightning_sdk/lightning_cloud/openapi/models/{slurm_jobs_body.py → slurm_jobs_user_service_create_user_slurm_job_body.py} +54 -54
  239. lightning_sdk/lightning_cloud/openapi/models/{jobs_id_body2.py → slurm_jobs_user_service_update_user_slurm_job_body.py} +10 -10
  240. lightning_sdk/lightning_cloud/openapi/models/{id_action_body.py → slurm_jobs_user_service_user_slurm_job_action_body.py} +10 -10
  241. lightning_sdk/lightning_cloud/openapi/models/{project_id_snowflake_body.py → snowflake_service_create_snowflake_connection_body.py} +10 -10
  242. lightning_sdk/lightning_cloud/openapi/models/{query_query_id_body.py → snowflake_service_execute_snowflake_query_body.py} +18 -18
  243. lightning_sdk/lightning_cloud/openapi/models/{snowflake_export_body.py → snowflake_service_export_snowflake_query_body.py} +38 -38
  244. lightning_sdk/lightning_cloud/openapi/models/{snowflake_query_body.py → snowflake_service_update_snowflake_query_body.py} +18 -18
  245. lightning_sdk/lightning_cloud/openapi/models/storage_service_abort_storage_transfer_body.py +97 -0
  246. lightning_sdk/lightning_cloud/openapi/models/{storage_complete_body.py → storage_service_complete_upload_project_artifact_body.py} +30 -30
  247. lightning_sdk/lightning_cloud/openapi/models/{project_id_storagetransfers_body.py → storage_service_create_storage_transfer_body.py} +18 -18
  248. lightning_sdk/lightning_cloud/openapi/models/storage_service_pause_storage_transfer_body.py +97 -0
  249. lightning_sdk/lightning_cloud/openapi/models/storage_service_resume_storage_transfer_body.py +97 -0
  250. lightning_sdk/lightning_cloud/openapi/models/{project_id_storage_body.py → storage_service_upload_project_artifact_body.py} +22 -22
  251. lightning_sdk/lightning_cloud/openapi/models/{uploads_upload_id_body1.py → storage_service_upload_project_artifact_parts_body.py} +22 -22
  252. lightning_sdk/lightning_cloud/openapi/models/{uploads_upload_id_body.py → storage_service_upload_temporary_artifact_parts_body.py} +14 -14
  253. lightning_sdk/lightning_cloud/openapi/models/{storagetransfers_validate_body.py → storage_service_validate_storage_transfer_body.py} +14 -14
  254. lightning_sdk/lightning_cloud/openapi/models/{studioapp_jobs_body.py → studio_jobs_service_create_studio_job_body.py} +34 -34
  255. lightning_sdk/lightning_cloud/openapi/models/{jobs_id_body3.py → studio_jobs_service_update_studio_job_body.py} +14 -14
  256. lightning_sdk/lightning_cloud/openapi/models/{user_id_affiliatelinks_body.py → user_service_create_affiliate_link_body.py} +30 -30
  257. lightning_sdk/lightning_cloud/openapi/models/{affiliatelinks_id_body.py → user_service_update_affiliate_link_body.py} +14 -14
  258. lightning_sdk/lightning_cloud/openapi/models/{credits_autoreplenish_body1.py → user_service_update_user_credits_auto_replenish_body.py} +18 -18
  259. lightning_sdk/lightning_cloud/openapi/models/user_service_upload_settings_body.py +97 -0
  260. lightning_sdk/lightning_cloud/openapi/models/v1_autoscaling_target_metric.py +2 -0
  261. lightning_sdk/lightning_cloud/openapi/models/v1_aws_data_connection.py +2 -0
  262. lightning_sdk/lightning_cloud/openapi/models/v1_billing_subscription.py +2 -0
  263. lightning_sdk/lightning_cloud/openapi/models/v1_conversation.py +27 -1
  264. lightning_sdk/lightning_cloud/openapi/models/v1_conversation_response_chunk.py +2 -0
  265. lightning_sdk/lightning_cloud/openapi/models/v1_create_checkout_session_request.py +4 -0
  266. lightning_sdk/lightning_cloud/openapi/models/v1_data_connection.py +6 -0
  267. lightning_sdk/lightning_cloud/openapi/models/v1_deployment.py +2 -0
  268. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_alerting_policy_type.py +2 -0
  269. lightning_sdk/lightning_cloud/openapi/models/v1_deployment_event.py +2 -0
  270. lightning_sdk/lightning_cloud/openapi/models/v1_experiment.py +2 -0
  271. lightning_sdk/lightning_cloud/openapi/models/v1_external_cluster_spec.py +27 -1
  272. lightning_sdk/lightning_cloud/openapi/models/v1_generic_job.py +79 -1
  273. lightning_sdk/lightning_cloud/openapi/models/v1_generic_job_spec.py +253 -0
  274. lightning_sdk/lightning_cloud/openapi/models/v1_get_user_response.py +2 -0
  275. lightning_sdk/lightning_cloud/openapi/models/v1_group_pod_metrics.py +6 -0
  276. lightning_sdk/lightning_cloud/openapi/models/v1_health_check_http_get.py +79 -1
  277. lightning_sdk/lightning_cloud/openapi/models/v1_incident.py +2 -0
  278. lightning_sdk/lightning_cloud/openapi/models/v1_job.py +6 -0
  279. lightning_sdk/lightning_cloud/openapi/models/v1_job_health_check_config.py +55 -3
  280. lightning_sdk/lightning_cloud/openapi/models/v1_job_spec.py +59 -1
  281. lightning_sdk/lightning_cloud/openapi/models/v1_kubernetes_direct_v1.py +53 -1
  282. lightning_sdk/lightning_cloud/openapi/models/v1_lit_dataset_version_archive.py +2 -0
  283. lightning_sdk/lightning_cloud/openapi/models/v1_machine.py +79 -1
  284. lightning_sdk/lightning_cloud/openapi/models/v1_machine_direct_v1.py +27 -1
  285. lightning_sdk/lightning_cloud/openapi/models/v1_message_action.py +2 -0
  286. lightning_sdk/lightning_cloud/openapi/models/v1_model_version_archive.py +2 -0
  287. lightning_sdk/lightning_cloud/openapi/models/v1_multi_machine_job_event.py +2 -0
  288. lightning_sdk/lightning_cloud/openapi/models/v1_pipeline_step_status.py +2 -0
  289. lightning_sdk/lightning_cloud/openapi/models/v1_server_alert_severity.py +1 -0
  290. lightning_sdk/lightning_cloud/openapi/models/v1_slurm_v1.py +4 -0
  291. lightning_sdk/lightning_cloud/openapi/models/v1_slurm_v1_status.py +2 -0
  292. lightning_sdk/lightning_cloud/openapi/models/v1_update_deployment_alerting_events_bulk_response.py +97 -0
  293. lightning_sdk/lightning_cloud/openapi/models/v1_update_user_request.py +2 -0
  294. lightning_sdk/lightning_cloud/openapi/models/v1_usage_report.py +6 -0
  295. lightning_sdk/lightning_cloud/openapi/models/v1_user_features.py +183 -79
  296. lightning_sdk/lightning_cloud/openapi/models/v1_user_requested_compute_config.py +2 -0
  297. lightning_sdk/lightning_cloud/openapi/models/v1_user_requested_flow_compute_config.py +2 -0
  298. lightning_sdk/lightning_cloud/openapi/models/v1_volume.py +53 -1
  299. lightning_sdk/lightning_cloud/openapi/models/{volumes_id_body.py → volume_service_update_volume_body.py} +10 -10
  300. lightning_sdk/lightning_cloud/utils/data_connection.py +14 -8
  301. lightning_sdk/lightning_cloud/utils/dataset.py +3 -5
  302. lightning_sdk/plugin.py +2 -2
  303. lightning_sdk/teamspace.py +0 -1
  304. {lightning_sdk-2025.12.5.dist-info → lightning_sdk-2025.12.9.dist-info}/METADATA +1 -1
  305. {lightning_sdk-2025.12.5.dist-info → lightning_sdk-2025.12.9.dist-info}/RECORD +309 -286
  306. {lightning_sdk-2025.12.5.dist-info → lightning_sdk-2025.12.9.dist-info}/LICENSE +0 -0
  307. {lightning_sdk-2025.12.5.dist-info → lightning_sdk-2025.12.9.dist-info}/WHEEL +0 -0
  308. {lightning_sdk-2025.12.5.dist-info → lightning_sdk-2025.12.9.dist-info}/entry_points.txt +0 -0
  309. {lightning_sdk-2025.12.5.dist-info → lightning_sdk-2025.12.9.dist-info}/top_level.txt +0 -0
@@ -28,7 +28,7 @@ if TYPE_CHECKING:
28
28
  from datetime import datetime
29
29
  from lightning_sdk.lightning_cloud.openapi.models import *
30
30
 
31
- class DeploymenttemplatesIdBody(object):
31
+ class DeploymentTemplatesServiceUpdateDeploymentTemplateBody(object):
32
32
  """NOTE: This class is auto generated by the swagger code generator program.
33
33
 
34
34
  Do not edit the class manually.
@@ -79,7 +79,7 @@ class DeploymenttemplatesIdBody(object):
79
79
  }
80
80
 
81
81
  def __init__(self, about_page_content: 'str' =None, categories: 'list[str]' =None, cloud_space_id: 'str' =None, description: 'str' =None, featured: 'bool' =None, image_url: 'str' =None, metrics: 'V1DeploymentMetrics' =None, name: 'str' =None, org_id: 'str' =None, parameter_spec: 'V1ParameterizationSpec' =None, pricing: 'V1ApiPricingSpec' =None, spec: 'str' =None, tags: 'list[V1ResourceTag]' =None, thumbnail: 'str' =None, thumbnail_file_type: 'str' =None, visibility: 'V1DeploymentTemplateType' =None): # noqa: E501
82
- """DeploymenttemplatesIdBody - a model defined in Swagger""" # noqa: E501
82
+ """DeploymentTemplatesServiceUpdateDeploymentTemplateBody - a model defined in Swagger""" # noqa: E501
83
83
  self._about_page_content = None
84
84
  self._categories = None
85
85
  self._cloud_space_id = None
@@ -132,20 +132,20 @@ class DeploymenttemplatesIdBody(object):
132
132
 
133
133
  @property
134
134
  def about_page_content(self) -> 'str':
135
- """Gets the about_page_content of this DeploymenttemplatesIdBody. # noqa: E501
135
+ """Gets the about_page_content of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody. # noqa: E501
136
136
 
137
137
 
138
- :return: The about_page_content of this DeploymenttemplatesIdBody. # noqa: E501
138
+ :return: The about_page_content of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody. # noqa: E501
139
139
  :rtype: str
140
140
  """
141
141
  return self._about_page_content
142
142
 
143
143
  @about_page_content.setter
144
144
  def about_page_content(self, about_page_content: 'str'):
145
- """Sets the about_page_content of this DeploymenttemplatesIdBody.
145
+ """Sets the about_page_content of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody.
146
146
 
147
147
 
148
- :param about_page_content: The about_page_content of this DeploymenttemplatesIdBody. # noqa: E501
148
+ :param about_page_content: The about_page_content of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody. # noqa: E501
149
149
  :type: str
150
150
  """
151
151
 
@@ -153,20 +153,20 @@ class DeploymenttemplatesIdBody(object):
153
153
 
154
154
  @property
155
155
  def categories(self) -> 'list[str]':
156
- """Gets the categories of this DeploymenttemplatesIdBody. # noqa: E501
156
+ """Gets the categories of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody. # noqa: E501
157
157
 
158
158
 
159
- :return: The categories of this DeploymenttemplatesIdBody. # noqa: E501
159
+ :return: The categories of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody. # noqa: E501
160
160
  :rtype: list[str]
161
161
  """
162
162
  return self._categories
163
163
 
164
164
  @categories.setter
165
165
  def categories(self, categories: 'list[str]'):
166
- """Sets the categories of this DeploymenttemplatesIdBody.
166
+ """Sets the categories of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody.
167
167
 
168
168
 
169
- :param categories: The categories of this DeploymenttemplatesIdBody. # noqa: E501
169
+ :param categories: The categories of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody. # noqa: E501
170
170
  :type: list[str]
171
171
  """
172
172
 
@@ -174,20 +174,20 @@ class DeploymenttemplatesIdBody(object):
174
174
 
175
175
  @property
176
176
  def cloud_space_id(self) -> 'str':
177
- """Gets the cloud_space_id of this DeploymenttemplatesIdBody. # noqa: E501
177
+ """Gets the cloud_space_id of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody. # noqa: E501
178
178
 
179
179
 
180
- :return: The cloud_space_id of this DeploymenttemplatesIdBody. # noqa: E501
180
+ :return: The cloud_space_id of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody. # noqa: E501
181
181
  :rtype: str
182
182
  """
183
183
  return self._cloud_space_id
184
184
 
185
185
  @cloud_space_id.setter
186
186
  def cloud_space_id(self, cloud_space_id: 'str'):
187
- """Sets the cloud_space_id of this DeploymenttemplatesIdBody.
187
+ """Sets the cloud_space_id of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody.
188
188
 
189
189
 
190
- :param cloud_space_id: The cloud_space_id of this DeploymenttemplatesIdBody. # noqa: E501
190
+ :param cloud_space_id: The cloud_space_id of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody. # noqa: E501
191
191
  :type: str
192
192
  """
193
193
 
@@ -195,20 +195,20 @@ class DeploymenttemplatesIdBody(object):
195
195
 
196
196
  @property
197
197
  def description(self) -> 'str':
198
- """Gets the description of this DeploymenttemplatesIdBody. # noqa: E501
198
+ """Gets the description of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody. # noqa: E501
199
199
 
200
200
 
201
- :return: The description of this DeploymenttemplatesIdBody. # noqa: E501
201
+ :return: The description of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody. # noqa: E501
202
202
  :rtype: str
203
203
  """
204
204
  return self._description
205
205
 
206
206
  @description.setter
207
207
  def description(self, description: 'str'):
208
- """Sets the description of this DeploymenttemplatesIdBody.
208
+ """Sets the description of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody.
209
209
 
210
210
 
211
- :param description: The description of this DeploymenttemplatesIdBody. # noqa: E501
211
+ :param description: The description of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody. # noqa: E501
212
212
  :type: str
213
213
  """
214
214
 
@@ -216,20 +216,20 @@ class DeploymenttemplatesIdBody(object):
216
216
 
217
217
  @property
218
218
  def featured(self) -> 'bool':
219
- """Gets the featured of this DeploymenttemplatesIdBody. # noqa: E501
219
+ """Gets the featured of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody. # noqa: E501
220
220
 
221
221
 
222
- :return: The featured of this DeploymenttemplatesIdBody. # noqa: E501
222
+ :return: The featured of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody. # noqa: E501
223
223
  :rtype: bool
224
224
  """
225
225
  return self._featured
226
226
 
227
227
  @featured.setter
228
228
  def featured(self, featured: 'bool'):
229
- """Sets the featured of this DeploymenttemplatesIdBody.
229
+ """Sets the featured of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody.
230
230
 
231
231
 
232
- :param featured: The featured of this DeploymenttemplatesIdBody. # noqa: E501
232
+ :param featured: The featured of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody. # noqa: E501
233
233
  :type: bool
234
234
  """
235
235
 
@@ -237,20 +237,20 @@ class DeploymenttemplatesIdBody(object):
237
237
 
238
238
  @property
239
239
  def image_url(self) -> 'str':
240
- """Gets the image_url of this DeploymenttemplatesIdBody. # noqa: E501
240
+ """Gets the image_url of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody. # noqa: E501
241
241
 
242
242
 
243
- :return: The image_url of this DeploymenttemplatesIdBody. # noqa: E501
243
+ :return: The image_url of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody. # noqa: E501
244
244
  :rtype: str
245
245
  """
246
246
  return self._image_url
247
247
 
248
248
  @image_url.setter
249
249
  def image_url(self, image_url: 'str'):
250
- """Sets the image_url of this DeploymenttemplatesIdBody.
250
+ """Sets the image_url of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody.
251
251
 
252
252
 
253
- :param image_url: The image_url of this DeploymenttemplatesIdBody. # noqa: E501
253
+ :param image_url: The image_url of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody. # noqa: E501
254
254
  :type: str
255
255
  """
256
256
 
@@ -258,20 +258,20 @@ class DeploymenttemplatesIdBody(object):
258
258
 
259
259
  @property
260
260
  def metrics(self) -> 'V1DeploymentMetrics':
261
- """Gets the metrics of this DeploymenttemplatesIdBody. # noqa: E501
261
+ """Gets the metrics of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody. # noqa: E501
262
262
 
263
263
 
264
- :return: The metrics of this DeploymenttemplatesIdBody. # noqa: E501
264
+ :return: The metrics of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody. # noqa: E501
265
265
  :rtype: V1DeploymentMetrics
266
266
  """
267
267
  return self._metrics
268
268
 
269
269
  @metrics.setter
270
270
  def metrics(self, metrics: 'V1DeploymentMetrics'):
271
- """Sets the metrics of this DeploymenttemplatesIdBody.
271
+ """Sets the metrics of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody.
272
272
 
273
273
 
274
- :param metrics: The metrics of this DeploymenttemplatesIdBody. # noqa: E501
274
+ :param metrics: The metrics of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody. # noqa: E501
275
275
  :type: V1DeploymentMetrics
276
276
  """
277
277
 
@@ -279,20 +279,20 @@ class DeploymenttemplatesIdBody(object):
279
279
 
280
280
  @property
281
281
  def name(self) -> 'str':
282
- """Gets the name of this DeploymenttemplatesIdBody. # noqa: E501
282
+ """Gets the name of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody. # noqa: E501
283
283
 
284
284
 
285
- :return: The name of this DeploymenttemplatesIdBody. # noqa: E501
285
+ :return: The name of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody. # noqa: E501
286
286
  :rtype: str
287
287
  """
288
288
  return self._name
289
289
 
290
290
  @name.setter
291
291
  def name(self, name: 'str'):
292
- """Sets the name of this DeploymenttemplatesIdBody.
292
+ """Sets the name of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody.
293
293
 
294
294
 
295
- :param name: The name of this DeploymenttemplatesIdBody. # noqa: E501
295
+ :param name: The name of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody. # noqa: E501
296
296
  :type: str
297
297
  """
298
298
 
@@ -300,20 +300,20 @@ class DeploymenttemplatesIdBody(object):
300
300
 
301
301
  @property
302
302
  def org_id(self) -> 'str':
303
- """Gets the org_id of this DeploymenttemplatesIdBody. # noqa: E501
303
+ """Gets the org_id of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody. # noqa: E501
304
304
 
305
305
 
306
- :return: The org_id of this DeploymenttemplatesIdBody. # noqa: E501
306
+ :return: The org_id of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody. # noqa: E501
307
307
  :rtype: str
308
308
  """
309
309
  return self._org_id
310
310
 
311
311
  @org_id.setter
312
312
  def org_id(self, org_id: 'str'):
313
- """Sets the org_id of this DeploymenttemplatesIdBody.
313
+ """Sets the org_id of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody.
314
314
 
315
315
 
316
- :param org_id: The org_id of this DeploymenttemplatesIdBody. # noqa: E501
316
+ :param org_id: The org_id of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody. # noqa: E501
317
317
  :type: str
318
318
  """
319
319
 
@@ -321,20 +321,20 @@ class DeploymenttemplatesIdBody(object):
321
321
 
322
322
  @property
323
323
  def parameter_spec(self) -> 'V1ParameterizationSpec':
324
- """Gets the parameter_spec of this DeploymenttemplatesIdBody. # noqa: E501
324
+ """Gets the parameter_spec of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody. # noqa: E501
325
325
 
326
326
 
327
- :return: The parameter_spec of this DeploymenttemplatesIdBody. # noqa: E501
327
+ :return: The parameter_spec of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody. # noqa: E501
328
328
  :rtype: V1ParameterizationSpec
329
329
  """
330
330
  return self._parameter_spec
331
331
 
332
332
  @parameter_spec.setter
333
333
  def parameter_spec(self, parameter_spec: 'V1ParameterizationSpec'):
334
- """Sets the parameter_spec of this DeploymenttemplatesIdBody.
334
+ """Sets the parameter_spec of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody.
335
335
 
336
336
 
337
- :param parameter_spec: The parameter_spec of this DeploymenttemplatesIdBody. # noqa: E501
337
+ :param parameter_spec: The parameter_spec of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody. # noqa: E501
338
338
  :type: V1ParameterizationSpec
339
339
  """
340
340
 
@@ -342,20 +342,20 @@ class DeploymenttemplatesIdBody(object):
342
342
 
343
343
  @property
344
344
  def pricing(self) -> 'V1ApiPricingSpec':
345
- """Gets the pricing of this DeploymenttemplatesIdBody. # noqa: E501
345
+ """Gets the pricing of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody. # noqa: E501
346
346
 
347
347
 
348
- :return: The pricing of this DeploymenttemplatesIdBody. # noqa: E501
348
+ :return: The pricing of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody. # noqa: E501
349
349
  :rtype: V1ApiPricingSpec
350
350
  """
351
351
  return self._pricing
352
352
 
353
353
  @pricing.setter
354
354
  def pricing(self, pricing: 'V1ApiPricingSpec'):
355
- """Sets the pricing of this DeploymenttemplatesIdBody.
355
+ """Sets the pricing of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody.
356
356
 
357
357
 
358
- :param pricing: The pricing of this DeploymenttemplatesIdBody. # noqa: E501
358
+ :param pricing: The pricing of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody. # noqa: E501
359
359
  :type: V1ApiPricingSpec
360
360
  """
361
361
 
@@ -363,20 +363,20 @@ class DeploymenttemplatesIdBody(object):
363
363
 
364
364
  @property
365
365
  def spec(self) -> 'str':
366
- """Gets the spec of this DeploymenttemplatesIdBody. # noqa: E501
366
+ """Gets the spec of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody. # noqa: E501
367
367
 
368
368
 
369
- :return: The spec of this DeploymenttemplatesIdBody. # noqa: E501
369
+ :return: The spec of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody. # noqa: E501
370
370
  :rtype: str
371
371
  """
372
372
  return self._spec
373
373
 
374
374
  @spec.setter
375
375
  def spec(self, spec: 'str'):
376
- """Sets the spec of this DeploymenttemplatesIdBody.
376
+ """Sets the spec of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody.
377
377
 
378
378
 
379
- :param spec: The spec of this DeploymenttemplatesIdBody. # noqa: E501
379
+ :param spec: The spec of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody. # noqa: E501
380
380
  :type: str
381
381
  """
382
382
 
@@ -384,20 +384,20 @@ class DeploymenttemplatesIdBody(object):
384
384
 
385
385
  @property
386
386
  def tags(self) -> 'list[V1ResourceTag]':
387
- """Gets the tags of this DeploymenttemplatesIdBody. # noqa: E501
387
+ """Gets the tags of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody. # noqa: E501
388
388
 
389
389
 
390
- :return: The tags of this DeploymenttemplatesIdBody. # noqa: E501
390
+ :return: The tags of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody. # noqa: E501
391
391
  :rtype: list[V1ResourceTag]
392
392
  """
393
393
  return self._tags
394
394
 
395
395
  @tags.setter
396
396
  def tags(self, tags: 'list[V1ResourceTag]'):
397
- """Sets the tags of this DeploymenttemplatesIdBody.
397
+ """Sets the tags of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody.
398
398
 
399
399
 
400
- :param tags: The tags of this DeploymenttemplatesIdBody. # noqa: E501
400
+ :param tags: The tags of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody. # noqa: E501
401
401
  :type: list[V1ResourceTag]
402
402
  """
403
403
 
@@ -405,20 +405,20 @@ class DeploymenttemplatesIdBody(object):
405
405
 
406
406
  @property
407
407
  def thumbnail(self) -> 'str':
408
- """Gets the thumbnail of this DeploymenttemplatesIdBody. # noqa: E501
408
+ """Gets the thumbnail of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody. # noqa: E501
409
409
 
410
410
 
411
- :return: The thumbnail of this DeploymenttemplatesIdBody. # noqa: E501
411
+ :return: The thumbnail of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody. # noqa: E501
412
412
  :rtype: str
413
413
  """
414
414
  return self._thumbnail
415
415
 
416
416
  @thumbnail.setter
417
417
  def thumbnail(self, thumbnail: 'str'):
418
- """Sets the thumbnail of this DeploymenttemplatesIdBody.
418
+ """Sets the thumbnail of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody.
419
419
 
420
420
 
421
- :param thumbnail: The thumbnail of this DeploymenttemplatesIdBody. # noqa: E501
421
+ :param thumbnail: The thumbnail of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody. # noqa: E501
422
422
  :type: str
423
423
  """
424
424
 
@@ -426,20 +426,20 @@ class DeploymenttemplatesIdBody(object):
426
426
 
427
427
  @property
428
428
  def thumbnail_file_type(self) -> 'str':
429
- """Gets the thumbnail_file_type of this DeploymenttemplatesIdBody. # noqa: E501
429
+ """Gets the thumbnail_file_type of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody. # noqa: E501
430
430
 
431
431
 
432
- :return: The thumbnail_file_type of this DeploymenttemplatesIdBody. # noqa: E501
432
+ :return: The thumbnail_file_type of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody. # noqa: E501
433
433
  :rtype: str
434
434
  """
435
435
  return self._thumbnail_file_type
436
436
 
437
437
  @thumbnail_file_type.setter
438
438
  def thumbnail_file_type(self, thumbnail_file_type: 'str'):
439
- """Sets the thumbnail_file_type of this DeploymenttemplatesIdBody.
439
+ """Sets the thumbnail_file_type of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody.
440
440
 
441
441
 
442
- :param thumbnail_file_type: The thumbnail_file_type of this DeploymenttemplatesIdBody. # noqa: E501
442
+ :param thumbnail_file_type: The thumbnail_file_type of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody. # noqa: E501
443
443
  :type: str
444
444
  """
445
445
 
@@ -447,20 +447,20 @@ class DeploymenttemplatesIdBody(object):
447
447
 
448
448
  @property
449
449
  def visibility(self) -> 'V1DeploymentTemplateType':
450
- """Gets the visibility of this DeploymenttemplatesIdBody. # noqa: E501
450
+ """Gets the visibility of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody. # noqa: E501
451
451
 
452
452
 
453
- :return: The visibility of this DeploymenttemplatesIdBody. # noqa: E501
453
+ :return: The visibility of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody. # noqa: E501
454
454
  :rtype: V1DeploymentTemplateType
455
455
  """
456
456
  return self._visibility
457
457
 
458
458
  @visibility.setter
459
459
  def visibility(self, visibility: 'V1DeploymentTemplateType'):
460
- """Sets the visibility of this DeploymenttemplatesIdBody.
460
+ """Sets the visibility of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody.
461
461
 
462
462
 
463
- :param visibility: The visibility of this DeploymenttemplatesIdBody. # noqa: E501
463
+ :param visibility: The visibility of this DeploymentTemplatesServiceUpdateDeploymentTemplateBody. # noqa: E501
464
464
  :type: V1DeploymentTemplateType
465
465
  """
466
466
 
@@ -487,7 +487,7 @@ class DeploymenttemplatesIdBody(object):
487
487
  ))
488
488
  else:
489
489
  result[attr] = value
490
- if issubclass(DeploymenttemplatesIdBody, dict):
490
+ if issubclass(DeploymentTemplatesServiceUpdateDeploymentTemplateBody, dict):
491
491
  for key, value in self.items():
492
492
  result[key] = value
493
493
 
@@ -501,13 +501,13 @@ class DeploymenttemplatesIdBody(object):
501
501
  """For `print` and `pprint`"""
502
502
  return self.to_str()
503
503
 
504
- def __eq__(self, other: 'DeploymenttemplatesIdBody') -> bool:
504
+ def __eq__(self, other: 'DeploymentTemplatesServiceUpdateDeploymentTemplateBody') -> bool:
505
505
  """Returns true if both objects are equal"""
506
- if not isinstance(other, DeploymenttemplatesIdBody):
506
+ if not isinstance(other, DeploymentTemplatesServiceUpdateDeploymentTemplateBody):
507
507
  return False
508
508
 
509
509
  return self.__dict__ == other.__dict__
510
510
 
511
- def __ne__(self, other: 'DeploymenttemplatesIdBody') -> bool:
511
+ def __ne__(self, other: 'DeploymentTemplatesServiceUpdateDeploymentTemplateBody') -> bool:
512
512
  """Returns true if both objects are not equal"""
513
513
  return not self == other
@@ -28,7 +28,7 @@ if TYPE_CHECKING:
28
28
  from datetime import datetime
29
29
  from lightning_sdk.lightning_cloud.openapi.models import *
30
30
 
31
- class ProjectIdEndpointsBody(object):
31
+ class EndpointServiceCreateEndpointBody(object):
32
32
  """NOTE: This class is auto generated by the swagger code generator program.
33
33
 
34
34
  Do not edit the class manually.
@@ -59,7 +59,7 @@ class ProjectIdEndpointsBody(object):
59
59
  }
60
60
 
61
61
  def __init__(self, auth: 'V1EndpointAuth' =None, cloudspace: 'V1UpstreamCloudSpace' =None, custom_domain: 'str' =None, name: 'str' =None, openai: 'V1UpstreamOpenAI' =None, ports: 'list[str]' =None): # noqa: E501
62
- """ProjectIdEndpointsBody - a model defined in Swagger""" # noqa: E501
62
+ """EndpointServiceCreateEndpointBody - a model defined in Swagger""" # noqa: E501
63
63
  self._auth = None
64
64
  self._cloudspace = None
65
65
  self._custom_domain = None
@@ -82,20 +82,20 @@ class ProjectIdEndpointsBody(object):
82
82
 
83
83
  @property
84
84
  def auth(self) -> 'V1EndpointAuth':
85
- """Gets the auth of this ProjectIdEndpointsBody. # noqa: E501
85
+ """Gets the auth of this EndpointServiceCreateEndpointBody. # noqa: E501
86
86
 
87
87
 
88
- :return: The auth of this ProjectIdEndpointsBody. # noqa: E501
88
+ :return: The auth of this EndpointServiceCreateEndpointBody. # noqa: E501
89
89
  :rtype: V1EndpointAuth
90
90
  """
91
91
  return self._auth
92
92
 
93
93
  @auth.setter
94
94
  def auth(self, auth: 'V1EndpointAuth'):
95
- """Sets the auth of this ProjectIdEndpointsBody.
95
+ """Sets the auth of this EndpointServiceCreateEndpointBody.
96
96
 
97
97
 
98
- :param auth: The auth of this ProjectIdEndpointsBody. # noqa: E501
98
+ :param auth: The auth of this EndpointServiceCreateEndpointBody. # noqa: E501
99
99
  :type: V1EndpointAuth
100
100
  """
101
101
 
@@ -103,20 +103,20 @@ class ProjectIdEndpointsBody(object):
103
103
 
104
104
  @property
105
105
  def cloudspace(self) -> 'V1UpstreamCloudSpace':
106
- """Gets the cloudspace of this ProjectIdEndpointsBody. # noqa: E501
106
+ """Gets the cloudspace of this EndpointServiceCreateEndpointBody. # noqa: E501
107
107
 
108
108
 
109
- :return: The cloudspace of this ProjectIdEndpointsBody. # noqa: E501
109
+ :return: The cloudspace of this EndpointServiceCreateEndpointBody. # noqa: E501
110
110
  :rtype: V1UpstreamCloudSpace
111
111
  """
112
112
  return self._cloudspace
113
113
 
114
114
  @cloudspace.setter
115
115
  def cloudspace(self, cloudspace: 'V1UpstreamCloudSpace'):
116
- """Sets the cloudspace of this ProjectIdEndpointsBody.
116
+ """Sets the cloudspace of this EndpointServiceCreateEndpointBody.
117
117
 
118
118
 
119
- :param cloudspace: The cloudspace of this ProjectIdEndpointsBody. # noqa: E501
119
+ :param cloudspace: The cloudspace of this EndpointServiceCreateEndpointBody. # noqa: E501
120
120
  :type: V1UpstreamCloudSpace
121
121
  """
122
122
 
@@ -124,20 +124,20 @@ class ProjectIdEndpointsBody(object):
124
124
 
125
125
  @property
126
126
  def custom_domain(self) -> 'str':
127
- """Gets the custom_domain of this ProjectIdEndpointsBody. # noqa: E501
127
+ """Gets the custom_domain of this EndpointServiceCreateEndpointBody. # noqa: E501
128
128
 
129
129
 
130
- :return: The custom_domain of this ProjectIdEndpointsBody. # noqa: E501
130
+ :return: The custom_domain of this EndpointServiceCreateEndpointBody. # noqa: E501
131
131
  :rtype: str
132
132
  """
133
133
  return self._custom_domain
134
134
 
135
135
  @custom_domain.setter
136
136
  def custom_domain(self, custom_domain: 'str'):
137
- """Sets the custom_domain of this ProjectIdEndpointsBody.
137
+ """Sets the custom_domain of this EndpointServiceCreateEndpointBody.
138
138
 
139
139
 
140
- :param custom_domain: The custom_domain of this ProjectIdEndpointsBody. # noqa: E501
140
+ :param custom_domain: The custom_domain of this EndpointServiceCreateEndpointBody. # noqa: E501
141
141
  :type: str
142
142
  """
143
143
 
@@ -145,20 +145,20 @@ class ProjectIdEndpointsBody(object):
145
145
 
146
146
  @property
147
147
  def name(self) -> 'str':
148
- """Gets the name of this ProjectIdEndpointsBody. # noqa: E501
148
+ """Gets the name of this EndpointServiceCreateEndpointBody. # noqa: E501
149
149
 
150
150
 
151
- :return: The name of this ProjectIdEndpointsBody. # noqa: E501
151
+ :return: The name of this EndpointServiceCreateEndpointBody. # noqa: E501
152
152
  :rtype: str
153
153
  """
154
154
  return self._name
155
155
 
156
156
  @name.setter
157
157
  def name(self, name: 'str'):
158
- """Sets the name of this ProjectIdEndpointsBody.
158
+ """Sets the name of this EndpointServiceCreateEndpointBody.
159
159
 
160
160
 
161
- :param name: The name of this ProjectIdEndpointsBody. # noqa: E501
161
+ :param name: The name of this EndpointServiceCreateEndpointBody. # noqa: E501
162
162
  :type: str
163
163
  """
164
164
 
@@ -166,20 +166,20 @@ class ProjectIdEndpointsBody(object):
166
166
 
167
167
  @property
168
168
  def openai(self) -> 'V1UpstreamOpenAI':
169
- """Gets the openai of this ProjectIdEndpointsBody. # noqa: E501
169
+ """Gets the openai of this EndpointServiceCreateEndpointBody. # noqa: E501
170
170
 
171
171
 
172
- :return: The openai of this ProjectIdEndpointsBody. # noqa: E501
172
+ :return: The openai of this EndpointServiceCreateEndpointBody. # noqa: E501
173
173
  :rtype: V1UpstreamOpenAI
174
174
  """
175
175
  return self._openai
176
176
 
177
177
  @openai.setter
178
178
  def openai(self, openai: 'V1UpstreamOpenAI'):
179
- """Sets the openai of this ProjectIdEndpointsBody.
179
+ """Sets the openai of this EndpointServiceCreateEndpointBody.
180
180
 
181
181
 
182
- :param openai: The openai of this ProjectIdEndpointsBody. # noqa: E501
182
+ :param openai: The openai of this EndpointServiceCreateEndpointBody. # noqa: E501
183
183
  :type: V1UpstreamOpenAI
184
184
  """
185
185
 
@@ -187,20 +187,20 @@ class ProjectIdEndpointsBody(object):
187
187
 
188
188
  @property
189
189
  def ports(self) -> 'list[str]':
190
- """Gets the ports of this ProjectIdEndpointsBody. # noqa: E501
190
+ """Gets the ports of this EndpointServiceCreateEndpointBody. # noqa: E501
191
191
 
192
192
 
193
- :return: The ports of this ProjectIdEndpointsBody. # noqa: E501
193
+ :return: The ports of this EndpointServiceCreateEndpointBody. # noqa: E501
194
194
  :rtype: list[str]
195
195
  """
196
196
  return self._ports
197
197
 
198
198
  @ports.setter
199
199
  def ports(self, ports: 'list[str]'):
200
- """Sets the ports of this ProjectIdEndpointsBody.
200
+ """Sets the ports of this EndpointServiceCreateEndpointBody.
201
201
 
202
202
 
203
- :param ports: The ports of this ProjectIdEndpointsBody. # noqa: E501
203
+ :param ports: The ports of this EndpointServiceCreateEndpointBody. # noqa: E501
204
204
  :type: list[str]
205
205
  """
206
206
 
@@ -227,7 +227,7 @@ class ProjectIdEndpointsBody(object):
227
227
  ))
228
228
  else:
229
229
  result[attr] = value
230
- if issubclass(ProjectIdEndpointsBody, dict):
230
+ if issubclass(EndpointServiceCreateEndpointBody, dict):
231
231
  for key, value in self.items():
232
232
  result[key] = value
233
233
 
@@ -241,13 +241,13 @@ class ProjectIdEndpointsBody(object):
241
241
  """For `print` and `pprint`"""
242
242
  return self.to_str()
243
243
 
244
- def __eq__(self, other: 'ProjectIdEndpointsBody') -> bool:
244
+ def __eq__(self, other: 'EndpointServiceCreateEndpointBody') -> bool:
245
245
  """Returns true if both objects are equal"""
246
- if not isinstance(other, ProjectIdEndpointsBody):
246
+ if not isinstance(other, EndpointServiceCreateEndpointBody):
247
247
  return False
248
248
 
249
249
  return self.__dict__ == other.__dict__
250
250
 
251
- def __ne__(self, other: 'ProjectIdEndpointsBody') -> bool:
251
+ def __ne__(self, other: 'EndpointServiceCreateEndpointBody') -> bool:
252
252
  """Returns true if both objects are not equal"""
253
253
  return not self == other