lightning-sdk 0.1.49__py3-none-any.whl → 2025.11.5__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.
- lightning_sdk/__init__.py +19 -9
- lightning_sdk/__version__.py +3 -0
- lightning_sdk/agents.py +2 -1
- lightning_sdk/ai_hub.py +43 -38
- lightning_sdk/api/__init__.py +2 -0
- lightning_sdk/api/ai_hub_api.py +49 -6
- lightning_sdk/api/base_studio_api.py +90 -0
- lightning_sdk/api/cloud_account_api.py +225 -0
- lightning_sdk/api/deployment_api.py +133 -27
- lightning_sdk/api/job_api.py +147 -34
- lightning_sdk/api/license_api.py +37 -0
- lightning_sdk/api/lit_container_api.py +231 -19
- lightning_sdk/api/llm_api.py +306 -0
- lightning_sdk/api/mmt_api.py +112 -28
- lightning_sdk/api/pipeline_api.py +120 -0
- lightning_sdk/api/studio_api.py +440 -89
- lightning_sdk/api/teamspace_api.py +269 -31
- lightning_sdk/api/user_api.py +56 -2
- lightning_sdk/api/utils.py +185 -52
- lightning_sdk/base_studio.py +123 -0
- lightning_sdk/cli/__init__.py +1 -0
- lightning_sdk/cli/base_studio/__init__.py +10 -0
- lightning_sdk/cli/base_studio/list.py +43 -0
- lightning_sdk/cli/config/__init__.py +14 -0
- lightning_sdk/cli/config/get.py +57 -0
- lightning_sdk/cli/config/set.py +92 -0
- lightning_sdk/cli/config/show.py +9 -0
- lightning_sdk/cli/entrypoint.py +98 -56
- lightning_sdk/cli/groups.py +56 -0
- lightning_sdk/cli/job/__init__.py +7 -0
- lightning_sdk/cli/legacy/__init__.py +0 -0
- lightning_sdk/cli/legacy/ai_hub.py +65 -0
- lightning_sdk/cli/legacy/clusters_menu.py +49 -0
- lightning_sdk/cli/legacy/configure.py +129 -0
- lightning_sdk/cli/legacy/connect.py +34 -0
- lightning_sdk/cli/legacy/create.py +115 -0
- lightning_sdk/cli/legacy/delete.py +131 -0
- lightning_sdk/cli/legacy/deploy/__init__.py +0 -0
- lightning_sdk/cli/legacy/deploy/_auth.py +196 -0
- lightning_sdk/cli/legacy/deploy/devbox.py +163 -0
- lightning_sdk/cli/legacy/deploy/serve.py +452 -0
- lightning_sdk/cli/legacy/docker_cli.py +22 -0
- lightning_sdk/cli/legacy/download.py +322 -0
- lightning_sdk/cli/legacy/entrypoint.py +110 -0
- lightning_sdk/cli/legacy/generate.py +52 -0
- lightning_sdk/cli/legacy/inspection.py +45 -0
- lightning_sdk/cli/{job_and_mmt_action.py → legacy/job_and_mmt_action.py} +6 -6
- lightning_sdk/cli/{jobs_menu.py → legacy/jobs_menu.py} +3 -2
- lightning_sdk/cli/legacy/list.py +326 -0
- lightning_sdk/cli/{mmts_menu.py → legacy/mmts_menu.py} +3 -2
- lightning_sdk/cli/legacy/open.py +81 -0
- lightning_sdk/cli/legacy/run.py +443 -0
- lightning_sdk/cli/legacy/start.py +107 -0
- lightning_sdk/cli/legacy/stop.py +107 -0
- lightning_sdk/cli/{studios_menu.py → legacy/studios_menu.py} +24 -1
- lightning_sdk/cli/legacy/switch.py +63 -0
- lightning_sdk/cli/{teamspace_menu.py → legacy/teamspace_menu.py} +12 -3
- lightning_sdk/cli/legacy/upload.py +382 -0
- lightning_sdk/cli/license/__init__.py +14 -0
- lightning_sdk/cli/license/get.py +15 -0
- lightning_sdk/cli/license/list.py +45 -0
- lightning_sdk/cli/license/set.py +13 -0
- lightning_sdk/cli/mmt/__init__.py +7 -0
- lightning_sdk/cli/studio/__init__.py +24 -0
- lightning_sdk/cli/studio/connect.py +139 -0
- lightning_sdk/cli/studio/create.py +96 -0
- lightning_sdk/cli/studio/delete.py +49 -0
- lightning_sdk/cli/studio/list.py +85 -0
- lightning_sdk/cli/studio/ssh.py +64 -0
- lightning_sdk/cli/studio/start.py +115 -0
- lightning_sdk/cli/studio/stop.py +45 -0
- lightning_sdk/cli/studio/switch.py +66 -0
- lightning_sdk/cli/utils/__init__.py +7 -0
- lightning_sdk/cli/utils/cloud_account_map.py +10 -0
- lightning_sdk/cli/utils/coloring.py +60 -0
- lightning_sdk/cli/utils/get_base_studio.py +24 -0
- lightning_sdk/cli/utils/handle_machine_and_gpus_args.py +69 -0
- lightning_sdk/cli/utils/logging.py +122 -0
- lightning_sdk/cli/utils/owner_selection.py +110 -0
- lightning_sdk/cli/utils/resolve.py +28 -0
- lightning_sdk/cli/utils/richt_print.py +35 -0
- lightning_sdk/cli/utils/save_to_config.py +27 -0
- lightning_sdk/cli/utils/ssh_connection.py +59 -0
- lightning_sdk/cli/utils/studio_selection.py +113 -0
- lightning_sdk/cli/utils/teamspace_selection.py +125 -0
- lightning_sdk/cli/vm/__init__.py +20 -0
- lightning_sdk/cli/vm/create.py +33 -0
- lightning_sdk/cli/vm/delete.py +25 -0
- lightning_sdk/cli/vm/list.py +30 -0
- lightning_sdk/cli/vm/ssh.py +31 -0
- lightning_sdk/cli/vm/start.py +60 -0
- lightning_sdk/cli/vm/stop.py +25 -0
- lightning_sdk/cli/vm/switch.py +38 -0
- lightning_sdk/constants.py +1 -0
- lightning_sdk/deployment/__init__.py +4 -0
- lightning_sdk/deployment/deployment.py +208 -28
- lightning_sdk/helpers.py +73 -34
- lightning_sdk/job/base.py +112 -12
- lightning_sdk/job/job.py +73 -44
- lightning_sdk/job/v1.py +28 -35
- lightning_sdk/job/v2.py +54 -17
- lightning_sdk/job/work.py +7 -3
- lightning_sdk/lightning_cloud/login.py +325 -18
- lightning_sdk/lightning_cloud/openapi/__init__.py +346 -26
- lightning_sdk/lightning_cloud/openapi/api/__init__.py +14 -0
- lightning_sdk/lightning_cloud/openapi/api/assistants_service_api.py +1801 -384
- lightning_sdk/lightning_cloud/openapi/api/auth_service_api.py +376 -0
- lightning_sdk/lightning_cloud/openapi/api/billing_service_api.py +414 -2
- lightning_sdk/lightning_cloud/openapi/api/blog_posts_service_api.py +533 -0
- lightning_sdk/lightning_cloud/openapi/api/cloud_space_environment_template_service_api.py +638 -0
- lightning_sdk/lightning_cloud/openapi/api/cloud_space_service_api.py +2563 -866
- lightning_sdk/lightning_cloud/openapi/api/cloudy_service_api.py +327 -0
- lightning_sdk/lightning_cloud/openapi/api/cluster_service_api.py +1720 -347
- lightning_sdk/lightning_cloud/openapi/api/data_connection_service_api.py +210 -4
- lightning_sdk/lightning_cloud/openapi/api/endpoint_service_api.py +126 -2119
- lightning_sdk/lightning_cloud/openapi/api/file_system_service_api.py +283 -0
- lightning_sdk/lightning_cloud/openapi/api/git_credentials_service_api.py +497 -0
- lightning_sdk/lightning_cloud/openapi/api/incidents_service_api.py +1058 -0
- lightning_sdk/lightning_cloud/openapi/api/jobs_service_api.py +2326 -492
- lightning_sdk/lightning_cloud/openapi/api/k8_s_cluster_service_api.py +2273 -0
- lightning_sdk/lightning_cloud/openapi/api/lit_dataset_service_api.py +1973 -0
- lightning_sdk/lightning_cloud/openapi/api/lit_logger_service_api.py +17 -5
- lightning_sdk/lightning_cloud/openapi/api/lit_registry_service_api.py +473 -5
- lightning_sdk/lightning_cloud/openapi/api/markets_service_api.py +145 -0
- lightning_sdk/lightning_cloud/openapi/api/models_store_api.py +24 -24
- lightning_sdk/lightning_cloud/openapi/api/organizations_service_api.py +105 -0
- lightning_sdk/lightning_cloud/openapi/api/pipeline_templates_service_api.py +339 -0
- lightning_sdk/lightning_cloud/openapi/api/pipelines_service_api.py +795 -0
- lightning_sdk/lightning_cloud/openapi/api/product_license_service_api.py +525 -0
- lightning_sdk/lightning_cloud/openapi/api/projects_service_api.py +106 -5
- lightning_sdk/lightning_cloud/openapi/api/schedules_service_api.py +924 -0
- lightning_sdk/lightning_cloud/openapi/api/sdk_command_history_service_api.py +141 -0
- lightning_sdk/lightning_cloud/openapi/api/slurm_jobs_user_service_api.py +202 -0
- lightning_sdk/lightning_cloud/openapi/api/storage_service_api.py +1508 -251
- lightning_sdk/lightning_cloud/openapi/api/user_service_api.py +121 -97
- lightning_sdk/lightning_cloud/openapi/api/volume_service_api.py +258 -0
- lightning_sdk/lightning_cloud/openapi/configuration.py +4 -20
- lightning_sdk/lightning_cloud/openapi/models/__init__.py +332 -26
- lightning_sdk/lightning_cloud/openapi/models/agentmanagedendpoints_id_body.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/agents_id_body.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/alertingevents_id_body.py +409 -0
- lightning_sdk/lightning_cloud/openapi/models/alerts_config_billing.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/alerts_config_studios.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/assistant_id_conversations_body.py +303 -17
- lightning_sdk/lightning_cloud/openapi/models/blogposts_id_body.py +305 -0
- lightning_sdk/lightning_cloud/openapi/models/cloudspace_id_systemmetrics_body.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/cloudspace_id_visibility_body.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/cloudspaces_id_body.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/cluster_id_capacityblock_body.py +15 -15
- lightning_sdk/lightning_cloud/openapi/models/cluster_id_capacityreservations_body.py +81 -3
- lightning_sdk/lightning_cloud/openapi/models/cluster_id_kubernetestemplates_body.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/cluster_id_metrics_body.py +305 -0
- lightning_sdk/lightning_cloud/openapi/models/cluster_id_slurmusers_body.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/cluster_id_usagerestrictions_body.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/conversations_id_body1.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/create.py +105 -1
- lightning_sdk/lightning_cloud/openapi/models/create_deployment_request_defines_a_spec_for_the_job_that_allows_for_autoscaling_jobs.py +131 -1
- lightning_sdk/lightning_cloud/openapi/models/create_machine_request_represents_the_request_to_create_a_machine.py +461 -0
- lightning_sdk/lightning_cloud/openapi/models/credits_autoreplenish_body.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/credits_autoreplenish_body1.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/dataset_id_versions_body.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/dataset_id_visibility_body.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/deployment_id_alertingpolicies_body.py +357 -0
- lightning_sdk/lightning_cloud/openapi/models/deployment_id_alertingpolicies_body1.py +331 -0
- lightning_sdk/lightning_cloud/openapi/models/deployments_id_body.py +315 -3
- lightning_sdk/lightning_cloud/openapi/models/endpoints_id_body.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/externalv1_cloud_space_instance_status.py +199 -69
- lightning_sdk/lightning_cloud/openapi/models/externalv1_cluster.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/externalv1_user_status.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/id_codeconfig_body.py +1 -53
- lightning_sdk/lightning_cloud/openapi/models/id_contactowner_body.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/id_fork_body1.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/id_render_body.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/id_reportrestarttimings_body.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/id_sleepconfig_body.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/id_transfer_body.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/id_visibility_body1.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/id_visibility_body2.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/incident_id_messages_body.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/incidents_id_body.py +279 -0
- lightning_sdk/lightning_cloud/openapi/models/{v1_list_service_executions_response.py → job_id_reportroutingtelemetry_body.py} +23 -23
- lightning_sdk/lightning_cloud/openapi/models/kubernetestemplates_id_body.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/license_key_validate_body.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/litdatasets_dataset_id_body.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/litregistry_lit_repo_name_body.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/message_id_actions_body.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/messages_id_body.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/messages_message_id_body.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/metricsstream_create_body.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/metricsstream_id_body.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/model_id_versions_body.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/model_id_visibility_body.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/models_id_body.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/models_model_id_body.py +109 -31
- lightning_sdk/lightning_cloud/openapi/models/models_model_id_body1.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/org_id_memberships_body.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/orgs_id_body.py +627 -3
- lightning_sdk/lightning_cloud/openapi/models/pipelines_id_body.py +539 -0
- lightning_sdk/lightning_cloud/openapi/models/pipelines_id_body1.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/pipelinetemplates_id_body.py +331 -0
- lightning_sdk/lightning_cloud/openapi/models/project_id_agents_body.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/project_id_cloudspaces_body.py +131 -1
- lightning_sdk/lightning_cloud/openapi/models/project_id_litdatasets_body.py +227 -0
- lightning_sdk/lightning_cloud/openapi/models/project_id_litregistry_body.py +2 -0
- lightning_sdk/lightning_cloud/openapi/models/project_id_pipelines_body.py +253 -0
- lightning_sdk/lightning_cloud/openapi/models/project_id_schedules_body.py +331 -0
- lightning_sdk/lightning_cloud/openapi/models/project_id_storage_body.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/project_id_storagetransfers_body.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/project_tab_management_messages.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/projects_id_body.py +523 -3
- lightning_sdk/lightning_cloud/openapi/models/{service_artifact_artifact_kind.py → protobuf_null_value.py} +7 -9
- lightning_sdk/lightning_cloud/openapi/models/schedules_id_body.py +513 -0
- lightning_sdk/lightning_cloud/openapi/models/server_id_alerts_body.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/setup.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/slurm_jobs_body.py +93 -15
- lightning_sdk/lightning_cloud/openapi/models/storage_complete_body.py +41 -15
- lightning_sdk/lightning_cloud/openapi/models/storagetransfers_validate_body.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/update.py +233 -129
- lightning_sdk/lightning_cloud/openapi/models/update1.py +383 -0
- lightning_sdk/lightning_cloud/openapi/models/upload_id_complete_body1.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/upload_id_parts_body1.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/uploads_upload_id_body.py +1 -27
- lightning_sdk/lightning_cloud/openapi/models/uploads_upload_id_body1.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/usagerestrictions_id_body.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/user_id_affiliatelinks_body.py +107 -3
- lightning_sdk/lightning_cloud/openapi/models/user_id_upgradetrigger_body.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/user_user_id_body.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_abort_storage_transfer_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_agent_job.py +188 -6
- lightning_sdk/lightning_cloud/openapi/models/v1_aggregated_pod_metrics.py +799 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_ai_pod_v1.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_alert_method.py +102 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_alerts_config.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_artifact.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_assistant.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_assistant_model_status.py +6 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_assistant_session_daily_aggregated.py +383 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_author.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_aws_direct_v1.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_billing_subscription.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_billing_tier.py +1 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_blog_post.py +435 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_cancel_running_cloud_space_instance_transfer_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_capacity_block_offering.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_check_cluster_name_availability_request.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_check_cluster_name_availability_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_provider.py +117 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space.py +313 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_artifact_event.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_artifact_event_type.py +103 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_cold_start_metrics.py +669 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_cold_start_metrics_stats.py +357 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_environment_config.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_environment_template.py +409 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_environment_template_config.py +331 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_environment_type.py +105 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_session.py +29 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_source_type.py +103 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_specialized_view.py +105 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_state.py +1 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_transfer_metadata.py +331 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_cloudflare_v1.py +227 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_cloudy_expert.py +279 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_cloudy_settings.py +227 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_cluster_accelerator.py +445 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_cluster_capacity_reservation.py +211 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_cluster_deletion_options.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_cluster_metrics.py +1527 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_cluster_security_options.py +209 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_cluster_spec.py +521 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_cluster_status.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_cluster_tagging_options.py +55 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_cluster_type.py +2 -0
- lightning_sdk/lightning_cloud/openapi/models/{v1_upload_service_execution_artifact_response.py → v1_cluster_upload.py} +34 -34
- lightning_sdk/lightning_cloud/openapi/models/v1_cluster_usage_restriction.py +227 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_complete_lit_dataset_multi_part_upload_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_complete_lit_dataset_upload_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_complete_running_cloud_space_instance_transfer_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/{id_complete_body.py → v1_complete_upload_temporary_artifact_request.py} +29 -29
- lightning_sdk/lightning_cloud/openapi/models/v1_contact_assistant_owner_reason.py +102 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_contact_assistant_owner_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_container_metrics.py +461 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_conversation.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_conversation_response_chunk.py +107 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_create_billing_upgrade_trigger_record_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_create_blog_post_request.py +305 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_create_checkout_session_request.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_create_cloud_space_environment_template_request.py +409 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_create_cluster_capacity_reservation_response.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_create_deployment_request.py +539 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_create_deployment_template_request.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_create_git_credentials_request.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_create_incident_request.py +305 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_create_job_request.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_create_license_request.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_create_lit_dataset_multi_part_upload_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_create_machine_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_create_managed_endpoint_response.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_create_model_metrics_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_create_multi_machine_job_request.py +253 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_create_organization_request.py +105 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_create_pipeline_template_request.py +383 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_create_project_request.py +209 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_create_sdk_command_history_request.py +253 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_create_sdk_command_history_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_create_server_alert_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_create_subscription_checkout_session_request.py +55 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_daily_model_metrics.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_daily_usage.py +81 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_data_connection.py +261 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_data_connection_tier.py +103 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_delete_blog_post_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_delete_cloud_space_environment_template_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_delete_cluster_usage_restriction_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_delete_deployment_alerting_policy_response.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_delete_git_credentials_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_delete_incident_message_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_delete_incident_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_delete_kubernetes_template_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_delete_license_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_delete_lit_dataset_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_delete_lit_dataset_version_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_delete_lit_registry_repository_image_artifact_version_by_digest_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_delete_machine_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/{v1_delete_file_endpoint_response.py → v1_delete_pipeline_response.py} +25 -25
- lightning_sdk/lightning_cloud/openapi/models/v1_delete_schedule_response.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment.py +315 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_alerting_event.py +487 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_alerting_policy.py +409 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_alerting_policy_frequency.py +105 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_alerting_policy_operation.py +105 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_alerting_policy_severity.py +106 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_alerting_policy_type.py +112 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_alerting_recipients.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_api.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_details.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_state.py +4 -2
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_status.py +47 -21
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_template.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_endpoint.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_external_cluster.py +253 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_external_cluster_spec.py +931 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_external_search_user.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_filestore_data_connection.py +253 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_filesystem_job.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_filesystem_metric.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_filesystem_metrics.py +227 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_filesystem_mmt.py +227 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_find_capacity_block_offering_response.py +29 -3
- lightning_sdk/lightning_cloud/openapi/models/{id_uploads_body1.py → v1_firewall_rule.py} +53 -53
- lightning_sdk/lightning_cloud/openapi/models/v1_function_call.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_function_tool.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/{v1_list_file_endpoints_response.py → v1_gcp_data_connection_setup.py} +23 -23
- lightning_sdk/lightning_cloud/openapi/models/v1_gcp_direct_vpc.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_ge_list_deployment_routing_telemetry_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_get_artifacts_page_response.py +29 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_get_assistant_session_daily_aggregated_response.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_get_cloud_space_cold_start_metrics_stats_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_get_cloud_space_instance_open_ports_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_get_cloud_space_instance_system_metrics_aggregate_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_get_cloud_space_required_balance_status_response.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_get_cloud_space_size_response.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_get_cloud_space_transfer_estimate_response.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_get_cluster_accelerator_demand_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_get_cluster_health_response.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_get_deployment_routing_telemetry_content_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_get_job_stats_response.py +105 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_get_latest_model_metrics_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/{v1_upload_service_execution_artifact_parts_response.py → v1_get_lit_dataset_file_upload_urls_response.py} +16 -16
- lightning_sdk/lightning_cloud/openapi/models/v1_get_lit_dataset_files_url_response.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_get_machine_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_get_market_pricing_response.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_get_model_metrics_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_get_organization_storage_metadata_response.py +487 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_get_project_balance_response.py +1 -27
- lightning_sdk/lightning_cloud/openapi/models/v1_get_project_storage_metadata_response.py +263 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_get_temp_bucket_credentials_response.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_get_user_response.py +235 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_get_user_storage_breakdown_response.py +105 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_get_volume_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_git_credentials.py +227 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_google_cloud_direct_v1.py +185 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_group_node_metrics.py +1215 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_group_pod_metrics.py +1241 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_guest_login_request.py +177 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_guest_login_response.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/{v1_service_artifact.py → v1_guest_user.py} +60 -60
- lightning_sdk/lightning_cloud/openapi/models/v1_incident.py +565 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_incident_detail.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_incident_event.py +591 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_incident_message.py +253 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_incident_severity.py +105 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_incident_type.py +108 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_instance_overprovisioning_spec.py +95 -41
- lightning_sdk/lightning_cloud/openapi/models/v1_job.py +237 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_job_artifacts_type.py +103 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_job_resource.py +279 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_job_spec.py +209 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_job_timing.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_job_type.py +109 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_k8s_incident_indexes.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_kai_scheduler_queue_metrics.py +627 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_kubernetes_aws_config.py +279 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_kubernetes_direct_settings_v1.py +253 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_kubernetes_direct_v1.py +357 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_kubernetes_direct_v1_status.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_kubernetes_template.py +357 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_kubernetes_template_property.py +227 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_lambda_labs_direct_v1.py +67 -17
- lightning_sdk/lightning_cloud/openapi/models/v1_license.py +227 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_lightning_elastic_cluster_v1.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_lightning_run.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_lightningapp_instance_artifact.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_like_status.py +104 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_aggregated_pod_metrics_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/{v1_download_service_execution_artifact_response.py → v1_list_blog_posts_response.py} +41 -41
- lightning_sdk/lightning_cloud/openapi/models/v1_list_cloud_space_cold_start_metrics_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_cloud_space_environment_templates_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_cloudy_experts_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_cluster_metric_timestamps_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_cluster_metrics_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_cluster_namespace_metrics_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_cluster_namespace_user_metrics_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_cluster_usage_restrictions_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_clusters_response.py +6 -6
- lightning_sdk/lightning_cloud/openapi/models/v1_list_container_metrics_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_conversation_message_actions_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_deployment_alerting_events_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_deployment_alerting_policies_response.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_filesystem_metrics_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_filesystem_mm_ts_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_git_credentials_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_group_pod_metrics_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_incident_events_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_incident_messages_response.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_incidents_response.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_job_resources_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_kai_scheduler_queues_metrics_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_kubernetes_templates_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_license_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_lit_dataset_versions_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_lit_datasets_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_lit_registry_repository_image_artifact_versions_response.py +257 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_machines_response.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_node_file_system_metrics_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_node_metrics_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_notification_dialogs_response.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_pipelines_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_platform_notifications_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_pod_metrics_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_project_clusters_response.py +6 -6
- lightning_sdk/lightning_cloud/openapi/models/v1_list_published_managed_endpoints_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_schedule_runs_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_schedules_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_slurm_cluster_users_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_storage_transfers_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_lit_dataset.py +539 -0
- lightning_sdk/lightning_cloud/openapi/models/{id_storage_body.py → v1_lit_dataset_file.py} +49 -49
- lightning_sdk/lightning_cloud/openapi/models/v1_lit_dataset_version_archive.py +435 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_lit_registry_artifact.py +305 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_lit_registry_project.py +35 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_lit_repository.py +81 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_lite_published_cloud_space_response.py +513 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_lustre_data_connection.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_machine.py +617 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_machine_direct_v1.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_magic_link_login_response.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_managed_endpoint.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_managed_model.py +341 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_market_price.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_membership.py +121 -17
- lightning_sdk/lightning_cloud/openapi/models/v1_message.py +159 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_message_action.py +279 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_metadata.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_metrics_stream.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_model.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_model_metrics.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/{v1_delete_service_execution_response.py → v1_modify_filesystem_volume_response.py} +6 -6
- lightning_sdk/lightning_cloud/openapi/models/v1_multi_machine_job.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_multi_machine_job_state.py +2 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_namespace_metrics.py +591 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_namespace_user_metrics.py +435 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_nebius_direct_v1.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_node_metrics.py +695 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_notification_type.py +2 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_organization.py +837 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_path_mapping.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_pause_storage_transfer_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_pipeline.py +591 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_pipeline_parameter.py +435 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_pipeline_parameter_placement.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_pipeline_parameter_placement_type.py +106 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_pipeline_parameter_type.py +106 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_pipeline_state.py +111 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_pipeline_step.py +253 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_pipeline_step_status.py +331 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_pipeline_step_type.py +104 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_pipeline_template.py +513 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_pipeline_template_visibility_type.py +105 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_platform_notification.py +279 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_pod_metrics.py +747 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_post_cloud_space_artifact_events_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_project.py +105 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_project_cluster_binding.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_project_membership.py +121 -17
- lightning_sdk/lightning_cloud/openapi/models/v1_project_settings.py +525 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_project_storage.py +235 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_project_tab.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_purchase_annual_upsell_request.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_purchase_annual_upsell_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_quote_annual_upsell_response.py +227 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_quote_subscription_response.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_r2_data_connection.py +305 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_render_kubernetes_template_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_report_cloud_space_instance_stop_at_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_report_cloud_space_instance_system_metrics_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_report_deployment_routing_telemetry_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_report_k8s_cluster_metrics_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_report_restart_timings_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_request_cloud_space_access_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_required_balance_reason.py +107 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_reservation_details.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_reset_api_key_request.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_reset_api_key_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_resource_visibility.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_resources.py +55 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_response_choice.py +29 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_restart_timing.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_resume_storage_transfer_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_routing_telemetry.py +357 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_rule_resource.py +5 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_schedule.py +565 -0
- lightning_sdk/lightning_cloud/openapi/models/{command_argument_command_argument_type.py → v1_schedule_action_type.py} +9 -8
- lightning_sdk/lightning_cloud/openapi/models/v1_schedule_resource_type.py +104 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_schedule_run.py +357 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_sdk_command_history_severity.py +104 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_sdk_command_history_type.py +104 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_secret_type.py +2 -0
- lightning_sdk/lightning_cloud/openapi/models/{v1_get_service_execution_status_response.py → v1_server_alert.py} +74 -48
- lightning_sdk/lightning_cloud/openapi/models/v1_server_alert_phase.py +105 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_server_alert_severity.py +103 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_server_alert_type.py +108 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_service_health.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_setup_data_connection_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_shared_filesystem.py +331 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_slack_notifier.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_slack_notifier_type.py +105 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_sleep_server_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_slurm_cluster_user.py +227 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_slurm_job.py +84 -6
- lightning_sdk/lightning_cloud/openapi/models/v1_slurm_node.py +31 -291
- lightning_sdk/lightning_cloud/openapi/models/v1_slurm_v1.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_slurm_v1_status.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_storage_asset.py +159 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_storage_asset_type.py +4 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_storage_transfer.py +435 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_storage_transfer_status.py +108 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_subnet_spec.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_system_metrics_aggregated.py +227 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_token_login_request.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_token_login_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_token_owner_type.py +104 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_token_usage.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_tool.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_tool_call.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_transaction.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_transfer_cloud_space_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_trigger_filesystem_upgrade_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_update_cloud_space_instance_config_request.py +253 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_update_cloud_space_visibility_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_update_conversation_like_response.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_update_conversation_message_like_response.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_update_deployment_visibility_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_update_job_visibility_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_update_lit_dataset_visibility_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_update_lit_repository_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_update_metrics_stream_visibility_response.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_update_model_visibility_response.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/{v1_complete_upload_service_execution_artifact_response.py → v1_update_organization_credits_auto_replenish_response.py} +6 -6
- lightning_sdk/lightning_cloud/openapi/models/v1_update_project_tab_order_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_update_user_credits_auto_replenish_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_update_user_request.py +131 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_update_volume_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_upload_project_artifact_response.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/{v1_list_new_features_for_user_response.py → v1_upload_temporary_artifact_request.py} +23 -23
- lightning_sdk/lightning_cloud/openapi/models/v1_usage.py +105 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_usage_report.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_user_features.py +894 -842
- lightning_sdk/lightning_cloud/openapi/models/v1_user_requested_compute_config.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_validate_data_connection_response.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_validate_deployment_image_request.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_validate_license_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_validate_managed_endpoint_response.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_validate_storage_transfer_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_voltage_park_direct_v1.py +229 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_volume.py +513 -45
- lightning_sdk/lightning_cloud/openapi/models/v1_volume_state.py +105 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_vultr_direct_v1.py +1 -27
- lightning_sdk/lightning_cloud/openapi/models/v1_weka_data_connection.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/validate.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/version_default_body.py +29 -29
- lightning_sdk/lightning_cloud/openapi/models/version_default_body1.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/version_uploads_body1.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/versions_version_body1.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/volumes_id_body.py +123 -0
- lightning_sdk/lightning_cloud/rest_client.py +61 -48
- lightning_sdk/lightning_cloud/source_code/logs_socket_api.py +8 -3
- lightning_sdk/lightning_cloud/utils/data_connection.py +234 -7
- lightning_sdk/lit_container.py +68 -9
- lightning_sdk/llm/__init__.py +3 -0
- lightning_sdk/llm/llm.py +497 -0
- lightning_sdk/llm/public_assistants.py +54 -0
- lightning_sdk/machine.py +221 -30
- lightning_sdk/mmt/base.py +67 -32
- lightning_sdk/mmt/mmt.py +68 -50
- lightning_sdk/mmt/v1.py +16 -32
- lightning_sdk/mmt/v2.py +47 -18
- lightning_sdk/models.py +74 -24
- lightning_sdk/organization.py +4 -0
- lightning_sdk/owner.py +2 -1
- lightning_sdk/pipeline/__init__.py +14 -0
- lightning_sdk/pipeline/pipeline.py +163 -0
- lightning_sdk/pipeline/printer.py +124 -0
- lightning_sdk/pipeline/schedule.py +859 -0
- lightning_sdk/pipeline/steps.py +365 -0
- lightning_sdk/pipeline/utils.py +116 -0
- lightning_sdk/plugin.py +39 -20
- lightning_sdk/sandbox.py +160 -0
- lightning_sdk/serve.py +309 -0
- lightning_sdk/services/__init__.py +1 -1
- lightning_sdk/services/file_endpoint.py +3 -4
- lightning_sdk/services/utilities.py +16 -2
- lightning_sdk/studio.py +515 -41
- lightning_sdk/teamspace.py +335 -30
- lightning_sdk/user.py +19 -1
- lightning_sdk/utils/config.py +179 -0
- lightning_sdk/utils/license.py +13 -0
- lightning_sdk/utils/logging.py +79 -0
- lightning_sdk/utils/names.py +1179 -0
- lightning_sdk/utils/progress.py +283 -0
- lightning_sdk/utils/resolve.py +149 -13
- {lightning_sdk-0.1.49.dist-info → lightning_sdk-2025.11.5.dist-info}/METADATA +14 -11
- {lightning_sdk-0.1.49.dist-info → lightning_sdk-2025.11.5.dist-info}/RECORD +649 -250
- {lightning_sdk-0.1.49.dist-info → lightning_sdk-2025.11.5.dist-info}/WHEEL +1 -1
- {lightning_sdk-0.1.49.dist-info → lightning_sdk-2025.11.5.dist-info}/entry_points.txt +1 -0
- lightning_sdk/cli/ai_hub.py +0 -49
- lightning_sdk/cli/delete.py +0 -58
- lightning_sdk/cli/download.py +0 -132
- lightning_sdk/cli/inspect.py +0 -31
- lightning_sdk/cli/legacy.py +0 -135
- lightning_sdk/cli/list.py +0 -112
- lightning_sdk/cli/run.py +0 -225
- lightning_sdk/cli/serve.py +0 -218
- lightning_sdk/cli/stop.py +0 -37
- lightning_sdk/cli/upload.py +0 -255
- lightning_sdk/lightning_cloud/openapi/models/fileendpoints_id_body.py +0 -409
- lightning_sdk/lightning_cloud/openapi/models/project_id_fileendpoints_body.py +0 -357
- lightning_sdk/lightning_cloud/openapi/models/project_id_serviceexecution_body.py +0 -175
- lightning_sdk/lightning_cloud/openapi/models/serviceexecution_id_body.py +0 -331
- lightning_sdk/lightning_cloud/openapi/models/v1_command_argument.py +0 -305
- lightning_sdk/lightning_cloud/openapi/models/v1_ebs.py +0 -279
- lightning_sdk/lightning_cloud/openapi/models/v1_file_endpoint.py +0 -461
- lightning_sdk/lightning_cloud/openapi/models/v1_get_user_storage_response.py +0 -201
- lightning_sdk/lightning_cloud/openapi/models/v1_list_service_execution_lightningapp_instances_response.py +0 -175
- lightning_sdk/lightning_cloud/openapi/models/v1_service_execution.py +0 -383
- /lightning_sdk/cli/{exceptions.py → legacy/exceptions.py} +0 -0
- /lightning_sdk/services/{finetune/__init__.py → finetune_llm.py} +0 -0
- {lightning_sdk-0.1.49.dist-info → lightning_sdk-2025.11.5.dist-info}/LICENSE +0 -0
- {lightning_sdk-0.1.49.dist-info → lightning_sdk-2025.11.5.dist-info}/top_level.txt +0 -0
|
@@ -41,76 +41,184 @@ class V1Organization(object):
|
|
|
41
41
|
and the value is json key in definition.
|
|
42
42
|
"""
|
|
43
43
|
swagger_types = {
|
|
44
|
+
'alerts_config': 'V1AlertsConfig',
|
|
45
|
+
'allow_budgeting': 'bool',
|
|
46
|
+
'allow_cloud_space_publish': 'bool',
|
|
47
|
+
'allow_credits_auto_replenish': 'bool',
|
|
48
|
+
'allow_external_project_duplication': 'bool',
|
|
44
49
|
'allow_guest': 'bool',
|
|
50
|
+
'allow_marketplace': 'bool',
|
|
45
51
|
'allow_member_invitations': 'bool',
|
|
46
52
|
'allow_member_teamspace_creation': 'bool',
|
|
47
53
|
'auto_invite_by_domain': 'bool',
|
|
48
54
|
'auto_join_domain_validations': 'dict(str, V1AutoJoinDomainValidation)',
|
|
49
55
|
'auto_join_domains': 'list[str]',
|
|
56
|
+
'auto_replenish_amount': 'float',
|
|
57
|
+
'auto_replenish_threshold': 'float',
|
|
58
|
+
'auto_switch_machine': 'bool',
|
|
50
59
|
'created_at': 'datetime',
|
|
60
|
+
'default_machine_image_version': 'str',
|
|
61
|
+
'default_machine_type': 'str',
|
|
62
|
+
'default_project_id': 'str',
|
|
51
63
|
'description': 'str',
|
|
64
|
+
'disallow_aws_saas': 'bool',
|
|
65
|
+
'disallow_dgx_saas': 'bool',
|
|
66
|
+
'disallow_gcp_saas': 'bool',
|
|
67
|
+
'disallow_lambda_saas': 'bool',
|
|
68
|
+
'disallow_lightning_saas': 'bool',
|
|
69
|
+
'disallow_nebius_saas': 'bool',
|
|
70
|
+
'disallow_voltage_park_saas': 'bool',
|
|
71
|
+
'disallow_vultr_saas': 'bool',
|
|
52
72
|
'display_name': 'str',
|
|
53
73
|
'domain': 'str',
|
|
54
74
|
'email': 'str',
|
|
55
75
|
'featured_gallery': 'bool',
|
|
76
|
+
'full_story_end_date': 'datetime',
|
|
77
|
+
'full_story_start_date': 'datetime',
|
|
78
|
+
'general_teamspace': 'bool',
|
|
56
79
|
'id': 'str',
|
|
80
|
+
'last_storage_overuse_notification_sent_at': 'datetime',
|
|
57
81
|
'location': 'str',
|
|
58
82
|
'name': 'str',
|
|
59
83
|
'preferred_cluster': 'str',
|
|
84
|
+
'preferred_deployment_provider': 'str',
|
|
85
|
+
'preferred_studio_provider': 'str',
|
|
86
|
+
'show_model_apis_tab': 'bool',
|
|
60
87
|
'start_studios_on_spot_instance': 'bool',
|
|
88
|
+
'storage_overuse_bytes': 'str',
|
|
89
|
+
'storage_overuse_deletion_at': 'datetime',
|
|
90
|
+
'storage_overuse_notification_count': 'int',
|
|
91
|
+
'switch_to_default_machine_on_idle': 'bool',
|
|
61
92
|
'teamspace_default_credits': 'float',
|
|
62
93
|
'twitter_username': 'str',
|
|
63
|
-
'updated_at': 'datetime'
|
|
94
|
+
'updated_at': 'datetime',
|
|
95
|
+
'workload_max_run_duration': 'str'
|
|
64
96
|
}
|
|
65
97
|
|
|
66
98
|
attribute_map = {
|
|
99
|
+
'alerts_config': 'alertsConfig',
|
|
100
|
+
'allow_budgeting': 'allowBudgeting',
|
|
101
|
+
'allow_cloud_space_publish': 'allowCloudSpacePublish',
|
|
102
|
+
'allow_credits_auto_replenish': 'allowCreditsAutoReplenish',
|
|
103
|
+
'allow_external_project_duplication': 'allowExternalProjectDuplication',
|
|
67
104
|
'allow_guest': 'allowGuest',
|
|
105
|
+
'allow_marketplace': 'allowMarketplace',
|
|
68
106
|
'allow_member_invitations': 'allowMemberInvitations',
|
|
69
107
|
'allow_member_teamspace_creation': 'allowMemberTeamspaceCreation',
|
|
70
108
|
'auto_invite_by_domain': 'autoInviteByDomain',
|
|
71
109
|
'auto_join_domain_validations': 'autoJoinDomainValidations',
|
|
72
110
|
'auto_join_domains': 'autoJoinDomains',
|
|
111
|
+
'auto_replenish_amount': 'autoReplenishAmount',
|
|
112
|
+
'auto_replenish_threshold': 'autoReplenishThreshold',
|
|
113
|
+
'auto_switch_machine': 'autoSwitchMachine',
|
|
73
114
|
'created_at': 'createdAt',
|
|
115
|
+
'default_machine_image_version': 'defaultMachineImageVersion',
|
|
116
|
+
'default_machine_type': 'defaultMachineType',
|
|
117
|
+
'default_project_id': 'defaultProjectId',
|
|
74
118
|
'description': 'description',
|
|
119
|
+
'disallow_aws_saas': 'disallowAwsSaas',
|
|
120
|
+
'disallow_dgx_saas': 'disallowDgxSaas',
|
|
121
|
+
'disallow_gcp_saas': 'disallowGcpSaas',
|
|
122
|
+
'disallow_lambda_saas': 'disallowLambdaSaas',
|
|
123
|
+
'disallow_lightning_saas': 'disallowLightningSaas',
|
|
124
|
+
'disallow_nebius_saas': 'disallowNebiusSaas',
|
|
125
|
+
'disallow_voltage_park_saas': 'disallowVoltageParkSaas',
|
|
126
|
+
'disallow_vultr_saas': 'disallowVultrSaas',
|
|
75
127
|
'display_name': 'displayName',
|
|
76
128
|
'domain': 'domain',
|
|
77
129
|
'email': 'email',
|
|
78
130
|
'featured_gallery': 'featuredGallery',
|
|
131
|
+
'full_story_end_date': 'fullStoryEndDate',
|
|
132
|
+
'full_story_start_date': 'fullStoryStartDate',
|
|
133
|
+
'general_teamspace': 'generalTeamspace',
|
|
79
134
|
'id': 'id',
|
|
135
|
+
'last_storage_overuse_notification_sent_at': 'lastStorageOveruseNotificationSentAt',
|
|
80
136
|
'location': 'location',
|
|
81
137
|
'name': 'name',
|
|
82
138
|
'preferred_cluster': 'preferredCluster',
|
|
139
|
+
'preferred_deployment_provider': 'preferredDeploymentProvider',
|
|
140
|
+
'preferred_studio_provider': 'preferredStudioProvider',
|
|
141
|
+
'show_model_apis_tab': 'showModelApisTab',
|
|
83
142
|
'start_studios_on_spot_instance': 'startStudiosOnSpotInstance',
|
|
143
|
+
'storage_overuse_bytes': 'storageOveruseBytes',
|
|
144
|
+
'storage_overuse_deletion_at': 'storageOveruseDeletionAt',
|
|
145
|
+
'storage_overuse_notification_count': 'storageOveruseNotificationCount',
|
|
146
|
+
'switch_to_default_machine_on_idle': 'switchToDefaultMachineOnIdle',
|
|
84
147
|
'teamspace_default_credits': 'teamspaceDefaultCredits',
|
|
85
148
|
'twitter_username': 'twitterUsername',
|
|
86
|
-
'updated_at': 'updatedAt'
|
|
149
|
+
'updated_at': 'updatedAt',
|
|
150
|
+
'workload_max_run_duration': 'workloadMaxRunDuration'
|
|
87
151
|
}
|
|
88
152
|
|
|
89
|
-
def __init__(self, allow_guest: 'bool' =None, allow_member_invitations: 'bool' =None, allow_member_teamspace_creation: 'bool' =None, auto_invite_by_domain: 'bool' =None, auto_join_domain_validations: 'dict(str, V1AutoJoinDomainValidation)' =None, auto_join_domains: 'list[str]' =None, created_at: 'datetime' =None, description: 'str' =None, display_name: 'str' =None, domain: 'str' =None, email: 'str' =None, featured_gallery: 'bool' =None, id: 'str' =None, location: 'str' =None, name: 'str' =None, preferred_cluster: 'str' =None, start_studios_on_spot_instance: 'bool' =None, teamspace_default_credits: 'float' =None, twitter_username: 'str' =None, updated_at: 'datetime' =None): # noqa: E501
|
|
153
|
+
def __init__(self, alerts_config: 'V1AlertsConfig' =None, allow_budgeting: 'bool' =None, allow_cloud_space_publish: 'bool' =None, allow_credits_auto_replenish: 'bool' =None, allow_external_project_duplication: 'bool' =None, allow_guest: 'bool' =None, allow_marketplace: 'bool' =None, allow_member_invitations: 'bool' =None, allow_member_teamspace_creation: 'bool' =None, auto_invite_by_domain: 'bool' =None, auto_join_domain_validations: 'dict(str, V1AutoJoinDomainValidation)' =None, auto_join_domains: 'list[str]' =None, auto_replenish_amount: 'float' =None, auto_replenish_threshold: 'float' =None, auto_switch_machine: 'bool' =None, created_at: 'datetime' =None, default_machine_image_version: 'str' =None, default_machine_type: 'str' =None, default_project_id: 'str' =None, description: 'str' =None, disallow_aws_saas: 'bool' =None, disallow_dgx_saas: 'bool' =None, disallow_gcp_saas: 'bool' =None, disallow_lambda_saas: 'bool' =None, disallow_lightning_saas: 'bool' =None, disallow_nebius_saas: 'bool' =None, disallow_voltage_park_saas: 'bool' =None, disallow_vultr_saas: 'bool' =None, display_name: 'str' =None, domain: 'str' =None, email: 'str' =None, featured_gallery: 'bool' =None, full_story_end_date: 'datetime' =None, full_story_start_date: 'datetime' =None, general_teamspace: 'bool' =None, id: 'str' =None, last_storage_overuse_notification_sent_at: 'datetime' =None, location: 'str' =None, name: 'str' =None, preferred_cluster: 'str' =None, preferred_deployment_provider: 'str' =None, preferred_studio_provider: 'str' =None, show_model_apis_tab: 'bool' =None, start_studios_on_spot_instance: 'bool' =None, storage_overuse_bytes: 'str' =None, storage_overuse_deletion_at: 'datetime' =None, storage_overuse_notification_count: 'int' =None, switch_to_default_machine_on_idle: 'bool' =None, teamspace_default_credits: 'float' =None, twitter_username: 'str' =None, updated_at: 'datetime' =None, workload_max_run_duration: 'str' =None): # noqa: E501
|
|
90
154
|
"""V1Organization - a model defined in Swagger""" # noqa: E501
|
|
155
|
+
self._alerts_config = None
|
|
156
|
+
self._allow_budgeting = None
|
|
157
|
+
self._allow_cloud_space_publish = None
|
|
158
|
+
self._allow_credits_auto_replenish = None
|
|
159
|
+
self._allow_external_project_duplication = None
|
|
91
160
|
self._allow_guest = None
|
|
161
|
+
self._allow_marketplace = None
|
|
92
162
|
self._allow_member_invitations = None
|
|
93
163
|
self._allow_member_teamspace_creation = None
|
|
94
164
|
self._auto_invite_by_domain = None
|
|
95
165
|
self._auto_join_domain_validations = None
|
|
96
166
|
self._auto_join_domains = None
|
|
167
|
+
self._auto_replenish_amount = None
|
|
168
|
+
self._auto_replenish_threshold = None
|
|
169
|
+
self._auto_switch_machine = None
|
|
97
170
|
self._created_at = None
|
|
171
|
+
self._default_machine_image_version = None
|
|
172
|
+
self._default_machine_type = None
|
|
173
|
+
self._default_project_id = None
|
|
98
174
|
self._description = None
|
|
175
|
+
self._disallow_aws_saas = None
|
|
176
|
+
self._disallow_dgx_saas = None
|
|
177
|
+
self._disallow_gcp_saas = None
|
|
178
|
+
self._disallow_lambda_saas = None
|
|
179
|
+
self._disallow_lightning_saas = None
|
|
180
|
+
self._disallow_nebius_saas = None
|
|
181
|
+
self._disallow_voltage_park_saas = None
|
|
182
|
+
self._disallow_vultr_saas = None
|
|
99
183
|
self._display_name = None
|
|
100
184
|
self._domain = None
|
|
101
185
|
self._email = None
|
|
102
186
|
self._featured_gallery = None
|
|
187
|
+
self._full_story_end_date = None
|
|
188
|
+
self._full_story_start_date = None
|
|
189
|
+
self._general_teamspace = None
|
|
103
190
|
self._id = None
|
|
191
|
+
self._last_storage_overuse_notification_sent_at = None
|
|
104
192
|
self._location = None
|
|
105
193
|
self._name = None
|
|
106
194
|
self._preferred_cluster = None
|
|
195
|
+
self._preferred_deployment_provider = None
|
|
196
|
+
self._preferred_studio_provider = None
|
|
197
|
+
self._show_model_apis_tab = None
|
|
107
198
|
self._start_studios_on_spot_instance = None
|
|
199
|
+
self._storage_overuse_bytes = None
|
|
200
|
+
self._storage_overuse_deletion_at = None
|
|
201
|
+
self._storage_overuse_notification_count = None
|
|
202
|
+
self._switch_to_default_machine_on_idle = None
|
|
108
203
|
self._teamspace_default_credits = None
|
|
109
204
|
self._twitter_username = None
|
|
110
205
|
self._updated_at = None
|
|
206
|
+
self._workload_max_run_duration = None
|
|
111
207
|
self.discriminator = None
|
|
208
|
+
if alerts_config is not None:
|
|
209
|
+
self.alerts_config = alerts_config
|
|
210
|
+
if allow_budgeting is not None:
|
|
211
|
+
self.allow_budgeting = allow_budgeting
|
|
212
|
+
if allow_cloud_space_publish is not None:
|
|
213
|
+
self.allow_cloud_space_publish = allow_cloud_space_publish
|
|
214
|
+
if allow_credits_auto_replenish is not None:
|
|
215
|
+
self.allow_credits_auto_replenish = allow_credits_auto_replenish
|
|
216
|
+
if allow_external_project_duplication is not None:
|
|
217
|
+
self.allow_external_project_duplication = allow_external_project_duplication
|
|
112
218
|
if allow_guest is not None:
|
|
113
219
|
self.allow_guest = allow_guest
|
|
220
|
+
if allow_marketplace is not None:
|
|
221
|
+
self.allow_marketplace = allow_marketplace
|
|
114
222
|
if allow_member_invitations is not None:
|
|
115
223
|
self.allow_member_invitations = allow_member_invitations
|
|
116
224
|
if allow_member_teamspace_creation is not None:
|
|
@@ -121,10 +229,38 @@ class V1Organization(object):
|
|
|
121
229
|
self.auto_join_domain_validations = auto_join_domain_validations
|
|
122
230
|
if auto_join_domains is not None:
|
|
123
231
|
self.auto_join_domains = auto_join_domains
|
|
232
|
+
if auto_replenish_amount is not None:
|
|
233
|
+
self.auto_replenish_amount = auto_replenish_amount
|
|
234
|
+
if auto_replenish_threshold is not None:
|
|
235
|
+
self.auto_replenish_threshold = auto_replenish_threshold
|
|
236
|
+
if auto_switch_machine is not None:
|
|
237
|
+
self.auto_switch_machine = auto_switch_machine
|
|
124
238
|
if created_at is not None:
|
|
125
239
|
self.created_at = created_at
|
|
240
|
+
if default_machine_image_version is not None:
|
|
241
|
+
self.default_machine_image_version = default_machine_image_version
|
|
242
|
+
if default_machine_type is not None:
|
|
243
|
+
self.default_machine_type = default_machine_type
|
|
244
|
+
if default_project_id is not None:
|
|
245
|
+
self.default_project_id = default_project_id
|
|
126
246
|
if description is not None:
|
|
127
247
|
self.description = description
|
|
248
|
+
if disallow_aws_saas is not None:
|
|
249
|
+
self.disallow_aws_saas = disallow_aws_saas
|
|
250
|
+
if disallow_dgx_saas is not None:
|
|
251
|
+
self.disallow_dgx_saas = disallow_dgx_saas
|
|
252
|
+
if disallow_gcp_saas is not None:
|
|
253
|
+
self.disallow_gcp_saas = disallow_gcp_saas
|
|
254
|
+
if disallow_lambda_saas is not None:
|
|
255
|
+
self.disallow_lambda_saas = disallow_lambda_saas
|
|
256
|
+
if disallow_lightning_saas is not None:
|
|
257
|
+
self.disallow_lightning_saas = disallow_lightning_saas
|
|
258
|
+
if disallow_nebius_saas is not None:
|
|
259
|
+
self.disallow_nebius_saas = disallow_nebius_saas
|
|
260
|
+
if disallow_voltage_park_saas is not None:
|
|
261
|
+
self.disallow_voltage_park_saas = disallow_voltage_park_saas
|
|
262
|
+
if disallow_vultr_saas is not None:
|
|
263
|
+
self.disallow_vultr_saas = disallow_vultr_saas
|
|
128
264
|
if display_name is not None:
|
|
129
265
|
self.display_name = display_name
|
|
130
266
|
if domain is not None:
|
|
@@ -133,22 +269,153 @@ class V1Organization(object):
|
|
|
133
269
|
self.email = email
|
|
134
270
|
if featured_gallery is not None:
|
|
135
271
|
self.featured_gallery = featured_gallery
|
|
272
|
+
if full_story_end_date is not None:
|
|
273
|
+
self.full_story_end_date = full_story_end_date
|
|
274
|
+
if full_story_start_date is not None:
|
|
275
|
+
self.full_story_start_date = full_story_start_date
|
|
276
|
+
if general_teamspace is not None:
|
|
277
|
+
self.general_teamspace = general_teamspace
|
|
136
278
|
if id is not None:
|
|
137
279
|
self.id = id
|
|
280
|
+
if last_storage_overuse_notification_sent_at is not None:
|
|
281
|
+
self.last_storage_overuse_notification_sent_at = last_storage_overuse_notification_sent_at
|
|
138
282
|
if location is not None:
|
|
139
283
|
self.location = location
|
|
140
284
|
if name is not None:
|
|
141
285
|
self.name = name
|
|
142
286
|
if preferred_cluster is not None:
|
|
143
287
|
self.preferred_cluster = preferred_cluster
|
|
288
|
+
if preferred_deployment_provider is not None:
|
|
289
|
+
self.preferred_deployment_provider = preferred_deployment_provider
|
|
290
|
+
if preferred_studio_provider is not None:
|
|
291
|
+
self.preferred_studio_provider = preferred_studio_provider
|
|
292
|
+
if show_model_apis_tab is not None:
|
|
293
|
+
self.show_model_apis_tab = show_model_apis_tab
|
|
144
294
|
if start_studios_on_spot_instance is not None:
|
|
145
295
|
self.start_studios_on_spot_instance = start_studios_on_spot_instance
|
|
296
|
+
if storage_overuse_bytes is not None:
|
|
297
|
+
self.storage_overuse_bytes = storage_overuse_bytes
|
|
298
|
+
if storage_overuse_deletion_at is not None:
|
|
299
|
+
self.storage_overuse_deletion_at = storage_overuse_deletion_at
|
|
300
|
+
if storage_overuse_notification_count is not None:
|
|
301
|
+
self.storage_overuse_notification_count = storage_overuse_notification_count
|
|
302
|
+
if switch_to_default_machine_on_idle is not None:
|
|
303
|
+
self.switch_to_default_machine_on_idle = switch_to_default_machine_on_idle
|
|
146
304
|
if teamspace_default_credits is not None:
|
|
147
305
|
self.teamspace_default_credits = teamspace_default_credits
|
|
148
306
|
if twitter_username is not None:
|
|
149
307
|
self.twitter_username = twitter_username
|
|
150
308
|
if updated_at is not None:
|
|
151
309
|
self.updated_at = updated_at
|
|
310
|
+
if workload_max_run_duration is not None:
|
|
311
|
+
self.workload_max_run_duration = workload_max_run_duration
|
|
312
|
+
|
|
313
|
+
@property
|
|
314
|
+
def alerts_config(self) -> 'V1AlertsConfig':
|
|
315
|
+
"""Gets the alerts_config of this V1Organization. # noqa: E501
|
|
316
|
+
|
|
317
|
+
|
|
318
|
+
:return: The alerts_config of this V1Organization. # noqa: E501
|
|
319
|
+
:rtype: V1AlertsConfig
|
|
320
|
+
"""
|
|
321
|
+
return self._alerts_config
|
|
322
|
+
|
|
323
|
+
@alerts_config.setter
|
|
324
|
+
def alerts_config(self, alerts_config: 'V1AlertsConfig'):
|
|
325
|
+
"""Sets the alerts_config of this V1Organization.
|
|
326
|
+
|
|
327
|
+
|
|
328
|
+
:param alerts_config: The alerts_config of this V1Organization. # noqa: E501
|
|
329
|
+
:type: V1AlertsConfig
|
|
330
|
+
"""
|
|
331
|
+
|
|
332
|
+
self._alerts_config = alerts_config
|
|
333
|
+
|
|
334
|
+
@property
|
|
335
|
+
def allow_budgeting(self) -> 'bool':
|
|
336
|
+
"""Gets the allow_budgeting of this V1Organization. # noqa: E501
|
|
337
|
+
|
|
338
|
+
|
|
339
|
+
:return: The allow_budgeting of this V1Organization. # noqa: E501
|
|
340
|
+
:rtype: bool
|
|
341
|
+
"""
|
|
342
|
+
return self._allow_budgeting
|
|
343
|
+
|
|
344
|
+
@allow_budgeting.setter
|
|
345
|
+
def allow_budgeting(self, allow_budgeting: 'bool'):
|
|
346
|
+
"""Sets the allow_budgeting of this V1Organization.
|
|
347
|
+
|
|
348
|
+
|
|
349
|
+
:param allow_budgeting: The allow_budgeting of this V1Organization. # noqa: E501
|
|
350
|
+
:type: bool
|
|
351
|
+
"""
|
|
352
|
+
|
|
353
|
+
self._allow_budgeting = allow_budgeting
|
|
354
|
+
|
|
355
|
+
@property
|
|
356
|
+
def allow_cloud_space_publish(self) -> 'bool':
|
|
357
|
+
"""Gets the allow_cloud_space_publish of this V1Organization. # noqa: E501
|
|
358
|
+
|
|
359
|
+
|
|
360
|
+
:return: The allow_cloud_space_publish of this V1Organization. # noqa: E501
|
|
361
|
+
:rtype: bool
|
|
362
|
+
"""
|
|
363
|
+
return self._allow_cloud_space_publish
|
|
364
|
+
|
|
365
|
+
@allow_cloud_space_publish.setter
|
|
366
|
+
def allow_cloud_space_publish(self, allow_cloud_space_publish: 'bool'):
|
|
367
|
+
"""Sets the allow_cloud_space_publish of this V1Organization.
|
|
368
|
+
|
|
369
|
+
|
|
370
|
+
:param allow_cloud_space_publish: The allow_cloud_space_publish of this V1Organization. # noqa: E501
|
|
371
|
+
:type: bool
|
|
372
|
+
"""
|
|
373
|
+
|
|
374
|
+
self._allow_cloud_space_publish = allow_cloud_space_publish
|
|
375
|
+
|
|
376
|
+
@property
|
|
377
|
+
def allow_credits_auto_replenish(self) -> 'bool':
|
|
378
|
+
"""Gets the allow_credits_auto_replenish of this V1Organization. # noqa: E501
|
|
379
|
+
|
|
380
|
+
|
|
381
|
+
:return: The allow_credits_auto_replenish of this V1Organization. # noqa: E501
|
|
382
|
+
:rtype: bool
|
|
383
|
+
"""
|
|
384
|
+
return self._allow_credits_auto_replenish
|
|
385
|
+
|
|
386
|
+
@allow_credits_auto_replenish.setter
|
|
387
|
+
def allow_credits_auto_replenish(self, allow_credits_auto_replenish: 'bool'):
|
|
388
|
+
"""Sets the allow_credits_auto_replenish of this V1Organization.
|
|
389
|
+
|
|
390
|
+
|
|
391
|
+
:param allow_credits_auto_replenish: The allow_credits_auto_replenish of this V1Organization. # noqa: E501
|
|
392
|
+
:type: bool
|
|
393
|
+
"""
|
|
394
|
+
|
|
395
|
+
self._allow_credits_auto_replenish = allow_credits_auto_replenish
|
|
396
|
+
|
|
397
|
+
@property
|
|
398
|
+
def allow_external_project_duplication(self) -> 'bool':
|
|
399
|
+
"""Gets the allow_external_project_duplication of this V1Organization. # noqa: E501
|
|
400
|
+
|
|
401
|
+
This is an org level setting which will allow whether or not studios in a teamspace can be duplicated outside of teamspaces. Enabling this will allow teamspaces in an org to configure their own individual settings. # noqa: E501
|
|
402
|
+
|
|
403
|
+
:return: The allow_external_project_duplication of this V1Organization. # noqa: E501
|
|
404
|
+
:rtype: bool
|
|
405
|
+
"""
|
|
406
|
+
return self._allow_external_project_duplication
|
|
407
|
+
|
|
408
|
+
@allow_external_project_duplication.setter
|
|
409
|
+
def allow_external_project_duplication(self, allow_external_project_duplication: 'bool'):
|
|
410
|
+
"""Sets the allow_external_project_duplication of this V1Organization.
|
|
411
|
+
|
|
412
|
+
This is an org level setting which will allow whether or not studios in a teamspace can be duplicated outside of teamspaces. Enabling this will allow teamspaces in an org to configure their own individual settings. # noqa: E501
|
|
413
|
+
|
|
414
|
+
:param allow_external_project_duplication: The allow_external_project_duplication of this V1Organization. # noqa: E501
|
|
415
|
+
:type: bool
|
|
416
|
+
"""
|
|
417
|
+
|
|
418
|
+
self._allow_external_project_duplication = allow_external_project_duplication
|
|
152
419
|
|
|
153
420
|
@property
|
|
154
421
|
def allow_guest(self) -> 'bool':
|
|
@@ -171,6 +438,27 @@ class V1Organization(object):
|
|
|
171
438
|
|
|
172
439
|
self._allow_guest = allow_guest
|
|
173
440
|
|
|
441
|
+
@property
|
|
442
|
+
def allow_marketplace(self) -> 'bool':
|
|
443
|
+
"""Gets the allow_marketplace of this V1Organization. # noqa: E501
|
|
444
|
+
|
|
445
|
+
|
|
446
|
+
:return: The allow_marketplace of this V1Organization. # noqa: E501
|
|
447
|
+
:rtype: bool
|
|
448
|
+
"""
|
|
449
|
+
return self._allow_marketplace
|
|
450
|
+
|
|
451
|
+
@allow_marketplace.setter
|
|
452
|
+
def allow_marketplace(self, allow_marketplace: 'bool'):
|
|
453
|
+
"""Sets the allow_marketplace of this V1Organization.
|
|
454
|
+
|
|
455
|
+
|
|
456
|
+
:param allow_marketplace: The allow_marketplace of this V1Organization. # noqa: E501
|
|
457
|
+
:type: bool
|
|
458
|
+
"""
|
|
459
|
+
|
|
460
|
+
self._allow_marketplace = allow_marketplace
|
|
461
|
+
|
|
174
462
|
@property
|
|
175
463
|
def allow_member_invitations(self) -> 'bool':
|
|
176
464
|
"""Gets the allow_member_invitations of this V1Organization. # noqa: E501
|
|
@@ -276,6 +564,69 @@ class V1Organization(object):
|
|
|
276
564
|
|
|
277
565
|
self._auto_join_domains = auto_join_domains
|
|
278
566
|
|
|
567
|
+
@property
|
|
568
|
+
def auto_replenish_amount(self) -> 'float':
|
|
569
|
+
"""Gets the auto_replenish_amount of this V1Organization. # noqa: E501
|
|
570
|
+
|
|
571
|
+
|
|
572
|
+
:return: The auto_replenish_amount of this V1Organization. # noqa: E501
|
|
573
|
+
:rtype: float
|
|
574
|
+
"""
|
|
575
|
+
return self._auto_replenish_amount
|
|
576
|
+
|
|
577
|
+
@auto_replenish_amount.setter
|
|
578
|
+
def auto_replenish_amount(self, auto_replenish_amount: 'float'):
|
|
579
|
+
"""Sets the auto_replenish_amount of this V1Organization.
|
|
580
|
+
|
|
581
|
+
|
|
582
|
+
:param auto_replenish_amount: The auto_replenish_amount of this V1Organization. # noqa: E501
|
|
583
|
+
:type: float
|
|
584
|
+
"""
|
|
585
|
+
|
|
586
|
+
self._auto_replenish_amount = auto_replenish_amount
|
|
587
|
+
|
|
588
|
+
@property
|
|
589
|
+
def auto_replenish_threshold(self) -> 'float':
|
|
590
|
+
"""Gets the auto_replenish_threshold of this V1Organization. # noqa: E501
|
|
591
|
+
|
|
592
|
+
|
|
593
|
+
:return: The auto_replenish_threshold of this V1Organization. # noqa: E501
|
|
594
|
+
:rtype: float
|
|
595
|
+
"""
|
|
596
|
+
return self._auto_replenish_threshold
|
|
597
|
+
|
|
598
|
+
@auto_replenish_threshold.setter
|
|
599
|
+
def auto_replenish_threshold(self, auto_replenish_threshold: 'float'):
|
|
600
|
+
"""Sets the auto_replenish_threshold of this V1Organization.
|
|
601
|
+
|
|
602
|
+
|
|
603
|
+
:param auto_replenish_threshold: The auto_replenish_threshold of this V1Organization. # noqa: E501
|
|
604
|
+
:type: float
|
|
605
|
+
"""
|
|
606
|
+
|
|
607
|
+
self._auto_replenish_threshold = auto_replenish_threshold
|
|
608
|
+
|
|
609
|
+
@property
|
|
610
|
+
def auto_switch_machine(self) -> 'bool':
|
|
611
|
+
"""Gets the auto_switch_machine of this V1Organization. # noqa: E501
|
|
612
|
+
|
|
613
|
+
|
|
614
|
+
:return: The auto_switch_machine of this V1Organization. # noqa: E501
|
|
615
|
+
:rtype: bool
|
|
616
|
+
"""
|
|
617
|
+
return self._auto_switch_machine
|
|
618
|
+
|
|
619
|
+
@auto_switch_machine.setter
|
|
620
|
+
def auto_switch_machine(self, auto_switch_machine: 'bool'):
|
|
621
|
+
"""Sets the auto_switch_machine of this V1Organization.
|
|
622
|
+
|
|
623
|
+
|
|
624
|
+
:param auto_switch_machine: The auto_switch_machine of this V1Organization. # noqa: E501
|
|
625
|
+
:type: bool
|
|
626
|
+
"""
|
|
627
|
+
|
|
628
|
+
self._auto_switch_machine = auto_switch_machine
|
|
629
|
+
|
|
279
630
|
@property
|
|
280
631
|
def created_at(self) -> 'datetime':
|
|
281
632
|
"""Gets the created_at of this V1Organization. # noqa: E501
|
|
@@ -297,6 +648,69 @@ class V1Organization(object):
|
|
|
297
648
|
|
|
298
649
|
self._created_at = created_at
|
|
299
650
|
|
|
651
|
+
@property
|
|
652
|
+
def default_machine_image_version(self) -> 'str':
|
|
653
|
+
"""Gets the default_machine_image_version of this V1Organization. # noqa: E501
|
|
654
|
+
|
|
655
|
+
|
|
656
|
+
:return: The default_machine_image_version of this V1Organization. # noqa: E501
|
|
657
|
+
:rtype: str
|
|
658
|
+
"""
|
|
659
|
+
return self._default_machine_image_version
|
|
660
|
+
|
|
661
|
+
@default_machine_image_version.setter
|
|
662
|
+
def default_machine_image_version(self, default_machine_image_version: 'str'):
|
|
663
|
+
"""Sets the default_machine_image_version of this V1Organization.
|
|
664
|
+
|
|
665
|
+
|
|
666
|
+
:param default_machine_image_version: The default_machine_image_version of this V1Organization. # noqa: E501
|
|
667
|
+
:type: str
|
|
668
|
+
"""
|
|
669
|
+
|
|
670
|
+
self._default_machine_image_version = default_machine_image_version
|
|
671
|
+
|
|
672
|
+
@property
|
|
673
|
+
def default_machine_type(self) -> 'str':
|
|
674
|
+
"""Gets the default_machine_type of this V1Organization. # noqa: E501
|
|
675
|
+
|
|
676
|
+
|
|
677
|
+
:return: The default_machine_type of this V1Organization. # noqa: E501
|
|
678
|
+
:rtype: str
|
|
679
|
+
"""
|
|
680
|
+
return self._default_machine_type
|
|
681
|
+
|
|
682
|
+
@default_machine_type.setter
|
|
683
|
+
def default_machine_type(self, default_machine_type: 'str'):
|
|
684
|
+
"""Sets the default_machine_type of this V1Organization.
|
|
685
|
+
|
|
686
|
+
|
|
687
|
+
:param default_machine_type: The default_machine_type of this V1Organization. # noqa: E501
|
|
688
|
+
:type: str
|
|
689
|
+
"""
|
|
690
|
+
|
|
691
|
+
self._default_machine_type = default_machine_type
|
|
692
|
+
|
|
693
|
+
@property
|
|
694
|
+
def default_project_id(self) -> 'str':
|
|
695
|
+
"""Gets the default_project_id of this V1Organization. # noqa: E501
|
|
696
|
+
|
|
697
|
+
|
|
698
|
+
:return: The default_project_id of this V1Organization. # noqa: E501
|
|
699
|
+
:rtype: str
|
|
700
|
+
"""
|
|
701
|
+
return self._default_project_id
|
|
702
|
+
|
|
703
|
+
@default_project_id.setter
|
|
704
|
+
def default_project_id(self, default_project_id: 'str'):
|
|
705
|
+
"""Sets the default_project_id of this V1Organization.
|
|
706
|
+
|
|
707
|
+
|
|
708
|
+
:param default_project_id: The default_project_id of this V1Organization. # noqa: E501
|
|
709
|
+
:type: str
|
|
710
|
+
"""
|
|
711
|
+
|
|
712
|
+
self._default_project_id = default_project_id
|
|
713
|
+
|
|
300
714
|
@property
|
|
301
715
|
def description(self) -> 'str':
|
|
302
716
|
"""Gets the description of this V1Organization. # noqa: E501
|
|
@@ -318,6 +732,174 @@ class V1Organization(object):
|
|
|
318
732
|
|
|
319
733
|
self._description = description
|
|
320
734
|
|
|
735
|
+
@property
|
|
736
|
+
def disallow_aws_saas(self) -> 'bool':
|
|
737
|
+
"""Gets the disallow_aws_saas of this V1Organization. # noqa: E501
|
|
738
|
+
|
|
739
|
+
|
|
740
|
+
:return: The disallow_aws_saas of this V1Organization. # noqa: E501
|
|
741
|
+
:rtype: bool
|
|
742
|
+
"""
|
|
743
|
+
return self._disallow_aws_saas
|
|
744
|
+
|
|
745
|
+
@disallow_aws_saas.setter
|
|
746
|
+
def disallow_aws_saas(self, disallow_aws_saas: 'bool'):
|
|
747
|
+
"""Sets the disallow_aws_saas of this V1Organization.
|
|
748
|
+
|
|
749
|
+
|
|
750
|
+
:param disallow_aws_saas: The disallow_aws_saas of this V1Organization. # noqa: E501
|
|
751
|
+
:type: bool
|
|
752
|
+
"""
|
|
753
|
+
|
|
754
|
+
self._disallow_aws_saas = disallow_aws_saas
|
|
755
|
+
|
|
756
|
+
@property
|
|
757
|
+
def disallow_dgx_saas(self) -> 'bool':
|
|
758
|
+
"""Gets the disallow_dgx_saas of this V1Organization. # noqa: E501
|
|
759
|
+
|
|
760
|
+
|
|
761
|
+
:return: The disallow_dgx_saas of this V1Organization. # noqa: E501
|
|
762
|
+
:rtype: bool
|
|
763
|
+
"""
|
|
764
|
+
return self._disallow_dgx_saas
|
|
765
|
+
|
|
766
|
+
@disallow_dgx_saas.setter
|
|
767
|
+
def disallow_dgx_saas(self, disallow_dgx_saas: 'bool'):
|
|
768
|
+
"""Sets the disallow_dgx_saas of this V1Organization.
|
|
769
|
+
|
|
770
|
+
|
|
771
|
+
:param disallow_dgx_saas: The disallow_dgx_saas of this V1Organization. # noqa: E501
|
|
772
|
+
:type: bool
|
|
773
|
+
"""
|
|
774
|
+
|
|
775
|
+
self._disallow_dgx_saas = disallow_dgx_saas
|
|
776
|
+
|
|
777
|
+
@property
|
|
778
|
+
def disallow_gcp_saas(self) -> 'bool':
|
|
779
|
+
"""Gets the disallow_gcp_saas of this V1Organization. # noqa: E501
|
|
780
|
+
|
|
781
|
+
|
|
782
|
+
:return: The disallow_gcp_saas of this V1Organization. # noqa: E501
|
|
783
|
+
:rtype: bool
|
|
784
|
+
"""
|
|
785
|
+
return self._disallow_gcp_saas
|
|
786
|
+
|
|
787
|
+
@disallow_gcp_saas.setter
|
|
788
|
+
def disallow_gcp_saas(self, disallow_gcp_saas: 'bool'):
|
|
789
|
+
"""Sets the disallow_gcp_saas of this V1Organization.
|
|
790
|
+
|
|
791
|
+
|
|
792
|
+
:param disallow_gcp_saas: The disallow_gcp_saas of this V1Organization. # noqa: E501
|
|
793
|
+
:type: bool
|
|
794
|
+
"""
|
|
795
|
+
|
|
796
|
+
self._disallow_gcp_saas = disallow_gcp_saas
|
|
797
|
+
|
|
798
|
+
@property
|
|
799
|
+
def disallow_lambda_saas(self) -> 'bool':
|
|
800
|
+
"""Gets the disallow_lambda_saas of this V1Organization. # noqa: E501
|
|
801
|
+
|
|
802
|
+
|
|
803
|
+
:return: The disallow_lambda_saas of this V1Organization. # noqa: E501
|
|
804
|
+
:rtype: bool
|
|
805
|
+
"""
|
|
806
|
+
return self._disallow_lambda_saas
|
|
807
|
+
|
|
808
|
+
@disallow_lambda_saas.setter
|
|
809
|
+
def disallow_lambda_saas(self, disallow_lambda_saas: 'bool'):
|
|
810
|
+
"""Sets the disallow_lambda_saas of this V1Organization.
|
|
811
|
+
|
|
812
|
+
|
|
813
|
+
:param disallow_lambda_saas: The disallow_lambda_saas of this V1Organization. # noqa: E501
|
|
814
|
+
:type: bool
|
|
815
|
+
"""
|
|
816
|
+
|
|
817
|
+
self._disallow_lambda_saas = disallow_lambda_saas
|
|
818
|
+
|
|
819
|
+
@property
|
|
820
|
+
def disallow_lightning_saas(self) -> 'bool':
|
|
821
|
+
"""Gets the disallow_lightning_saas of this V1Organization. # noqa: E501
|
|
822
|
+
|
|
823
|
+
|
|
824
|
+
:return: The disallow_lightning_saas of this V1Organization. # noqa: E501
|
|
825
|
+
:rtype: bool
|
|
826
|
+
"""
|
|
827
|
+
return self._disallow_lightning_saas
|
|
828
|
+
|
|
829
|
+
@disallow_lightning_saas.setter
|
|
830
|
+
def disallow_lightning_saas(self, disallow_lightning_saas: 'bool'):
|
|
831
|
+
"""Sets the disallow_lightning_saas of this V1Organization.
|
|
832
|
+
|
|
833
|
+
|
|
834
|
+
:param disallow_lightning_saas: The disallow_lightning_saas of this V1Organization. # noqa: E501
|
|
835
|
+
:type: bool
|
|
836
|
+
"""
|
|
837
|
+
|
|
838
|
+
self._disallow_lightning_saas = disallow_lightning_saas
|
|
839
|
+
|
|
840
|
+
@property
|
|
841
|
+
def disallow_nebius_saas(self) -> 'bool':
|
|
842
|
+
"""Gets the disallow_nebius_saas of this V1Organization. # noqa: E501
|
|
843
|
+
|
|
844
|
+
|
|
845
|
+
:return: The disallow_nebius_saas of this V1Organization. # noqa: E501
|
|
846
|
+
:rtype: bool
|
|
847
|
+
"""
|
|
848
|
+
return self._disallow_nebius_saas
|
|
849
|
+
|
|
850
|
+
@disallow_nebius_saas.setter
|
|
851
|
+
def disallow_nebius_saas(self, disallow_nebius_saas: 'bool'):
|
|
852
|
+
"""Sets the disallow_nebius_saas of this V1Organization.
|
|
853
|
+
|
|
854
|
+
|
|
855
|
+
:param disallow_nebius_saas: The disallow_nebius_saas of this V1Organization. # noqa: E501
|
|
856
|
+
:type: bool
|
|
857
|
+
"""
|
|
858
|
+
|
|
859
|
+
self._disallow_nebius_saas = disallow_nebius_saas
|
|
860
|
+
|
|
861
|
+
@property
|
|
862
|
+
def disallow_voltage_park_saas(self) -> 'bool':
|
|
863
|
+
"""Gets the disallow_voltage_park_saas of this V1Organization. # noqa: E501
|
|
864
|
+
|
|
865
|
+
|
|
866
|
+
:return: The disallow_voltage_park_saas of this V1Organization. # noqa: E501
|
|
867
|
+
:rtype: bool
|
|
868
|
+
"""
|
|
869
|
+
return self._disallow_voltage_park_saas
|
|
870
|
+
|
|
871
|
+
@disallow_voltage_park_saas.setter
|
|
872
|
+
def disallow_voltage_park_saas(self, disallow_voltage_park_saas: 'bool'):
|
|
873
|
+
"""Sets the disallow_voltage_park_saas of this V1Organization.
|
|
874
|
+
|
|
875
|
+
|
|
876
|
+
:param disallow_voltage_park_saas: The disallow_voltage_park_saas of this V1Organization. # noqa: E501
|
|
877
|
+
:type: bool
|
|
878
|
+
"""
|
|
879
|
+
|
|
880
|
+
self._disallow_voltage_park_saas = disallow_voltage_park_saas
|
|
881
|
+
|
|
882
|
+
@property
|
|
883
|
+
def disallow_vultr_saas(self) -> 'bool':
|
|
884
|
+
"""Gets the disallow_vultr_saas of this V1Organization. # noqa: E501
|
|
885
|
+
|
|
886
|
+
|
|
887
|
+
:return: The disallow_vultr_saas of this V1Organization. # noqa: E501
|
|
888
|
+
:rtype: bool
|
|
889
|
+
"""
|
|
890
|
+
return self._disallow_vultr_saas
|
|
891
|
+
|
|
892
|
+
@disallow_vultr_saas.setter
|
|
893
|
+
def disallow_vultr_saas(self, disallow_vultr_saas: 'bool'):
|
|
894
|
+
"""Sets the disallow_vultr_saas of this V1Organization.
|
|
895
|
+
|
|
896
|
+
|
|
897
|
+
:param disallow_vultr_saas: The disallow_vultr_saas of this V1Organization. # noqa: E501
|
|
898
|
+
:type: bool
|
|
899
|
+
"""
|
|
900
|
+
|
|
901
|
+
self._disallow_vultr_saas = disallow_vultr_saas
|
|
902
|
+
|
|
321
903
|
@property
|
|
322
904
|
def display_name(self) -> 'str':
|
|
323
905
|
"""Gets the display_name of this V1Organization. # noqa: E501
|
|
@@ -402,6 +984,69 @@ class V1Organization(object):
|
|
|
402
984
|
|
|
403
985
|
self._featured_gallery = featured_gallery
|
|
404
986
|
|
|
987
|
+
@property
|
|
988
|
+
def full_story_end_date(self) -> 'datetime':
|
|
989
|
+
"""Gets the full_story_end_date of this V1Organization. # noqa: E501
|
|
990
|
+
|
|
991
|
+
|
|
992
|
+
:return: The full_story_end_date of this V1Organization. # noqa: E501
|
|
993
|
+
:rtype: datetime
|
|
994
|
+
"""
|
|
995
|
+
return self._full_story_end_date
|
|
996
|
+
|
|
997
|
+
@full_story_end_date.setter
|
|
998
|
+
def full_story_end_date(self, full_story_end_date: 'datetime'):
|
|
999
|
+
"""Sets the full_story_end_date of this V1Organization.
|
|
1000
|
+
|
|
1001
|
+
|
|
1002
|
+
:param full_story_end_date: The full_story_end_date of this V1Organization. # noqa: E501
|
|
1003
|
+
:type: datetime
|
|
1004
|
+
"""
|
|
1005
|
+
|
|
1006
|
+
self._full_story_end_date = full_story_end_date
|
|
1007
|
+
|
|
1008
|
+
@property
|
|
1009
|
+
def full_story_start_date(self) -> 'datetime':
|
|
1010
|
+
"""Gets the full_story_start_date of this V1Organization. # noqa: E501
|
|
1011
|
+
|
|
1012
|
+
|
|
1013
|
+
:return: The full_story_start_date of this V1Organization. # noqa: E501
|
|
1014
|
+
:rtype: datetime
|
|
1015
|
+
"""
|
|
1016
|
+
return self._full_story_start_date
|
|
1017
|
+
|
|
1018
|
+
@full_story_start_date.setter
|
|
1019
|
+
def full_story_start_date(self, full_story_start_date: 'datetime'):
|
|
1020
|
+
"""Sets the full_story_start_date of this V1Organization.
|
|
1021
|
+
|
|
1022
|
+
|
|
1023
|
+
:param full_story_start_date: The full_story_start_date of this V1Organization. # noqa: E501
|
|
1024
|
+
:type: datetime
|
|
1025
|
+
"""
|
|
1026
|
+
|
|
1027
|
+
self._full_story_start_date = full_story_start_date
|
|
1028
|
+
|
|
1029
|
+
@property
|
|
1030
|
+
def general_teamspace(self) -> 'bool':
|
|
1031
|
+
"""Gets the general_teamspace of this V1Organization. # noqa: E501
|
|
1032
|
+
|
|
1033
|
+
|
|
1034
|
+
:return: The general_teamspace of this V1Organization. # noqa: E501
|
|
1035
|
+
:rtype: bool
|
|
1036
|
+
"""
|
|
1037
|
+
return self._general_teamspace
|
|
1038
|
+
|
|
1039
|
+
@general_teamspace.setter
|
|
1040
|
+
def general_teamspace(self, general_teamspace: 'bool'):
|
|
1041
|
+
"""Sets the general_teamspace of this V1Organization.
|
|
1042
|
+
|
|
1043
|
+
|
|
1044
|
+
:param general_teamspace: The general_teamspace of this V1Organization. # noqa: E501
|
|
1045
|
+
:type: bool
|
|
1046
|
+
"""
|
|
1047
|
+
|
|
1048
|
+
self._general_teamspace = general_teamspace
|
|
1049
|
+
|
|
405
1050
|
@property
|
|
406
1051
|
def id(self) -> 'str':
|
|
407
1052
|
"""Gets the id of this V1Organization. # noqa: E501
|
|
@@ -423,6 +1068,27 @@ class V1Organization(object):
|
|
|
423
1068
|
|
|
424
1069
|
self._id = id
|
|
425
1070
|
|
|
1071
|
+
@property
|
|
1072
|
+
def last_storage_overuse_notification_sent_at(self) -> 'datetime':
|
|
1073
|
+
"""Gets the last_storage_overuse_notification_sent_at of this V1Organization. # noqa: E501
|
|
1074
|
+
|
|
1075
|
+
|
|
1076
|
+
:return: The last_storage_overuse_notification_sent_at of this V1Organization. # noqa: E501
|
|
1077
|
+
:rtype: datetime
|
|
1078
|
+
"""
|
|
1079
|
+
return self._last_storage_overuse_notification_sent_at
|
|
1080
|
+
|
|
1081
|
+
@last_storage_overuse_notification_sent_at.setter
|
|
1082
|
+
def last_storage_overuse_notification_sent_at(self, last_storage_overuse_notification_sent_at: 'datetime'):
|
|
1083
|
+
"""Sets the last_storage_overuse_notification_sent_at of this V1Organization.
|
|
1084
|
+
|
|
1085
|
+
|
|
1086
|
+
:param last_storage_overuse_notification_sent_at: The last_storage_overuse_notification_sent_at of this V1Organization. # noqa: E501
|
|
1087
|
+
:type: datetime
|
|
1088
|
+
"""
|
|
1089
|
+
|
|
1090
|
+
self._last_storage_overuse_notification_sent_at = last_storage_overuse_notification_sent_at
|
|
1091
|
+
|
|
426
1092
|
@property
|
|
427
1093
|
def location(self) -> 'str':
|
|
428
1094
|
"""Gets the location of this V1Organization. # noqa: E501
|
|
@@ -486,6 +1152,69 @@ class V1Organization(object):
|
|
|
486
1152
|
|
|
487
1153
|
self._preferred_cluster = preferred_cluster
|
|
488
1154
|
|
|
1155
|
+
@property
|
|
1156
|
+
def preferred_deployment_provider(self) -> 'str':
|
|
1157
|
+
"""Gets the preferred_deployment_provider of this V1Organization. # noqa: E501
|
|
1158
|
+
|
|
1159
|
+
|
|
1160
|
+
:return: The preferred_deployment_provider of this V1Organization. # noqa: E501
|
|
1161
|
+
:rtype: str
|
|
1162
|
+
"""
|
|
1163
|
+
return self._preferred_deployment_provider
|
|
1164
|
+
|
|
1165
|
+
@preferred_deployment_provider.setter
|
|
1166
|
+
def preferred_deployment_provider(self, preferred_deployment_provider: 'str'):
|
|
1167
|
+
"""Sets the preferred_deployment_provider of this V1Organization.
|
|
1168
|
+
|
|
1169
|
+
|
|
1170
|
+
:param preferred_deployment_provider: The preferred_deployment_provider of this V1Organization. # noqa: E501
|
|
1171
|
+
:type: str
|
|
1172
|
+
"""
|
|
1173
|
+
|
|
1174
|
+
self._preferred_deployment_provider = preferred_deployment_provider
|
|
1175
|
+
|
|
1176
|
+
@property
|
|
1177
|
+
def preferred_studio_provider(self) -> 'str':
|
|
1178
|
+
"""Gets the preferred_studio_provider of this V1Organization. # noqa: E501
|
|
1179
|
+
|
|
1180
|
+
|
|
1181
|
+
:return: The preferred_studio_provider of this V1Organization. # noqa: E501
|
|
1182
|
+
:rtype: str
|
|
1183
|
+
"""
|
|
1184
|
+
return self._preferred_studio_provider
|
|
1185
|
+
|
|
1186
|
+
@preferred_studio_provider.setter
|
|
1187
|
+
def preferred_studio_provider(self, preferred_studio_provider: 'str'):
|
|
1188
|
+
"""Sets the preferred_studio_provider of this V1Organization.
|
|
1189
|
+
|
|
1190
|
+
|
|
1191
|
+
:param preferred_studio_provider: The preferred_studio_provider of this V1Organization. # noqa: E501
|
|
1192
|
+
:type: str
|
|
1193
|
+
"""
|
|
1194
|
+
|
|
1195
|
+
self._preferred_studio_provider = preferred_studio_provider
|
|
1196
|
+
|
|
1197
|
+
@property
|
|
1198
|
+
def show_model_apis_tab(self) -> 'bool':
|
|
1199
|
+
"""Gets the show_model_apis_tab of this V1Organization. # noqa: E501
|
|
1200
|
+
|
|
1201
|
+
|
|
1202
|
+
:return: The show_model_apis_tab of this V1Organization. # noqa: E501
|
|
1203
|
+
:rtype: bool
|
|
1204
|
+
"""
|
|
1205
|
+
return self._show_model_apis_tab
|
|
1206
|
+
|
|
1207
|
+
@show_model_apis_tab.setter
|
|
1208
|
+
def show_model_apis_tab(self, show_model_apis_tab: 'bool'):
|
|
1209
|
+
"""Sets the show_model_apis_tab of this V1Organization.
|
|
1210
|
+
|
|
1211
|
+
|
|
1212
|
+
:param show_model_apis_tab: The show_model_apis_tab of this V1Organization. # noqa: E501
|
|
1213
|
+
:type: bool
|
|
1214
|
+
"""
|
|
1215
|
+
|
|
1216
|
+
self._show_model_apis_tab = show_model_apis_tab
|
|
1217
|
+
|
|
489
1218
|
@property
|
|
490
1219
|
def start_studios_on_spot_instance(self) -> 'bool':
|
|
491
1220
|
"""Gets the start_studios_on_spot_instance of this V1Organization. # noqa: E501
|
|
@@ -507,6 +1236,90 @@ class V1Organization(object):
|
|
|
507
1236
|
|
|
508
1237
|
self._start_studios_on_spot_instance = start_studios_on_spot_instance
|
|
509
1238
|
|
|
1239
|
+
@property
|
|
1240
|
+
def storage_overuse_bytes(self) -> 'str':
|
|
1241
|
+
"""Gets the storage_overuse_bytes of this V1Organization. # noqa: E501
|
|
1242
|
+
|
|
1243
|
+
|
|
1244
|
+
:return: The storage_overuse_bytes of this V1Organization. # noqa: E501
|
|
1245
|
+
:rtype: str
|
|
1246
|
+
"""
|
|
1247
|
+
return self._storage_overuse_bytes
|
|
1248
|
+
|
|
1249
|
+
@storage_overuse_bytes.setter
|
|
1250
|
+
def storage_overuse_bytes(self, storage_overuse_bytes: 'str'):
|
|
1251
|
+
"""Sets the storage_overuse_bytes of this V1Organization.
|
|
1252
|
+
|
|
1253
|
+
|
|
1254
|
+
:param storage_overuse_bytes: The storage_overuse_bytes of this V1Organization. # noqa: E501
|
|
1255
|
+
:type: str
|
|
1256
|
+
"""
|
|
1257
|
+
|
|
1258
|
+
self._storage_overuse_bytes = storage_overuse_bytes
|
|
1259
|
+
|
|
1260
|
+
@property
|
|
1261
|
+
def storage_overuse_deletion_at(self) -> 'datetime':
|
|
1262
|
+
"""Gets the storage_overuse_deletion_at of this V1Organization. # noqa: E501
|
|
1263
|
+
|
|
1264
|
+
|
|
1265
|
+
:return: The storage_overuse_deletion_at of this V1Organization. # noqa: E501
|
|
1266
|
+
:rtype: datetime
|
|
1267
|
+
"""
|
|
1268
|
+
return self._storage_overuse_deletion_at
|
|
1269
|
+
|
|
1270
|
+
@storage_overuse_deletion_at.setter
|
|
1271
|
+
def storage_overuse_deletion_at(self, storage_overuse_deletion_at: 'datetime'):
|
|
1272
|
+
"""Sets the storage_overuse_deletion_at of this V1Organization.
|
|
1273
|
+
|
|
1274
|
+
|
|
1275
|
+
:param storage_overuse_deletion_at: The storage_overuse_deletion_at of this V1Organization. # noqa: E501
|
|
1276
|
+
:type: datetime
|
|
1277
|
+
"""
|
|
1278
|
+
|
|
1279
|
+
self._storage_overuse_deletion_at = storage_overuse_deletion_at
|
|
1280
|
+
|
|
1281
|
+
@property
|
|
1282
|
+
def storage_overuse_notification_count(self) -> 'int':
|
|
1283
|
+
"""Gets the storage_overuse_notification_count of this V1Organization. # noqa: E501
|
|
1284
|
+
|
|
1285
|
+
|
|
1286
|
+
:return: The storage_overuse_notification_count of this V1Organization. # noqa: E501
|
|
1287
|
+
:rtype: int
|
|
1288
|
+
"""
|
|
1289
|
+
return self._storage_overuse_notification_count
|
|
1290
|
+
|
|
1291
|
+
@storage_overuse_notification_count.setter
|
|
1292
|
+
def storage_overuse_notification_count(self, storage_overuse_notification_count: 'int'):
|
|
1293
|
+
"""Sets the storage_overuse_notification_count of this V1Organization.
|
|
1294
|
+
|
|
1295
|
+
|
|
1296
|
+
:param storage_overuse_notification_count: The storage_overuse_notification_count of this V1Organization. # noqa: E501
|
|
1297
|
+
:type: int
|
|
1298
|
+
"""
|
|
1299
|
+
|
|
1300
|
+
self._storage_overuse_notification_count = storage_overuse_notification_count
|
|
1301
|
+
|
|
1302
|
+
@property
|
|
1303
|
+
def switch_to_default_machine_on_idle(self) -> 'bool':
|
|
1304
|
+
"""Gets the switch_to_default_machine_on_idle of this V1Organization. # noqa: E501
|
|
1305
|
+
|
|
1306
|
+
|
|
1307
|
+
:return: The switch_to_default_machine_on_idle of this V1Organization. # noqa: E501
|
|
1308
|
+
:rtype: bool
|
|
1309
|
+
"""
|
|
1310
|
+
return self._switch_to_default_machine_on_idle
|
|
1311
|
+
|
|
1312
|
+
@switch_to_default_machine_on_idle.setter
|
|
1313
|
+
def switch_to_default_machine_on_idle(self, switch_to_default_machine_on_idle: 'bool'):
|
|
1314
|
+
"""Sets the switch_to_default_machine_on_idle of this V1Organization.
|
|
1315
|
+
|
|
1316
|
+
|
|
1317
|
+
:param switch_to_default_machine_on_idle: The switch_to_default_machine_on_idle of this V1Organization. # noqa: E501
|
|
1318
|
+
:type: bool
|
|
1319
|
+
"""
|
|
1320
|
+
|
|
1321
|
+
self._switch_to_default_machine_on_idle = switch_to_default_machine_on_idle
|
|
1322
|
+
|
|
510
1323
|
@property
|
|
511
1324
|
def teamspace_default_credits(self) -> 'float':
|
|
512
1325
|
"""Gets the teamspace_default_credits of this V1Organization. # noqa: E501
|
|
@@ -570,6 +1383,27 @@ class V1Organization(object):
|
|
|
570
1383
|
|
|
571
1384
|
self._updated_at = updated_at
|
|
572
1385
|
|
|
1386
|
+
@property
|
|
1387
|
+
def workload_max_run_duration(self) -> 'str':
|
|
1388
|
+
"""Gets the workload_max_run_duration of this V1Organization. # noqa: E501
|
|
1389
|
+
|
|
1390
|
+
|
|
1391
|
+
:return: The workload_max_run_duration of this V1Organization. # noqa: E501
|
|
1392
|
+
:rtype: str
|
|
1393
|
+
"""
|
|
1394
|
+
return self._workload_max_run_duration
|
|
1395
|
+
|
|
1396
|
+
@workload_max_run_duration.setter
|
|
1397
|
+
def workload_max_run_duration(self, workload_max_run_duration: 'str'):
|
|
1398
|
+
"""Sets the workload_max_run_duration of this V1Organization.
|
|
1399
|
+
|
|
1400
|
+
|
|
1401
|
+
:param workload_max_run_duration: The workload_max_run_duration of this V1Organization. # noqa: E501
|
|
1402
|
+
:type: str
|
|
1403
|
+
"""
|
|
1404
|
+
|
|
1405
|
+
self._workload_max_run_duration = workload_max_run_duration
|
|
1406
|
+
|
|
573
1407
|
def to_dict(self) -> dict:
|
|
574
1408
|
"""Returns the model properties as a dict"""
|
|
575
1409
|
result = {}
|