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,259 +41,263 @@ class V1UserFeatures(object):
|
|
|
41
41
|
and the value is json key in definition.
|
|
42
42
|
"""
|
|
43
43
|
swagger_types = {
|
|
44
|
-
'advanced_deployment_autoscaling': 'bool',
|
|
45
44
|
'affiliate_links': 'bool',
|
|
46
45
|
'agents_v2': 'bool',
|
|
47
46
|
'ai_hub_monetization': 'bool',
|
|
48
47
|
'auto_fast_load': 'bool',
|
|
49
|
-
'auto_join_orgs': 'bool',
|
|
50
48
|
'b2c_experience': 'bool',
|
|
49
|
+
'byo_machine_type': 'bool',
|
|
51
50
|
'cap_add': 'list[str]',
|
|
52
51
|
'cap_drop': 'list[str]',
|
|
53
52
|
'capacity_reservation_byoc': 'bool',
|
|
54
53
|
'capacity_reservation_dry_run': 'bool',
|
|
54
|
+
'chat_models': 'bool',
|
|
55
|
+
'cloudspace_schedules': 'bool',
|
|
55
56
|
'code_tab': 'bool',
|
|
56
57
|
'collab_screen_sharing': 'bool',
|
|
58
|
+
'control_center_monitoring': 'bool',
|
|
57
59
|
'cost_attribution_settings': 'bool',
|
|
58
|
-
'
|
|
59
|
-
'custom_instance_types': 'bool',
|
|
60
|
+
'datasets': 'bool',
|
|
60
61
|
'default_one_cluster': 'bool',
|
|
61
|
-
'deployment_customize_api': 'bool',
|
|
62
|
-
'deployment_data_path': 'bool',
|
|
63
|
-
'deployment_gallery': 'bool',
|
|
64
|
-
'deployment_persistent_disk': 'bool',
|
|
65
|
-
'deployment_version_visibility': 'bool',
|
|
66
|
-
'docs_agent': 'bool',
|
|
67
62
|
'drive_v2': 'bool',
|
|
68
|
-
'
|
|
69
|
-
'
|
|
70
|
-
'
|
|
63
|
+
'enterprise_compute_admin': 'bool',
|
|
64
|
+
'f234': 'bool',
|
|
65
|
+
'f236': 'bool',
|
|
66
|
+
'f240': 'bool',
|
|
67
|
+
'f241': 'bool',
|
|
68
|
+
'f243': 'bool',
|
|
69
|
+
'f245': 'bool',
|
|
70
|
+
'f247': 'bool',
|
|
71
|
+
'f250': 'bool',
|
|
72
|
+
'f252': 'bool',
|
|
73
|
+
'f253': 'bool',
|
|
74
|
+
'f254': 'bool',
|
|
75
|
+
'f258': 'bool',
|
|
76
|
+
'f259': 'bool',
|
|
77
|
+
'f261': 'bool',
|
|
78
|
+
'f262': 'bool',
|
|
79
|
+
'f265': 'bool',
|
|
80
|
+
'f266': 'bool',
|
|
81
|
+
'f268': 'bool',
|
|
82
|
+
'f269': 'bool',
|
|
83
|
+
'f270': 'bool',
|
|
84
|
+
'f271': 'bool',
|
|
85
|
+
'f272': 'bool',
|
|
86
|
+
'f273': 'bool',
|
|
87
|
+
'f274': 'bool',
|
|
88
|
+
'fair_share': 'bool',
|
|
71
89
|
'featured_studios_admin': 'bool',
|
|
72
|
-
'
|
|
73
|
-
'
|
|
74
|
-
'
|
|
75
|
-
'instant_capacity_reservation': 'bool',
|
|
76
|
-
'jobs_init': 'bool',
|
|
77
|
-
'jobs_v2': 'bool',
|
|
90
|
+
'job_artifacts_v2': 'bool',
|
|
91
|
+
'kubernetes_cluster_ui': 'bool',
|
|
92
|
+
'kubernetes_clusters': 'bool',
|
|
78
93
|
'landing_studios': 'bool',
|
|
79
|
-
'lightning_registry': 'bool',
|
|
80
94
|
'lit_logger': 'bool',
|
|
81
|
-
'
|
|
95
|
+
'marketplace': 'bool',
|
|
82
96
|
'mmt_fault_tolerance': 'bool',
|
|
83
97
|
'mmt_strategy_selector': 'bool',
|
|
84
|
-
'mmt_v2': 'bool',
|
|
85
|
-
'model_store': 'bool',
|
|
86
|
-
'multiple_deployment_versions': 'bool',
|
|
87
98
|
'multiple_studio_versions': 'bool',
|
|
99
|
+
'nerf_fs_nonpaying': 'bool',
|
|
88
100
|
'org_level_member_permissions': 'bool',
|
|
89
|
-
'
|
|
90
|
-
'
|
|
101
|
+
'org_usage_limits': 'bool',
|
|
102
|
+
'persistent_disk': 'bool',
|
|
91
103
|
'plugin_distributed': 'bool',
|
|
92
|
-
'plugin_fiftyone': 'bool',
|
|
93
104
|
'plugin_inference': 'bool',
|
|
94
105
|
'plugin_label_studio': 'bool',
|
|
95
106
|
'plugin_langflow': 'bool',
|
|
96
|
-
'plugin_lightning_apps': 'bool',
|
|
97
|
-
'plugin_lightning_apps_distributed': 'bool',
|
|
98
|
-
'plugin_mage_ai': 'bool',
|
|
99
|
-
'plugin_milvus': 'bool',
|
|
100
107
|
'plugin_python_profiler': 'bool',
|
|
101
|
-
'plugin_react': 'bool',
|
|
102
|
-
'plugin_service': 'bool',
|
|
103
108
|
'plugin_sweeps': 'bool',
|
|
104
|
-
'plugin_weviate': 'bool',
|
|
105
109
|
'pricing_updates': 'bool',
|
|
106
110
|
'product_generator': 'bool',
|
|
111
|
+
'product_license': 'bool',
|
|
107
112
|
'project_selector': 'bool',
|
|
108
|
-
'
|
|
113
|
+
'publish_pipelines': 'bool',
|
|
114
|
+
'reserved_machines_tab': 'bool',
|
|
109
115
|
'restartable_jobs': 'bool',
|
|
110
116
|
'runnable_public_studio_page': 'bool',
|
|
117
|
+
'security_docs': 'bool',
|
|
111
118
|
'show_dev_admin': 'bool',
|
|
112
119
|
'slurm': 'bool',
|
|
113
|
-
'
|
|
114
|
-
'
|
|
115
|
-
'snowflake_connection': 'bool',
|
|
116
|
-
'spot_v2': 'bool',
|
|
120
|
+
'specialised_studios': 'bool',
|
|
121
|
+
'storage_overuse_deletion': 'bool',
|
|
117
122
|
'studio_config': 'bool',
|
|
118
|
-
'studio_on_stop': 'bool',
|
|
119
123
|
'studio_version_visibility': 'bool',
|
|
120
|
-
'teamspace_storage_tab': 'bool',
|
|
121
|
-
'trainium2': 'bool',
|
|
122
|
-
'use_rclone_mounts_only': 'bool',
|
|
123
124
|
'vultr': 'bool',
|
|
124
|
-
'
|
|
125
|
+
'weka': 'bool',
|
|
126
|
+
'writable_s3_connections': 'bool'
|
|
125
127
|
}
|
|
126
128
|
|
|
127
129
|
attribute_map = {
|
|
128
|
-
'advanced_deployment_autoscaling': 'advancedDeploymentAutoscaling',
|
|
129
130
|
'affiliate_links': 'affiliateLinks',
|
|
130
131
|
'agents_v2': 'agentsV2',
|
|
131
132
|
'ai_hub_monetization': 'aiHubMonetization',
|
|
132
133
|
'auto_fast_load': 'autoFastLoad',
|
|
133
|
-
'auto_join_orgs': 'autoJoinOrgs',
|
|
134
134
|
'b2c_experience': 'b2cExperience',
|
|
135
|
+
'byo_machine_type': 'byoMachineType',
|
|
135
136
|
'cap_add': 'capAdd',
|
|
136
137
|
'cap_drop': 'capDrop',
|
|
137
138
|
'capacity_reservation_byoc': 'capacityReservationByoc',
|
|
138
139
|
'capacity_reservation_dry_run': 'capacityReservationDryRun',
|
|
140
|
+
'chat_models': 'chatModels',
|
|
141
|
+
'cloudspace_schedules': 'cloudspaceSchedules',
|
|
139
142
|
'code_tab': 'codeTab',
|
|
140
143
|
'collab_screen_sharing': 'collabScreenSharing',
|
|
144
|
+
'control_center_monitoring': 'controlCenterMonitoring',
|
|
141
145
|
'cost_attribution_settings': 'costAttributionSettings',
|
|
142
|
-
'
|
|
143
|
-
'custom_instance_types': 'customInstanceTypes',
|
|
146
|
+
'datasets': 'datasets',
|
|
144
147
|
'default_one_cluster': 'defaultOneCluster',
|
|
145
|
-
'deployment_customize_api': 'deploymentCustomizeApi',
|
|
146
|
-
'deployment_data_path': 'deploymentDataPath',
|
|
147
|
-
'deployment_gallery': 'deploymentGallery',
|
|
148
|
-
'deployment_persistent_disk': 'deploymentPersistentDisk',
|
|
149
|
-
'deployment_version_visibility': 'deploymentVersionVisibility',
|
|
150
|
-
'docs_agent': 'docsAgent',
|
|
151
148
|
'drive_v2': 'driveV2',
|
|
152
|
-
'
|
|
153
|
-
'
|
|
154
|
-
'
|
|
149
|
+
'enterprise_compute_admin': 'enterpriseComputeAdmin',
|
|
150
|
+
'f234': 'f234',
|
|
151
|
+
'f236': 'f236',
|
|
152
|
+
'f240': 'f240',
|
|
153
|
+
'f241': 'f241',
|
|
154
|
+
'f243': 'f243',
|
|
155
|
+
'f245': 'f245',
|
|
156
|
+
'f247': 'f247',
|
|
157
|
+
'f250': 'f250',
|
|
158
|
+
'f252': 'f252',
|
|
159
|
+
'f253': 'f253',
|
|
160
|
+
'f254': 'f254',
|
|
161
|
+
'f258': 'f258',
|
|
162
|
+
'f259': 'f259',
|
|
163
|
+
'f261': 'f261',
|
|
164
|
+
'f262': 'f262',
|
|
165
|
+
'f265': 'f265',
|
|
166
|
+
'f266': 'f266',
|
|
167
|
+
'f268': 'f268',
|
|
168
|
+
'f269': 'f269',
|
|
169
|
+
'f270': 'f270',
|
|
170
|
+
'f271': 'f271',
|
|
171
|
+
'f272': 'f272',
|
|
172
|
+
'f273': 'f273',
|
|
173
|
+
'f274': 'f274',
|
|
174
|
+
'fair_share': 'fairShare',
|
|
155
175
|
'featured_studios_admin': 'featuredStudiosAdmin',
|
|
156
|
-
'
|
|
157
|
-
'
|
|
158
|
-
'
|
|
159
|
-
'instant_capacity_reservation': 'instantCapacityReservation',
|
|
160
|
-
'jobs_init': 'jobsInit',
|
|
161
|
-
'jobs_v2': 'jobsV2',
|
|
176
|
+
'job_artifacts_v2': 'jobArtifactsV2',
|
|
177
|
+
'kubernetes_cluster_ui': 'kubernetesClusterUi',
|
|
178
|
+
'kubernetes_clusters': 'kubernetesClusters',
|
|
162
179
|
'landing_studios': 'landingStudios',
|
|
163
|
-
'lightning_registry': 'lightningRegistry',
|
|
164
180
|
'lit_logger': 'litLogger',
|
|
165
|
-
'
|
|
181
|
+
'marketplace': 'marketplace',
|
|
166
182
|
'mmt_fault_tolerance': 'mmtFaultTolerance',
|
|
167
183
|
'mmt_strategy_selector': 'mmtStrategySelector',
|
|
168
|
-
'mmt_v2': 'mmtV2',
|
|
169
|
-
'model_store': 'modelStore',
|
|
170
|
-
'multiple_deployment_versions': 'multipleDeploymentVersions',
|
|
171
184
|
'multiple_studio_versions': 'multipleStudioVersions',
|
|
185
|
+
'nerf_fs_nonpaying': 'nerfFsNonpaying',
|
|
172
186
|
'org_level_member_permissions': 'orgLevelMemberPermissions',
|
|
173
|
-
'
|
|
174
|
-
'
|
|
187
|
+
'org_usage_limits': 'orgUsageLimits',
|
|
188
|
+
'persistent_disk': 'persistentDisk',
|
|
175
189
|
'plugin_distributed': 'pluginDistributed',
|
|
176
|
-
'plugin_fiftyone': 'pluginFiftyone',
|
|
177
190
|
'plugin_inference': 'pluginInference',
|
|
178
191
|
'plugin_label_studio': 'pluginLabelStudio',
|
|
179
192
|
'plugin_langflow': 'pluginLangflow',
|
|
180
|
-
'plugin_lightning_apps': 'pluginLightningApps',
|
|
181
|
-
'plugin_lightning_apps_distributed': 'pluginLightningAppsDistributed',
|
|
182
|
-
'plugin_mage_ai': 'pluginMageAi',
|
|
183
|
-
'plugin_milvus': 'pluginMilvus',
|
|
184
193
|
'plugin_python_profiler': 'pluginPythonProfiler',
|
|
185
|
-
'plugin_react': 'pluginReact',
|
|
186
|
-
'plugin_service': 'pluginService',
|
|
187
194
|
'plugin_sweeps': 'pluginSweeps',
|
|
188
|
-
'plugin_weviate': 'pluginWeviate',
|
|
189
195
|
'pricing_updates': 'pricingUpdates',
|
|
190
196
|
'product_generator': 'productGenerator',
|
|
197
|
+
'product_license': 'productLicense',
|
|
191
198
|
'project_selector': 'projectSelector',
|
|
192
|
-
'
|
|
199
|
+
'publish_pipelines': 'publishPipelines',
|
|
200
|
+
'reserved_machines_tab': 'reservedMachinesTab',
|
|
193
201
|
'restartable_jobs': 'restartableJobs',
|
|
194
202
|
'runnable_public_studio_page': 'runnablePublicStudioPage',
|
|
203
|
+
'security_docs': 'securityDocs',
|
|
195
204
|
'show_dev_admin': 'showDevAdmin',
|
|
196
205
|
'slurm': 'slurm',
|
|
197
|
-
'
|
|
198
|
-
'
|
|
199
|
-
'snowflake_connection': 'snowflakeConnection',
|
|
200
|
-
'spot_v2': 'spotV2',
|
|
206
|
+
'specialised_studios': 'specialisedStudios',
|
|
207
|
+
'storage_overuse_deletion': 'storageOveruseDeletion',
|
|
201
208
|
'studio_config': 'studioConfig',
|
|
202
|
-
'studio_on_stop': 'studioOnStop',
|
|
203
209
|
'studio_version_visibility': 'studioVersionVisibility',
|
|
204
|
-
'teamspace_storage_tab': 'teamspaceStorageTab',
|
|
205
|
-
'trainium2': 'trainium2',
|
|
206
|
-
'use_rclone_mounts_only': 'useRcloneMountsOnly',
|
|
207
210
|
'vultr': 'vultr',
|
|
208
|
-
'
|
|
211
|
+
'weka': 'weka',
|
|
212
|
+
'writable_s3_connections': 'writableS3Connections'
|
|
209
213
|
}
|
|
210
214
|
|
|
211
|
-
def __init__(self,
|
|
215
|
+
def __init__(self, affiliate_links: 'bool' =None, agents_v2: 'bool' =None, ai_hub_monetization: 'bool' =None, auto_fast_load: 'bool' =None, b2c_experience: 'bool' =None, byo_machine_type: 'bool' =None, cap_add: 'list[str]' =None, cap_drop: 'list[str]' =None, capacity_reservation_byoc: 'bool' =None, capacity_reservation_dry_run: 'bool' =None, chat_models: 'bool' =None, cloudspace_schedules: 'bool' =None, code_tab: 'bool' =None, collab_screen_sharing: 'bool' =None, control_center_monitoring: 'bool' =None, cost_attribution_settings: 'bool' =None, datasets: 'bool' =None, default_one_cluster: 'bool' =None, drive_v2: 'bool' =None, enterprise_compute_admin: 'bool' =None, f234: 'bool' =None, f236: 'bool' =None, f240: 'bool' =None, f241: 'bool' =None, f243: 'bool' =None, f245: 'bool' =None, f247: 'bool' =None, f250: 'bool' =None, f252: 'bool' =None, f253: 'bool' =None, f254: 'bool' =None, f258: 'bool' =None, f259: 'bool' =None, f261: 'bool' =None, f262: 'bool' =None, f265: 'bool' =None, f266: 'bool' =None, f268: 'bool' =None, f269: 'bool' =None, f270: 'bool' =None, f271: 'bool' =None, f272: 'bool' =None, f273: 'bool' =None, f274: 'bool' =None, fair_share: 'bool' =None, featured_studios_admin: 'bool' =None, job_artifacts_v2: 'bool' =None, kubernetes_cluster_ui: 'bool' =None, kubernetes_clusters: 'bool' =None, landing_studios: 'bool' =None, lit_logger: 'bool' =None, marketplace: 'bool' =None, mmt_fault_tolerance: 'bool' =None, mmt_strategy_selector: 'bool' =None, multiple_studio_versions: 'bool' =None, nerf_fs_nonpaying: 'bool' =None, org_level_member_permissions: 'bool' =None, org_usage_limits: 'bool' =None, persistent_disk: 'bool' =None, plugin_distributed: 'bool' =None, plugin_inference: 'bool' =None, plugin_label_studio: 'bool' =None, plugin_langflow: 'bool' =None, plugin_python_profiler: 'bool' =None, plugin_sweeps: 'bool' =None, pricing_updates: 'bool' =None, product_generator: 'bool' =None, product_license: 'bool' =None, project_selector: 'bool' =None, publish_pipelines: 'bool' =None, reserved_machines_tab: 'bool' =None, restartable_jobs: 'bool' =None, runnable_public_studio_page: 'bool' =None, security_docs: 'bool' =None, show_dev_admin: 'bool' =None, slurm: 'bool' =None, specialised_studios: 'bool' =None, storage_overuse_deletion: 'bool' =None, studio_config: 'bool' =None, studio_version_visibility: 'bool' =None, vultr: 'bool' =None, weka: 'bool' =None, writable_s3_connections: 'bool' =None): # noqa: E501
|
|
212
216
|
"""V1UserFeatures - a model defined in Swagger""" # noqa: E501
|
|
213
|
-
self._advanced_deployment_autoscaling = None
|
|
214
217
|
self._affiliate_links = None
|
|
215
218
|
self._agents_v2 = None
|
|
216
219
|
self._ai_hub_monetization = None
|
|
217
220
|
self._auto_fast_load = None
|
|
218
|
-
self._auto_join_orgs = None
|
|
219
221
|
self._b2c_experience = None
|
|
222
|
+
self._byo_machine_type = None
|
|
220
223
|
self._cap_add = None
|
|
221
224
|
self._cap_drop = None
|
|
222
225
|
self._capacity_reservation_byoc = None
|
|
223
226
|
self._capacity_reservation_dry_run = None
|
|
227
|
+
self._chat_models = None
|
|
228
|
+
self._cloudspace_schedules = None
|
|
224
229
|
self._code_tab = None
|
|
225
230
|
self._collab_screen_sharing = None
|
|
231
|
+
self._control_center_monitoring = None
|
|
226
232
|
self._cost_attribution_settings = None
|
|
227
|
-
self.
|
|
228
|
-
self._custom_instance_types = None
|
|
233
|
+
self._datasets = None
|
|
229
234
|
self._default_one_cluster = None
|
|
230
|
-
self._deployment_customize_api = None
|
|
231
|
-
self._deployment_data_path = None
|
|
232
|
-
self._deployment_gallery = None
|
|
233
|
-
self._deployment_persistent_disk = None
|
|
234
|
-
self._deployment_version_visibility = None
|
|
235
|
-
self._docs_agent = None
|
|
236
235
|
self._drive_v2 = None
|
|
237
|
-
self.
|
|
238
|
-
self.
|
|
239
|
-
self.
|
|
236
|
+
self._enterprise_compute_admin = None
|
|
237
|
+
self._f234 = None
|
|
238
|
+
self._f236 = None
|
|
239
|
+
self._f240 = None
|
|
240
|
+
self._f241 = None
|
|
241
|
+
self._f243 = None
|
|
242
|
+
self._f245 = None
|
|
243
|
+
self._f247 = None
|
|
244
|
+
self._f250 = None
|
|
245
|
+
self._f252 = None
|
|
246
|
+
self._f253 = None
|
|
247
|
+
self._f254 = None
|
|
248
|
+
self._f258 = None
|
|
249
|
+
self._f259 = None
|
|
250
|
+
self._f261 = None
|
|
251
|
+
self._f262 = None
|
|
252
|
+
self._f265 = None
|
|
253
|
+
self._f266 = None
|
|
254
|
+
self._f268 = None
|
|
255
|
+
self._f269 = None
|
|
256
|
+
self._f270 = None
|
|
257
|
+
self._f271 = None
|
|
258
|
+
self._f272 = None
|
|
259
|
+
self._f273 = None
|
|
260
|
+
self._f274 = None
|
|
261
|
+
self._fair_share = None
|
|
240
262
|
self._featured_studios_admin = None
|
|
241
|
-
self.
|
|
242
|
-
self.
|
|
243
|
-
self.
|
|
244
|
-
self._instant_capacity_reservation = None
|
|
245
|
-
self._jobs_init = None
|
|
246
|
-
self._jobs_v2 = None
|
|
263
|
+
self._job_artifacts_v2 = None
|
|
264
|
+
self._kubernetes_cluster_ui = None
|
|
265
|
+
self._kubernetes_clusters = None
|
|
247
266
|
self._landing_studios = None
|
|
248
|
-
self._lightning_registry = None
|
|
249
267
|
self._lit_logger = None
|
|
250
|
-
self.
|
|
268
|
+
self._marketplace = None
|
|
251
269
|
self._mmt_fault_tolerance = None
|
|
252
270
|
self._mmt_strategy_selector = None
|
|
253
|
-
self._mmt_v2 = None
|
|
254
|
-
self._model_store = None
|
|
255
|
-
self._multiple_deployment_versions = None
|
|
256
271
|
self._multiple_studio_versions = None
|
|
272
|
+
self._nerf_fs_nonpaying = None
|
|
257
273
|
self._org_level_member_permissions = None
|
|
258
|
-
self.
|
|
259
|
-
self.
|
|
274
|
+
self._org_usage_limits = None
|
|
275
|
+
self._persistent_disk = None
|
|
260
276
|
self._plugin_distributed = None
|
|
261
|
-
self._plugin_fiftyone = None
|
|
262
277
|
self._plugin_inference = None
|
|
263
278
|
self._plugin_label_studio = None
|
|
264
279
|
self._plugin_langflow = None
|
|
265
|
-
self._plugin_lightning_apps = None
|
|
266
|
-
self._plugin_lightning_apps_distributed = None
|
|
267
|
-
self._plugin_mage_ai = None
|
|
268
|
-
self._plugin_milvus = None
|
|
269
280
|
self._plugin_python_profiler = None
|
|
270
|
-
self._plugin_react = None
|
|
271
|
-
self._plugin_service = None
|
|
272
281
|
self._plugin_sweeps = None
|
|
273
|
-
self._plugin_weviate = None
|
|
274
282
|
self._pricing_updates = None
|
|
275
283
|
self._product_generator = None
|
|
284
|
+
self._product_license = None
|
|
276
285
|
self._project_selector = None
|
|
277
|
-
self.
|
|
286
|
+
self._publish_pipelines = None
|
|
287
|
+
self._reserved_machines_tab = None
|
|
278
288
|
self._restartable_jobs = None
|
|
279
289
|
self._runnable_public_studio_page = None
|
|
290
|
+
self._security_docs = None
|
|
280
291
|
self._show_dev_admin = None
|
|
281
292
|
self._slurm = None
|
|
282
|
-
self.
|
|
283
|
-
self.
|
|
284
|
-
self._snowflake_connection = None
|
|
285
|
-
self._spot_v2 = None
|
|
293
|
+
self._specialised_studios = None
|
|
294
|
+
self._storage_overuse_deletion = None
|
|
286
295
|
self._studio_config = None
|
|
287
|
-
self._studio_on_stop = None
|
|
288
296
|
self._studio_version_visibility = None
|
|
289
|
-
self._teamspace_storage_tab = None
|
|
290
|
-
self._trainium2 = None
|
|
291
|
-
self._use_rclone_mounts_only = None
|
|
292
297
|
self._vultr = None
|
|
293
|
-
self.
|
|
298
|
+
self._weka = None
|
|
299
|
+
self._writable_s3_connections = None
|
|
294
300
|
self.discriminator = None
|
|
295
|
-
if advanced_deployment_autoscaling is not None:
|
|
296
|
-
self.advanced_deployment_autoscaling = advanced_deployment_autoscaling
|
|
297
301
|
if affiliate_links is not None:
|
|
298
302
|
self.affiliate_links = affiliate_links
|
|
299
303
|
if agents_v2 is not None:
|
|
@@ -302,10 +306,10 @@ class V1UserFeatures(object):
|
|
|
302
306
|
self.ai_hub_monetization = ai_hub_monetization
|
|
303
307
|
if auto_fast_load is not None:
|
|
304
308
|
self.auto_fast_load = auto_fast_load
|
|
305
|
-
if auto_join_orgs is not None:
|
|
306
|
-
self.auto_join_orgs = auto_join_orgs
|
|
307
309
|
if b2c_experience is not None:
|
|
308
310
|
self.b2c_experience = b2c_experience
|
|
311
|
+
if byo_machine_type is not None:
|
|
312
|
+
self.byo_machine_type = byo_machine_type
|
|
309
313
|
if cap_add is not None:
|
|
310
314
|
self.cap_add = cap_add
|
|
311
315
|
if cap_drop is not None:
|
|
@@ -314,167 +318,152 @@ class V1UserFeatures(object):
|
|
|
314
318
|
self.capacity_reservation_byoc = capacity_reservation_byoc
|
|
315
319
|
if capacity_reservation_dry_run is not None:
|
|
316
320
|
self.capacity_reservation_dry_run = capacity_reservation_dry_run
|
|
321
|
+
if chat_models is not None:
|
|
322
|
+
self.chat_models = chat_models
|
|
323
|
+
if cloudspace_schedules is not None:
|
|
324
|
+
self.cloudspace_schedules = cloudspace_schedules
|
|
317
325
|
if code_tab is not None:
|
|
318
326
|
self.code_tab = code_tab
|
|
319
327
|
if collab_screen_sharing is not None:
|
|
320
328
|
self.collab_screen_sharing = collab_screen_sharing
|
|
329
|
+
if control_center_monitoring is not None:
|
|
330
|
+
self.control_center_monitoring = control_center_monitoring
|
|
321
331
|
if cost_attribution_settings is not None:
|
|
322
332
|
self.cost_attribution_settings = cost_attribution_settings
|
|
323
|
-
if
|
|
324
|
-
self.
|
|
325
|
-
if custom_instance_types is not None:
|
|
326
|
-
self.custom_instance_types = custom_instance_types
|
|
333
|
+
if datasets is not None:
|
|
334
|
+
self.datasets = datasets
|
|
327
335
|
if default_one_cluster is not None:
|
|
328
336
|
self.default_one_cluster = default_one_cluster
|
|
329
|
-
if deployment_customize_api is not None:
|
|
330
|
-
self.deployment_customize_api = deployment_customize_api
|
|
331
|
-
if deployment_data_path is not None:
|
|
332
|
-
self.deployment_data_path = deployment_data_path
|
|
333
|
-
if deployment_gallery is not None:
|
|
334
|
-
self.deployment_gallery = deployment_gallery
|
|
335
|
-
if deployment_persistent_disk is not None:
|
|
336
|
-
self.deployment_persistent_disk = deployment_persistent_disk
|
|
337
|
-
if deployment_version_visibility is not None:
|
|
338
|
-
self.deployment_version_visibility = deployment_version_visibility
|
|
339
|
-
if docs_agent is not None:
|
|
340
|
-
self.docs_agent = docs_agent
|
|
341
337
|
if drive_v2 is not None:
|
|
342
338
|
self.drive_v2 = drive_v2
|
|
343
|
-
if
|
|
344
|
-
self.
|
|
345
|
-
if
|
|
346
|
-
self.
|
|
347
|
-
if
|
|
348
|
-
self.
|
|
339
|
+
if enterprise_compute_admin is not None:
|
|
340
|
+
self.enterprise_compute_admin = enterprise_compute_admin
|
|
341
|
+
if f234 is not None:
|
|
342
|
+
self.f234 = f234
|
|
343
|
+
if f236 is not None:
|
|
344
|
+
self.f236 = f236
|
|
345
|
+
if f240 is not None:
|
|
346
|
+
self.f240 = f240
|
|
347
|
+
if f241 is not None:
|
|
348
|
+
self.f241 = f241
|
|
349
|
+
if f243 is not None:
|
|
350
|
+
self.f243 = f243
|
|
351
|
+
if f245 is not None:
|
|
352
|
+
self.f245 = f245
|
|
353
|
+
if f247 is not None:
|
|
354
|
+
self.f247 = f247
|
|
355
|
+
if f250 is not None:
|
|
356
|
+
self.f250 = f250
|
|
357
|
+
if f252 is not None:
|
|
358
|
+
self.f252 = f252
|
|
359
|
+
if f253 is not None:
|
|
360
|
+
self.f253 = f253
|
|
361
|
+
if f254 is not None:
|
|
362
|
+
self.f254 = f254
|
|
363
|
+
if f258 is not None:
|
|
364
|
+
self.f258 = f258
|
|
365
|
+
if f259 is not None:
|
|
366
|
+
self.f259 = f259
|
|
367
|
+
if f261 is not None:
|
|
368
|
+
self.f261 = f261
|
|
369
|
+
if f262 is not None:
|
|
370
|
+
self.f262 = f262
|
|
371
|
+
if f265 is not None:
|
|
372
|
+
self.f265 = f265
|
|
373
|
+
if f266 is not None:
|
|
374
|
+
self.f266 = f266
|
|
375
|
+
if f268 is not None:
|
|
376
|
+
self.f268 = f268
|
|
377
|
+
if f269 is not None:
|
|
378
|
+
self.f269 = f269
|
|
379
|
+
if f270 is not None:
|
|
380
|
+
self.f270 = f270
|
|
381
|
+
if f271 is not None:
|
|
382
|
+
self.f271 = f271
|
|
383
|
+
if f272 is not None:
|
|
384
|
+
self.f272 = f272
|
|
385
|
+
if f273 is not None:
|
|
386
|
+
self.f273 = f273
|
|
387
|
+
if f274 is not None:
|
|
388
|
+
self.f274 = f274
|
|
389
|
+
if fair_share is not None:
|
|
390
|
+
self.fair_share = fair_share
|
|
349
391
|
if featured_studios_admin is not None:
|
|
350
392
|
self.featured_studios_admin = featured_studios_admin
|
|
351
|
-
if
|
|
352
|
-
self.
|
|
353
|
-
if
|
|
354
|
-
self.
|
|
355
|
-
if
|
|
356
|
-
self.
|
|
357
|
-
if instant_capacity_reservation is not None:
|
|
358
|
-
self.instant_capacity_reservation = instant_capacity_reservation
|
|
359
|
-
if jobs_init is not None:
|
|
360
|
-
self.jobs_init = jobs_init
|
|
361
|
-
if jobs_v2 is not None:
|
|
362
|
-
self.jobs_v2 = jobs_v2
|
|
393
|
+
if job_artifacts_v2 is not None:
|
|
394
|
+
self.job_artifacts_v2 = job_artifacts_v2
|
|
395
|
+
if kubernetes_cluster_ui is not None:
|
|
396
|
+
self.kubernetes_cluster_ui = kubernetes_cluster_ui
|
|
397
|
+
if kubernetes_clusters is not None:
|
|
398
|
+
self.kubernetes_clusters = kubernetes_clusters
|
|
363
399
|
if landing_studios is not None:
|
|
364
400
|
self.landing_studios = landing_studios
|
|
365
|
-
if lightning_registry is not None:
|
|
366
|
-
self.lightning_registry = lightning_registry
|
|
367
401
|
if lit_logger is not None:
|
|
368
402
|
self.lit_logger = lit_logger
|
|
369
|
-
if
|
|
370
|
-
self.
|
|
403
|
+
if marketplace is not None:
|
|
404
|
+
self.marketplace = marketplace
|
|
371
405
|
if mmt_fault_tolerance is not None:
|
|
372
406
|
self.mmt_fault_tolerance = mmt_fault_tolerance
|
|
373
407
|
if mmt_strategy_selector is not None:
|
|
374
408
|
self.mmt_strategy_selector = mmt_strategy_selector
|
|
375
|
-
if mmt_v2 is not None:
|
|
376
|
-
self.mmt_v2 = mmt_v2
|
|
377
|
-
if model_store is not None:
|
|
378
|
-
self.model_store = model_store
|
|
379
|
-
if multiple_deployment_versions is not None:
|
|
380
|
-
self.multiple_deployment_versions = multiple_deployment_versions
|
|
381
409
|
if multiple_studio_versions is not None:
|
|
382
410
|
self.multiple_studio_versions = multiple_studio_versions
|
|
411
|
+
if nerf_fs_nonpaying is not None:
|
|
412
|
+
self.nerf_fs_nonpaying = nerf_fs_nonpaying
|
|
383
413
|
if org_level_member_permissions is not None:
|
|
384
414
|
self.org_level_member_permissions = org_level_member_permissions
|
|
385
|
-
if
|
|
386
|
-
self.
|
|
387
|
-
if
|
|
388
|
-
self.
|
|
415
|
+
if org_usage_limits is not None:
|
|
416
|
+
self.org_usage_limits = org_usage_limits
|
|
417
|
+
if persistent_disk is not None:
|
|
418
|
+
self.persistent_disk = persistent_disk
|
|
389
419
|
if plugin_distributed is not None:
|
|
390
420
|
self.plugin_distributed = plugin_distributed
|
|
391
|
-
if plugin_fiftyone is not None:
|
|
392
|
-
self.plugin_fiftyone = plugin_fiftyone
|
|
393
421
|
if plugin_inference is not None:
|
|
394
422
|
self.plugin_inference = plugin_inference
|
|
395
423
|
if plugin_label_studio is not None:
|
|
396
424
|
self.plugin_label_studio = plugin_label_studio
|
|
397
425
|
if plugin_langflow is not None:
|
|
398
426
|
self.plugin_langflow = plugin_langflow
|
|
399
|
-
if plugin_lightning_apps is not None:
|
|
400
|
-
self.plugin_lightning_apps = plugin_lightning_apps
|
|
401
|
-
if plugin_lightning_apps_distributed is not None:
|
|
402
|
-
self.plugin_lightning_apps_distributed = plugin_lightning_apps_distributed
|
|
403
|
-
if plugin_mage_ai is not None:
|
|
404
|
-
self.plugin_mage_ai = plugin_mage_ai
|
|
405
|
-
if plugin_milvus is not None:
|
|
406
|
-
self.plugin_milvus = plugin_milvus
|
|
407
427
|
if plugin_python_profiler is not None:
|
|
408
428
|
self.plugin_python_profiler = plugin_python_profiler
|
|
409
|
-
if plugin_react is not None:
|
|
410
|
-
self.plugin_react = plugin_react
|
|
411
|
-
if plugin_service is not None:
|
|
412
|
-
self.plugin_service = plugin_service
|
|
413
429
|
if plugin_sweeps is not None:
|
|
414
430
|
self.plugin_sweeps = plugin_sweeps
|
|
415
|
-
if plugin_weviate is not None:
|
|
416
|
-
self.plugin_weviate = plugin_weviate
|
|
417
431
|
if pricing_updates is not None:
|
|
418
432
|
self.pricing_updates = pricing_updates
|
|
419
433
|
if product_generator is not None:
|
|
420
434
|
self.product_generator = product_generator
|
|
435
|
+
if product_license is not None:
|
|
436
|
+
self.product_license = product_license
|
|
421
437
|
if project_selector is not None:
|
|
422
438
|
self.project_selector = project_selector
|
|
423
|
-
if
|
|
424
|
-
self.
|
|
439
|
+
if publish_pipelines is not None:
|
|
440
|
+
self.publish_pipelines = publish_pipelines
|
|
441
|
+
if reserved_machines_tab is not None:
|
|
442
|
+
self.reserved_machines_tab = reserved_machines_tab
|
|
425
443
|
if restartable_jobs is not None:
|
|
426
444
|
self.restartable_jobs = restartable_jobs
|
|
427
445
|
if runnable_public_studio_page is not None:
|
|
428
446
|
self.runnable_public_studio_page = runnable_public_studio_page
|
|
447
|
+
if security_docs is not None:
|
|
448
|
+
self.security_docs = security_docs
|
|
429
449
|
if show_dev_admin is not None:
|
|
430
450
|
self.show_dev_admin = show_dev_admin
|
|
431
451
|
if slurm is not None:
|
|
432
452
|
self.slurm = slurm
|
|
433
|
-
if
|
|
434
|
-
self.
|
|
435
|
-
if
|
|
436
|
-
self.
|
|
437
|
-
if snowflake_connection is not None:
|
|
438
|
-
self.snowflake_connection = snowflake_connection
|
|
439
|
-
if spot_v2 is not None:
|
|
440
|
-
self.spot_v2 = spot_v2
|
|
453
|
+
if specialised_studios is not None:
|
|
454
|
+
self.specialised_studios = specialised_studios
|
|
455
|
+
if storage_overuse_deletion is not None:
|
|
456
|
+
self.storage_overuse_deletion = storage_overuse_deletion
|
|
441
457
|
if studio_config is not None:
|
|
442
458
|
self.studio_config = studio_config
|
|
443
|
-
if studio_on_stop is not None:
|
|
444
|
-
self.studio_on_stop = studio_on_stop
|
|
445
459
|
if studio_version_visibility is not None:
|
|
446
460
|
self.studio_version_visibility = studio_version_visibility
|
|
447
|
-
if teamspace_storage_tab is not None:
|
|
448
|
-
self.teamspace_storage_tab = teamspace_storage_tab
|
|
449
|
-
if trainium2 is not None:
|
|
450
|
-
self.trainium2 = trainium2
|
|
451
|
-
if use_rclone_mounts_only is not None:
|
|
452
|
-
self.use_rclone_mounts_only = use_rclone_mounts_only
|
|
453
461
|
if vultr is not None:
|
|
454
462
|
self.vultr = vultr
|
|
455
|
-
if
|
|
456
|
-
self.
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
def advanced_deployment_autoscaling(self) -> 'bool':
|
|
460
|
-
"""Gets the advanced_deployment_autoscaling of this V1UserFeatures. # noqa: E501
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
:return: The advanced_deployment_autoscaling of this V1UserFeatures. # noqa: E501
|
|
464
|
-
:rtype: bool
|
|
465
|
-
"""
|
|
466
|
-
return self._advanced_deployment_autoscaling
|
|
467
|
-
|
|
468
|
-
@advanced_deployment_autoscaling.setter
|
|
469
|
-
def advanced_deployment_autoscaling(self, advanced_deployment_autoscaling: 'bool'):
|
|
470
|
-
"""Sets the advanced_deployment_autoscaling of this V1UserFeatures.
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
:param advanced_deployment_autoscaling: The advanced_deployment_autoscaling of this V1UserFeatures. # noqa: E501
|
|
474
|
-
:type: bool
|
|
475
|
-
"""
|
|
476
|
-
|
|
477
|
-
self._advanced_deployment_autoscaling = advanced_deployment_autoscaling
|
|
463
|
+
if weka is not None:
|
|
464
|
+
self.weka = weka
|
|
465
|
+
if writable_s3_connections is not None:
|
|
466
|
+
self.writable_s3_connections = writable_s3_connections
|
|
478
467
|
|
|
479
468
|
@property
|
|
480
469
|
def affiliate_links(self) -> 'bool':
|
|
@@ -561,46 +550,46 @@ class V1UserFeatures(object):
|
|
|
561
550
|
self._auto_fast_load = auto_fast_load
|
|
562
551
|
|
|
563
552
|
@property
|
|
564
|
-
def
|
|
565
|
-
"""Gets the
|
|
553
|
+
def b2c_experience(self) -> 'bool':
|
|
554
|
+
"""Gets the b2c_experience of this V1UserFeatures. # noqa: E501
|
|
566
555
|
|
|
567
556
|
|
|
568
|
-
:return: The
|
|
557
|
+
:return: The b2c_experience of this V1UserFeatures. # noqa: E501
|
|
569
558
|
:rtype: bool
|
|
570
559
|
"""
|
|
571
|
-
return self.
|
|
560
|
+
return self._b2c_experience
|
|
572
561
|
|
|
573
|
-
@
|
|
574
|
-
def
|
|
575
|
-
"""Sets the
|
|
562
|
+
@b2c_experience.setter
|
|
563
|
+
def b2c_experience(self, b2c_experience: 'bool'):
|
|
564
|
+
"""Sets the b2c_experience of this V1UserFeatures.
|
|
576
565
|
|
|
577
566
|
|
|
578
|
-
:param
|
|
567
|
+
:param b2c_experience: The b2c_experience of this V1UserFeatures. # noqa: E501
|
|
579
568
|
:type: bool
|
|
580
569
|
"""
|
|
581
570
|
|
|
582
|
-
self.
|
|
571
|
+
self._b2c_experience = b2c_experience
|
|
583
572
|
|
|
584
573
|
@property
|
|
585
|
-
def
|
|
586
|
-
"""Gets the
|
|
574
|
+
def byo_machine_type(self) -> 'bool':
|
|
575
|
+
"""Gets the byo_machine_type of this V1UserFeatures. # noqa: E501
|
|
587
576
|
|
|
588
577
|
|
|
589
|
-
:return: The
|
|
578
|
+
:return: The byo_machine_type of this V1UserFeatures. # noqa: E501
|
|
590
579
|
:rtype: bool
|
|
591
580
|
"""
|
|
592
|
-
return self.
|
|
581
|
+
return self._byo_machine_type
|
|
593
582
|
|
|
594
|
-
@
|
|
595
|
-
def
|
|
596
|
-
"""Sets the
|
|
583
|
+
@byo_machine_type.setter
|
|
584
|
+
def byo_machine_type(self, byo_machine_type: 'bool'):
|
|
585
|
+
"""Sets the byo_machine_type of this V1UserFeatures.
|
|
597
586
|
|
|
598
587
|
|
|
599
|
-
:param
|
|
588
|
+
:param byo_machine_type: The byo_machine_type of this V1UserFeatures. # noqa: E501
|
|
600
589
|
:type: bool
|
|
601
590
|
"""
|
|
602
591
|
|
|
603
|
-
self.
|
|
592
|
+
self._byo_machine_type = byo_machine_type
|
|
604
593
|
|
|
605
594
|
@property
|
|
606
595
|
def cap_add(self) -> 'list[str]':
|
|
@@ -686,6 +675,48 @@ class V1UserFeatures(object):
|
|
|
686
675
|
|
|
687
676
|
self._capacity_reservation_dry_run = capacity_reservation_dry_run
|
|
688
677
|
|
|
678
|
+
@property
|
|
679
|
+
def chat_models(self) -> 'bool':
|
|
680
|
+
"""Gets the chat_models of this V1UserFeatures. # noqa: E501
|
|
681
|
+
|
|
682
|
+
|
|
683
|
+
:return: The chat_models of this V1UserFeatures. # noqa: E501
|
|
684
|
+
:rtype: bool
|
|
685
|
+
"""
|
|
686
|
+
return self._chat_models
|
|
687
|
+
|
|
688
|
+
@chat_models.setter
|
|
689
|
+
def chat_models(self, chat_models: 'bool'):
|
|
690
|
+
"""Sets the chat_models of this V1UserFeatures.
|
|
691
|
+
|
|
692
|
+
|
|
693
|
+
:param chat_models: The chat_models of this V1UserFeatures. # noqa: E501
|
|
694
|
+
:type: bool
|
|
695
|
+
"""
|
|
696
|
+
|
|
697
|
+
self._chat_models = chat_models
|
|
698
|
+
|
|
699
|
+
@property
|
|
700
|
+
def cloudspace_schedules(self) -> 'bool':
|
|
701
|
+
"""Gets the cloudspace_schedules of this V1UserFeatures. # noqa: E501
|
|
702
|
+
|
|
703
|
+
|
|
704
|
+
:return: The cloudspace_schedules of this V1UserFeatures. # noqa: E501
|
|
705
|
+
:rtype: bool
|
|
706
|
+
"""
|
|
707
|
+
return self._cloudspace_schedules
|
|
708
|
+
|
|
709
|
+
@cloudspace_schedules.setter
|
|
710
|
+
def cloudspace_schedules(self, cloudspace_schedules: 'bool'):
|
|
711
|
+
"""Sets the cloudspace_schedules of this V1UserFeatures.
|
|
712
|
+
|
|
713
|
+
|
|
714
|
+
:param cloudspace_schedules: The cloudspace_schedules of this V1UserFeatures. # noqa: E501
|
|
715
|
+
:type: bool
|
|
716
|
+
"""
|
|
717
|
+
|
|
718
|
+
self._cloudspace_schedules = cloudspace_schedules
|
|
719
|
+
|
|
689
720
|
@property
|
|
690
721
|
def code_tab(self) -> 'bool':
|
|
691
722
|
"""Gets the code_tab of this V1UserFeatures. # noqa: E501
|
|
@@ -729,67 +760,67 @@ class V1UserFeatures(object):
|
|
|
729
760
|
self._collab_screen_sharing = collab_screen_sharing
|
|
730
761
|
|
|
731
762
|
@property
|
|
732
|
-
def
|
|
733
|
-
"""Gets the
|
|
763
|
+
def control_center_monitoring(self) -> 'bool':
|
|
764
|
+
"""Gets the control_center_monitoring of this V1UserFeatures. # noqa: E501
|
|
734
765
|
|
|
735
766
|
|
|
736
|
-
:return: The
|
|
767
|
+
:return: The control_center_monitoring of this V1UserFeatures. # noqa: E501
|
|
737
768
|
:rtype: bool
|
|
738
769
|
"""
|
|
739
|
-
return self.
|
|
770
|
+
return self._control_center_monitoring
|
|
740
771
|
|
|
741
|
-
@
|
|
742
|
-
def
|
|
743
|
-
"""Sets the
|
|
772
|
+
@control_center_monitoring.setter
|
|
773
|
+
def control_center_monitoring(self, control_center_monitoring: 'bool'):
|
|
774
|
+
"""Sets the control_center_monitoring of this V1UserFeatures.
|
|
744
775
|
|
|
745
776
|
|
|
746
|
-
:param
|
|
777
|
+
:param control_center_monitoring: The control_center_monitoring of this V1UserFeatures. # noqa: E501
|
|
747
778
|
:type: bool
|
|
748
779
|
"""
|
|
749
780
|
|
|
750
|
-
self.
|
|
781
|
+
self._control_center_monitoring = control_center_monitoring
|
|
751
782
|
|
|
752
783
|
@property
|
|
753
|
-
def
|
|
754
|
-
"""Gets the
|
|
784
|
+
def cost_attribution_settings(self) -> 'bool':
|
|
785
|
+
"""Gets the cost_attribution_settings of this V1UserFeatures. # noqa: E501
|
|
755
786
|
|
|
756
787
|
|
|
757
|
-
:return: The
|
|
788
|
+
:return: The cost_attribution_settings of this V1UserFeatures. # noqa: E501
|
|
758
789
|
:rtype: bool
|
|
759
790
|
"""
|
|
760
|
-
return self.
|
|
791
|
+
return self._cost_attribution_settings
|
|
761
792
|
|
|
762
|
-
@
|
|
763
|
-
def
|
|
764
|
-
"""Sets the
|
|
793
|
+
@cost_attribution_settings.setter
|
|
794
|
+
def cost_attribution_settings(self, cost_attribution_settings: 'bool'):
|
|
795
|
+
"""Sets the cost_attribution_settings of this V1UserFeatures.
|
|
765
796
|
|
|
766
797
|
|
|
767
|
-
:param
|
|
798
|
+
:param cost_attribution_settings: The cost_attribution_settings of this V1UserFeatures. # noqa: E501
|
|
768
799
|
:type: bool
|
|
769
800
|
"""
|
|
770
801
|
|
|
771
|
-
self.
|
|
802
|
+
self._cost_attribution_settings = cost_attribution_settings
|
|
772
803
|
|
|
773
804
|
@property
|
|
774
|
-
def
|
|
775
|
-
"""Gets the
|
|
805
|
+
def datasets(self) -> 'bool':
|
|
806
|
+
"""Gets the datasets of this V1UserFeatures. # noqa: E501
|
|
776
807
|
|
|
777
808
|
|
|
778
|
-
:return: The
|
|
809
|
+
:return: The datasets of this V1UserFeatures. # noqa: E501
|
|
779
810
|
:rtype: bool
|
|
780
811
|
"""
|
|
781
|
-
return self.
|
|
812
|
+
return self._datasets
|
|
782
813
|
|
|
783
|
-
@
|
|
784
|
-
def
|
|
785
|
-
"""Sets the
|
|
814
|
+
@datasets.setter
|
|
815
|
+
def datasets(self, datasets: 'bool'):
|
|
816
|
+
"""Sets the datasets of this V1UserFeatures.
|
|
786
817
|
|
|
787
818
|
|
|
788
|
-
:param
|
|
819
|
+
:param datasets: The datasets of this V1UserFeatures. # noqa: E501
|
|
789
820
|
:type: bool
|
|
790
821
|
"""
|
|
791
822
|
|
|
792
|
-
self.
|
|
823
|
+
self._datasets = datasets
|
|
793
824
|
|
|
794
825
|
@property
|
|
795
826
|
def default_one_cluster(self) -> 'bool':
|
|
@@ -813,928 +844,991 @@ class V1UserFeatures(object):
|
|
|
813
844
|
self._default_one_cluster = default_one_cluster
|
|
814
845
|
|
|
815
846
|
@property
|
|
816
|
-
def
|
|
817
|
-
"""Gets the
|
|
847
|
+
def drive_v2(self) -> 'bool':
|
|
848
|
+
"""Gets the drive_v2 of this V1UserFeatures. # noqa: E501
|
|
818
849
|
|
|
819
850
|
|
|
820
|
-
:return: The
|
|
851
|
+
:return: The drive_v2 of this V1UserFeatures. # noqa: E501
|
|
821
852
|
:rtype: bool
|
|
822
853
|
"""
|
|
823
|
-
return self.
|
|
854
|
+
return self._drive_v2
|
|
824
855
|
|
|
825
|
-
@
|
|
826
|
-
def
|
|
827
|
-
"""Sets the
|
|
856
|
+
@drive_v2.setter
|
|
857
|
+
def drive_v2(self, drive_v2: 'bool'):
|
|
858
|
+
"""Sets the drive_v2 of this V1UserFeatures.
|
|
828
859
|
|
|
829
860
|
|
|
830
|
-
:param
|
|
861
|
+
:param drive_v2: The drive_v2 of this V1UserFeatures. # noqa: E501
|
|
831
862
|
:type: bool
|
|
832
863
|
"""
|
|
833
864
|
|
|
834
|
-
self.
|
|
865
|
+
self._drive_v2 = drive_v2
|
|
835
866
|
|
|
836
867
|
@property
|
|
837
|
-
def
|
|
838
|
-
"""Gets the
|
|
868
|
+
def enterprise_compute_admin(self) -> 'bool':
|
|
869
|
+
"""Gets the enterprise_compute_admin of this V1UserFeatures. # noqa: E501
|
|
839
870
|
|
|
840
871
|
|
|
841
|
-
:return: The
|
|
872
|
+
:return: The enterprise_compute_admin of this V1UserFeatures. # noqa: E501
|
|
842
873
|
:rtype: bool
|
|
843
874
|
"""
|
|
844
|
-
return self.
|
|
875
|
+
return self._enterprise_compute_admin
|
|
845
876
|
|
|
846
|
-
@
|
|
847
|
-
def
|
|
848
|
-
"""Sets the
|
|
877
|
+
@enterprise_compute_admin.setter
|
|
878
|
+
def enterprise_compute_admin(self, enterprise_compute_admin: 'bool'):
|
|
879
|
+
"""Sets the enterprise_compute_admin of this V1UserFeatures.
|
|
849
880
|
|
|
850
881
|
|
|
851
|
-
:param
|
|
882
|
+
:param enterprise_compute_admin: The enterprise_compute_admin of this V1UserFeatures. # noqa: E501
|
|
852
883
|
:type: bool
|
|
853
884
|
"""
|
|
854
885
|
|
|
855
|
-
self.
|
|
886
|
+
self._enterprise_compute_admin = enterprise_compute_admin
|
|
856
887
|
|
|
857
888
|
@property
|
|
858
|
-
def
|
|
859
|
-
"""Gets the
|
|
889
|
+
def f234(self) -> 'bool':
|
|
890
|
+
"""Gets the f234 of this V1UserFeatures. # noqa: E501
|
|
860
891
|
|
|
861
892
|
|
|
862
|
-
:return: The
|
|
893
|
+
:return: The f234 of this V1UserFeatures. # noqa: E501
|
|
863
894
|
:rtype: bool
|
|
864
895
|
"""
|
|
865
|
-
return self.
|
|
896
|
+
return self._f234
|
|
866
897
|
|
|
867
|
-
@
|
|
868
|
-
def
|
|
869
|
-
"""Sets the
|
|
898
|
+
@f234.setter
|
|
899
|
+
def f234(self, f234: 'bool'):
|
|
900
|
+
"""Sets the f234 of this V1UserFeatures.
|
|
870
901
|
|
|
871
902
|
|
|
872
|
-
:param
|
|
903
|
+
:param f234: The f234 of this V1UserFeatures. # noqa: E501
|
|
873
904
|
:type: bool
|
|
874
905
|
"""
|
|
875
906
|
|
|
876
|
-
self.
|
|
907
|
+
self._f234 = f234
|
|
877
908
|
|
|
878
909
|
@property
|
|
879
|
-
def
|
|
880
|
-
"""Gets the
|
|
910
|
+
def f236(self) -> 'bool':
|
|
911
|
+
"""Gets the f236 of this V1UserFeatures. # noqa: E501
|
|
881
912
|
|
|
882
913
|
|
|
883
|
-
:return: The
|
|
914
|
+
:return: The f236 of this V1UserFeatures. # noqa: E501
|
|
884
915
|
:rtype: bool
|
|
885
916
|
"""
|
|
886
|
-
return self.
|
|
917
|
+
return self._f236
|
|
887
918
|
|
|
888
|
-
@
|
|
889
|
-
def
|
|
890
|
-
"""Sets the
|
|
919
|
+
@f236.setter
|
|
920
|
+
def f236(self, f236: 'bool'):
|
|
921
|
+
"""Sets the f236 of this V1UserFeatures.
|
|
891
922
|
|
|
892
923
|
|
|
893
|
-
:param
|
|
924
|
+
:param f236: The f236 of this V1UserFeatures. # noqa: E501
|
|
894
925
|
:type: bool
|
|
895
926
|
"""
|
|
896
927
|
|
|
897
|
-
self.
|
|
928
|
+
self._f236 = f236
|
|
898
929
|
|
|
899
930
|
@property
|
|
900
|
-
def
|
|
901
|
-
"""Gets the
|
|
931
|
+
def f240(self) -> 'bool':
|
|
932
|
+
"""Gets the f240 of this V1UserFeatures. # noqa: E501
|
|
902
933
|
|
|
903
934
|
|
|
904
|
-
:return: The
|
|
935
|
+
:return: The f240 of this V1UserFeatures. # noqa: E501
|
|
905
936
|
:rtype: bool
|
|
906
937
|
"""
|
|
907
|
-
return self.
|
|
938
|
+
return self._f240
|
|
908
939
|
|
|
909
|
-
@
|
|
910
|
-
def
|
|
911
|
-
"""Sets the
|
|
940
|
+
@f240.setter
|
|
941
|
+
def f240(self, f240: 'bool'):
|
|
942
|
+
"""Sets the f240 of this V1UserFeatures.
|
|
912
943
|
|
|
913
944
|
|
|
914
|
-
:param
|
|
945
|
+
:param f240: The f240 of this V1UserFeatures. # noqa: E501
|
|
915
946
|
:type: bool
|
|
916
947
|
"""
|
|
917
948
|
|
|
918
|
-
self.
|
|
949
|
+
self._f240 = f240
|
|
919
950
|
|
|
920
951
|
@property
|
|
921
|
-
def
|
|
922
|
-
"""Gets the
|
|
952
|
+
def f241(self) -> 'bool':
|
|
953
|
+
"""Gets the f241 of this V1UserFeatures. # noqa: E501
|
|
923
954
|
|
|
924
955
|
|
|
925
|
-
:return: The
|
|
956
|
+
:return: The f241 of this V1UserFeatures. # noqa: E501
|
|
926
957
|
:rtype: bool
|
|
927
958
|
"""
|
|
928
|
-
return self.
|
|
959
|
+
return self._f241
|
|
929
960
|
|
|
930
|
-
@
|
|
931
|
-
def
|
|
932
|
-
"""Sets the
|
|
961
|
+
@f241.setter
|
|
962
|
+
def f241(self, f241: 'bool'):
|
|
963
|
+
"""Sets the f241 of this V1UserFeatures.
|
|
933
964
|
|
|
934
965
|
|
|
935
|
-
:param
|
|
966
|
+
:param f241: The f241 of this V1UserFeatures. # noqa: E501
|
|
936
967
|
:type: bool
|
|
937
968
|
"""
|
|
938
969
|
|
|
939
|
-
self.
|
|
970
|
+
self._f241 = f241
|
|
940
971
|
|
|
941
972
|
@property
|
|
942
|
-
def
|
|
943
|
-
"""Gets the
|
|
973
|
+
def f243(self) -> 'bool':
|
|
974
|
+
"""Gets the f243 of this V1UserFeatures. # noqa: E501
|
|
944
975
|
|
|
945
976
|
|
|
946
|
-
:return: The
|
|
977
|
+
:return: The f243 of this V1UserFeatures. # noqa: E501
|
|
947
978
|
:rtype: bool
|
|
948
979
|
"""
|
|
949
|
-
return self.
|
|
980
|
+
return self._f243
|
|
950
981
|
|
|
951
|
-
@
|
|
952
|
-
def
|
|
953
|
-
"""Sets the
|
|
982
|
+
@f243.setter
|
|
983
|
+
def f243(self, f243: 'bool'):
|
|
984
|
+
"""Sets the f243 of this V1UserFeatures.
|
|
954
985
|
|
|
955
986
|
|
|
956
|
-
:param
|
|
987
|
+
:param f243: The f243 of this V1UserFeatures. # noqa: E501
|
|
957
988
|
:type: bool
|
|
958
989
|
"""
|
|
959
990
|
|
|
960
|
-
self.
|
|
991
|
+
self._f243 = f243
|
|
961
992
|
|
|
962
993
|
@property
|
|
963
|
-
def
|
|
964
|
-
"""Gets the
|
|
994
|
+
def f245(self) -> 'bool':
|
|
995
|
+
"""Gets the f245 of this V1UserFeatures. # noqa: E501
|
|
965
996
|
|
|
966
997
|
|
|
967
|
-
:return: The
|
|
998
|
+
:return: The f245 of this V1UserFeatures. # noqa: E501
|
|
968
999
|
:rtype: bool
|
|
969
1000
|
"""
|
|
970
|
-
return self.
|
|
1001
|
+
return self._f245
|
|
971
1002
|
|
|
972
|
-
@
|
|
973
|
-
def
|
|
974
|
-
"""Sets the
|
|
1003
|
+
@f245.setter
|
|
1004
|
+
def f245(self, f245: 'bool'):
|
|
1005
|
+
"""Sets the f245 of this V1UserFeatures.
|
|
975
1006
|
|
|
976
1007
|
|
|
977
|
-
:param
|
|
1008
|
+
:param f245: The f245 of this V1UserFeatures. # noqa: E501
|
|
978
1009
|
:type: bool
|
|
979
1010
|
"""
|
|
980
1011
|
|
|
981
|
-
self.
|
|
1012
|
+
self._f245 = f245
|
|
982
1013
|
|
|
983
1014
|
@property
|
|
984
|
-
def
|
|
985
|
-
"""Gets the
|
|
1015
|
+
def f247(self) -> 'bool':
|
|
1016
|
+
"""Gets the f247 of this V1UserFeatures. # noqa: E501
|
|
986
1017
|
|
|
987
1018
|
|
|
988
|
-
:return: The
|
|
1019
|
+
:return: The f247 of this V1UserFeatures. # noqa: E501
|
|
989
1020
|
:rtype: bool
|
|
990
1021
|
"""
|
|
991
|
-
return self.
|
|
1022
|
+
return self._f247
|
|
992
1023
|
|
|
993
|
-
@
|
|
994
|
-
def
|
|
995
|
-
"""Sets the
|
|
1024
|
+
@f247.setter
|
|
1025
|
+
def f247(self, f247: 'bool'):
|
|
1026
|
+
"""Sets the f247 of this V1UserFeatures.
|
|
996
1027
|
|
|
997
1028
|
|
|
998
|
-
:param
|
|
1029
|
+
:param f247: The f247 of this V1UserFeatures. # noqa: E501
|
|
999
1030
|
:type: bool
|
|
1000
1031
|
"""
|
|
1001
1032
|
|
|
1002
|
-
self.
|
|
1033
|
+
self._f247 = f247
|
|
1003
1034
|
|
|
1004
1035
|
@property
|
|
1005
|
-
def
|
|
1006
|
-
"""Gets the
|
|
1036
|
+
def f250(self) -> 'bool':
|
|
1037
|
+
"""Gets the f250 of this V1UserFeatures. # noqa: E501
|
|
1007
1038
|
|
|
1008
1039
|
|
|
1009
|
-
:return: The
|
|
1040
|
+
:return: The f250 of this V1UserFeatures. # noqa: E501
|
|
1010
1041
|
:rtype: bool
|
|
1011
1042
|
"""
|
|
1012
|
-
return self.
|
|
1043
|
+
return self._f250
|
|
1013
1044
|
|
|
1014
|
-
@
|
|
1015
|
-
def
|
|
1016
|
-
"""Sets the
|
|
1045
|
+
@f250.setter
|
|
1046
|
+
def f250(self, f250: 'bool'):
|
|
1047
|
+
"""Sets the f250 of this V1UserFeatures.
|
|
1017
1048
|
|
|
1018
1049
|
|
|
1019
|
-
:param
|
|
1050
|
+
:param f250: The f250 of this V1UserFeatures. # noqa: E501
|
|
1020
1051
|
:type: bool
|
|
1021
1052
|
"""
|
|
1022
1053
|
|
|
1023
|
-
self.
|
|
1054
|
+
self._f250 = f250
|
|
1024
1055
|
|
|
1025
1056
|
@property
|
|
1026
|
-
def
|
|
1027
|
-
"""Gets the
|
|
1057
|
+
def f252(self) -> 'bool':
|
|
1058
|
+
"""Gets the f252 of this V1UserFeatures. # noqa: E501
|
|
1028
1059
|
|
|
1029
1060
|
|
|
1030
|
-
:return: The
|
|
1061
|
+
:return: The f252 of this V1UserFeatures. # noqa: E501
|
|
1031
1062
|
:rtype: bool
|
|
1032
1063
|
"""
|
|
1033
|
-
return self.
|
|
1064
|
+
return self._f252
|
|
1034
1065
|
|
|
1035
|
-
@
|
|
1036
|
-
def
|
|
1037
|
-
"""Sets the
|
|
1066
|
+
@f252.setter
|
|
1067
|
+
def f252(self, f252: 'bool'):
|
|
1068
|
+
"""Sets the f252 of this V1UserFeatures.
|
|
1038
1069
|
|
|
1039
1070
|
|
|
1040
|
-
:param
|
|
1071
|
+
:param f252: The f252 of this V1UserFeatures. # noqa: E501
|
|
1041
1072
|
:type: bool
|
|
1042
1073
|
"""
|
|
1043
1074
|
|
|
1044
|
-
self.
|
|
1075
|
+
self._f252 = f252
|
|
1045
1076
|
|
|
1046
1077
|
@property
|
|
1047
|
-
def
|
|
1048
|
-
"""Gets the
|
|
1078
|
+
def f253(self) -> 'bool':
|
|
1079
|
+
"""Gets the f253 of this V1UserFeatures. # noqa: E501
|
|
1049
1080
|
|
|
1050
1081
|
|
|
1051
|
-
:return: The
|
|
1082
|
+
:return: The f253 of this V1UserFeatures. # noqa: E501
|
|
1052
1083
|
:rtype: bool
|
|
1053
1084
|
"""
|
|
1054
|
-
return self.
|
|
1085
|
+
return self._f253
|
|
1055
1086
|
|
|
1056
|
-
@
|
|
1057
|
-
def
|
|
1058
|
-
"""Sets the
|
|
1087
|
+
@f253.setter
|
|
1088
|
+
def f253(self, f253: 'bool'):
|
|
1089
|
+
"""Sets the f253 of this V1UserFeatures.
|
|
1059
1090
|
|
|
1060
1091
|
|
|
1061
|
-
:param
|
|
1092
|
+
:param f253: The f253 of this V1UserFeatures. # noqa: E501
|
|
1062
1093
|
:type: bool
|
|
1063
1094
|
"""
|
|
1064
1095
|
|
|
1065
|
-
self.
|
|
1096
|
+
self._f253 = f253
|
|
1066
1097
|
|
|
1067
1098
|
@property
|
|
1068
|
-
def
|
|
1069
|
-
"""Gets the
|
|
1099
|
+
def f254(self) -> 'bool':
|
|
1100
|
+
"""Gets the f254 of this V1UserFeatures. # noqa: E501
|
|
1070
1101
|
|
|
1071
1102
|
|
|
1072
|
-
:return: The
|
|
1103
|
+
:return: The f254 of this V1UserFeatures. # noqa: E501
|
|
1073
1104
|
:rtype: bool
|
|
1074
1105
|
"""
|
|
1075
|
-
return self.
|
|
1106
|
+
return self._f254
|
|
1076
1107
|
|
|
1077
|
-
@
|
|
1078
|
-
def
|
|
1079
|
-
"""Sets the
|
|
1108
|
+
@f254.setter
|
|
1109
|
+
def f254(self, f254: 'bool'):
|
|
1110
|
+
"""Sets the f254 of this V1UserFeatures.
|
|
1080
1111
|
|
|
1081
1112
|
|
|
1082
|
-
:param
|
|
1113
|
+
:param f254: The f254 of this V1UserFeatures. # noqa: E501
|
|
1083
1114
|
:type: bool
|
|
1084
1115
|
"""
|
|
1085
1116
|
|
|
1086
|
-
self.
|
|
1117
|
+
self._f254 = f254
|
|
1087
1118
|
|
|
1088
1119
|
@property
|
|
1089
|
-
def
|
|
1090
|
-
"""Gets the
|
|
1120
|
+
def f258(self) -> 'bool':
|
|
1121
|
+
"""Gets the f258 of this V1UserFeatures. # noqa: E501
|
|
1091
1122
|
|
|
1092
1123
|
|
|
1093
|
-
:return: The
|
|
1124
|
+
:return: The f258 of this V1UserFeatures. # noqa: E501
|
|
1094
1125
|
:rtype: bool
|
|
1095
1126
|
"""
|
|
1096
|
-
return self.
|
|
1127
|
+
return self._f258
|
|
1097
1128
|
|
|
1098
|
-
@
|
|
1099
|
-
def
|
|
1100
|
-
"""Sets the
|
|
1129
|
+
@f258.setter
|
|
1130
|
+
def f258(self, f258: 'bool'):
|
|
1131
|
+
"""Sets the f258 of this V1UserFeatures.
|
|
1101
1132
|
|
|
1102
1133
|
|
|
1103
|
-
:param
|
|
1134
|
+
:param f258: The f258 of this V1UserFeatures. # noqa: E501
|
|
1104
1135
|
:type: bool
|
|
1105
1136
|
"""
|
|
1106
1137
|
|
|
1107
|
-
self.
|
|
1138
|
+
self._f258 = f258
|
|
1108
1139
|
|
|
1109
1140
|
@property
|
|
1110
|
-
def
|
|
1111
|
-
"""Gets the
|
|
1141
|
+
def f259(self) -> 'bool':
|
|
1142
|
+
"""Gets the f259 of this V1UserFeatures. # noqa: E501
|
|
1112
1143
|
|
|
1113
1144
|
|
|
1114
|
-
:return: The
|
|
1145
|
+
:return: The f259 of this V1UserFeatures. # noqa: E501
|
|
1115
1146
|
:rtype: bool
|
|
1116
1147
|
"""
|
|
1117
|
-
return self.
|
|
1148
|
+
return self._f259
|
|
1118
1149
|
|
|
1119
|
-
@
|
|
1120
|
-
def
|
|
1121
|
-
"""Sets the
|
|
1150
|
+
@f259.setter
|
|
1151
|
+
def f259(self, f259: 'bool'):
|
|
1152
|
+
"""Sets the f259 of this V1UserFeatures.
|
|
1122
1153
|
|
|
1123
1154
|
|
|
1124
|
-
:param
|
|
1155
|
+
:param f259: The f259 of this V1UserFeatures. # noqa: E501
|
|
1125
1156
|
:type: bool
|
|
1126
1157
|
"""
|
|
1127
1158
|
|
|
1128
|
-
self.
|
|
1159
|
+
self._f259 = f259
|
|
1129
1160
|
|
|
1130
1161
|
@property
|
|
1131
|
-
def
|
|
1132
|
-
"""Gets the
|
|
1162
|
+
def f261(self) -> 'bool':
|
|
1163
|
+
"""Gets the f261 of this V1UserFeatures. # noqa: E501
|
|
1133
1164
|
|
|
1134
1165
|
|
|
1135
|
-
:return: The
|
|
1166
|
+
:return: The f261 of this V1UserFeatures. # noqa: E501
|
|
1136
1167
|
:rtype: bool
|
|
1137
1168
|
"""
|
|
1138
|
-
return self.
|
|
1169
|
+
return self._f261
|
|
1139
1170
|
|
|
1140
|
-
@
|
|
1141
|
-
def
|
|
1142
|
-
"""Sets the
|
|
1171
|
+
@f261.setter
|
|
1172
|
+
def f261(self, f261: 'bool'):
|
|
1173
|
+
"""Sets the f261 of this V1UserFeatures.
|
|
1143
1174
|
|
|
1144
1175
|
|
|
1145
|
-
:param
|
|
1176
|
+
:param f261: The f261 of this V1UserFeatures. # noqa: E501
|
|
1146
1177
|
:type: bool
|
|
1147
1178
|
"""
|
|
1148
1179
|
|
|
1149
|
-
self.
|
|
1180
|
+
self._f261 = f261
|
|
1150
1181
|
|
|
1151
1182
|
@property
|
|
1152
|
-
def
|
|
1153
|
-
"""Gets the
|
|
1183
|
+
def f262(self) -> 'bool':
|
|
1184
|
+
"""Gets the f262 of this V1UserFeatures. # noqa: E501
|
|
1154
1185
|
|
|
1155
1186
|
|
|
1156
|
-
:return: The
|
|
1187
|
+
:return: The f262 of this V1UserFeatures. # noqa: E501
|
|
1157
1188
|
:rtype: bool
|
|
1158
1189
|
"""
|
|
1159
|
-
return self.
|
|
1190
|
+
return self._f262
|
|
1160
1191
|
|
|
1161
|
-
@
|
|
1162
|
-
def
|
|
1163
|
-
"""Sets the
|
|
1192
|
+
@f262.setter
|
|
1193
|
+
def f262(self, f262: 'bool'):
|
|
1194
|
+
"""Sets the f262 of this V1UserFeatures.
|
|
1164
1195
|
|
|
1165
1196
|
|
|
1166
|
-
:param
|
|
1197
|
+
:param f262: The f262 of this V1UserFeatures. # noqa: E501
|
|
1167
1198
|
:type: bool
|
|
1168
1199
|
"""
|
|
1169
1200
|
|
|
1170
|
-
self.
|
|
1201
|
+
self._f262 = f262
|
|
1171
1202
|
|
|
1172
1203
|
@property
|
|
1173
|
-
def
|
|
1174
|
-
"""Gets the
|
|
1204
|
+
def f265(self) -> 'bool':
|
|
1205
|
+
"""Gets the f265 of this V1UserFeatures. # noqa: E501
|
|
1175
1206
|
|
|
1176
1207
|
|
|
1177
|
-
:return: The
|
|
1208
|
+
:return: The f265 of this V1UserFeatures. # noqa: E501
|
|
1178
1209
|
:rtype: bool
|
|
1179
1210
|
"""
|
|
1180
|
-
return self.
|
|
1211
|
+
return self._f265
|
|
1181
1212
|
|
|
1182
|
-
@
|
|
1183
|
-
def
|
|
1184
|
-
"""Sets the
|
|
1213
|
+
@f265.setter
|
|
1214
|
+
def f265(self, f265: 'bool'):
|
|
1215
|
+
"""Sets the f265 of this V1UserFeatures.
|
|
1185
1216
|
|
|
1186
1217
|
|
|
1187
|
-
:param
|
|
1218
|
+
:param f265: The f265 of this V1UserFeatures. # noqa: E501
|
|
1188
1219
|
:type: bool
|
|
1189
1220
|
"""
|
|
1190
1221
|
|
|
1191
|
-
self.
|
|
1222
|
+
self._f265 = f265
|
|
1192
1223
|
|
|
1193
1224
|
@property
|
|
1194
|
-
def
|
|
1195
|
-
"""Gets the
|
|
1225
|
+
def f266(self) -> 'bool':
|
|
1226
|
+
"""Gets the f266 of this V1UserFeatures. # noqa: E501
|
|
1196
1227
|
|
|
1197
1228
|
|
|
1198
|
-
:return: The
|
|
1229
|
+
:return: The f266 of this V1UserFeatures. # noqa: E501
|
|
1199
1230
|
:rtype: bool
|
|
1200
1231
|
"""
|
|
1201
|
-
return self.
|
|
1232
|
+
return self._f266
|
|
1202
1233
|
|
|
1203
|
-
@
|
|
1204
|
-
def
|
|
1205
|
-
"""Sets the
|
|
1234
|
+
@f266.setter
|
|
1235
|
+
def f266(self, f266: 'bool'):
|
|
1236
|
+
"""Sets the f266 of this V1UserFeatures.
|
|
1206
1237
|
|
|
1207
1238
|
|
|
1208
|
-
:param
|
|
1239
|
+
:param f266: The f266 of this V1UserFeatures. # noqa: E501
|
|
1209
1240
|
:type: bool
|
|
1210
1241
|
"""
|
|
1211
1242
|
|
|
1212
|
-
self.
|
|
1243
|
+
self._f266 = f266
|
|
1213
1244
|
|
|
1214
1245
|
@property
|
|
1215
|
-
def
|
|
1216
|
-
"""Gets the
|
|
1246
|
+
def f268(self) -> 'bool':
|
|
1247
|
+
"""Gets the f268 of this V1UserFeatures. # noqa: E501
|
|
1217
1248
|
|
|
1218
1249
|
|
|
1219
|
-
:return: The
|
|
1250
|
+
:return: The f268 of this V1UserFeatures. # noqa: E501
|
|
1220
1251
|
:rtype: bool
|
|
1221
1252
|
"""
|
|
1222
|
-
return self.
|
|
1253
|
+
return self._f268
|
|
1223
1254
|
|
|
1224
|
-
@
|
|
1225
|
-
def
|
|
1226
|
-
"""Sets the
|
|
1255
|
+
@f268.setter
|
|
1256
|
+
def f268(self, f268: 'bool'):
|
|
1257
|
+
"""Sets the f268 of this V1UserFeatures.
|
|
1227
1258
|
|
|
1228
1259
|
|
|
1229
|
-
:param
|
|
1260
|
+
:param f268: The f268 of this V1UserFeatures. # noqa: E501
|
|
1230
1261
|
:type: bool
|
|
1231
1262
|
"""
|
|
1232
1263
|
|
|
1233
|
-
self.
|
|
1264
|
+
self._f268 = f268
|
|
1234
1265
|
|
|
1235
1266
|
@property
|
|
1236
|
-
def
|
|
1237
|
-
"""Gets the
|
|
1267
|
+
def f269(self) -> 'bool':
|
|
1268
|
+
"""Gets the f269 of this V1UserFeatures. # noqa: E501
|
|
1238
1269
|
|
|
1239
1270
|
|
|
1240
|
-
:return: The
|
|
1271
|
+
:return: The f269 of this V1UserFeatures. # noqa: E501
|
|
1241
1272
|
:rtype: bool
|
|
1242
1273
|
"""
|
|
1243
|
-
return self.
|
|
1274
|
+
return self._f269
|
|
1244
1275
|
|
|
1245
|
-
@
|
|
1246
|
-
def
|
|
1247
|
-
"""Sets the
|
|
1276
|
+
@f269.setter
|
|
1277
|
+
def f269(self, f269: 'bool'):
|
|
1278
|
+
"""Sets the f269 of this V1UserFeatures.
|
|
1248
1279
|
|
|
1249
1280
|
|
|
1250
|
-
:param
|
|
1281
|
+
:param f269: The f269 of this V1UserFeatures. # noqa: E501
|
|
1251
1282
|
:type: bool
|
|
1252
1283
|
"""
|
|
1253
1284
|
|
|
1254
|
-
self.
|
|
1285
|
+
self._f269 = f269
|
|
1255
1286
|
|
|
1256
1287
|
@property
|
|
1257
|
-
def
|
|
1258
|
-
"""Gets the
|
|
1288
|
+
def f270(self) -> 'bool':
|
|
1289
|
+
"""Gets the f270 of this V1UserFeatures. # noqa: E501
|
|
1259
1290
|
|
|
1260
1291
|
|
|
1261
|
-
:return: The
|
|
1292
|
+
:return: The f270 of this V1UserFeatures. # noqa: E501
|
|
1262
1293
|
:rtype: bool
|
|
1263
1294
|
"""
|
|
1264
|
-
return self.
|
|
1295
|
+
return self._f270
|
|
1265
1296
|
|
|
1266
|
-
@
|
|
1267
|
-
def
|
|
1268
|
-
"""Sets the
|
|
1297
|
+
@f270.setter
|
|
1298
|
+
def f270(self, f270: 'bool'):
|
|
1299
|
+
"""Sets the f270 of this V1UserFeatures.
|
|
1269
1300
|
|
|
1270
1301
|
|
|
1271
|
-
:param
|
|
1302
|
+
:param f270: The f270 of this V1UserFeatures. # noqa: E501
|
|
1272
1303
|
:type: bool
|
|
1273
1304
|
"""
|
|
1274
1305
|
|
|
1275
|
-
self.
|
|
1306
|
+
self._f270 = f270
|
|
1276
1307
|
|
|
1277
1308
|
@property
|
|
1278
|
-
def
|
|
1279
|
-
"""Gets the
|
|
1309
|
+
def f271(self) -> 'bool':
|
|
1310
|
+
"""Gets the f271 of this V1UserFeatures. # noqa: E501
|
|
1280
1311
|
|
|
1281
1312
|
|
|
1282
|
-
:return: The
|
|
1313
|
+
:return: The f271 of this V1UserFeatures. # noqa: E501
|
|
1283
1314
|
:rtype: bool
|
|
1284
1315
|
"""
|
|
1285
|
-
return self.
|
|
1316
|
+
return self._f271
|
|
1286
1317
|
|
|
1287
|
-
@
|
|
1288
|
-
def
|
|
1289
|
-
"""Sets the
|
|
1318
|
+
@f271.setter
|
|
1319
|
+
def f271(self, f271: 'bool'):
|
|
1320
|
+
"""Sets the f271 of this V1UserFeatures.
|
|
1290
1321
|
|
|
1291
1322
|
|
|
1292
|
-
:param
|
|
1323
|
+
:param f271: The f271 of this V1UserFeatures. # noqa: E501
|
|
1293
1324
|
:type: bool
|
|
1294
1325
|
"""
|
|
1295
1326
|
|
|
1296
|
-
self.
|
|
1327
|
+
self._f271 = f271
|
|
1297
1328
|
|
|
1298
1329
|
@property
|
|
1299
|
-
def
|
|
1300
|
-
"""Gets the
|
|
1330
|
+
def f272(self) -> 'bool':
|
|
1331
|
+
"""Gets the f272 of this V1UserFeatures. # noqa: E501
|
|
1301
1332
|
|
|
1302
1333
|
|
|
1303
|
-
:return: The
|
|
1334
|
+
:return: The f272 of this V1UserFeatures. # noqa: E501
|
|
1304
1335
|
:rtype: bool
|
|
1305
1336
|
"""
|
|
1306
|
-
return self.
|
|
1337
|
+
return self._f272
|
|
1307
1338
|
|
|
1308
|
-
@
|
|
1309
|
-
def
|
|
1310
|
-
"""Sets the
|
|
1339
|
+
@f272.setter
|
|
1340
|
+
def f272(self, f272: 'bool'):
|
|
1341
|
+
"""Sets the f272 of this V1UserFeatures.
|
|
1311
1342
|
|
|
1312
1343
|
|
|
1313
|
-
:param
|
|
1344
|
+
:param f272: The f272 of this V1UserFeatures. # noqa: E501
|
|
1314
1345
|
:type: bool
|
|
1315
1346
|
"""
|
|
1316
1347
|
|
|
1317
|
-
self.
|
|
1348
|
+
self._f272 = f272
|
|
1318
1349
|
|
|
1319
1350
|
@property
|
|
1320
|
-
def
|
|
1321
|
-
"""Gets the
|
|
1351
|
+
def f273(self) -> 'bool':
|
|
1352
|
+
"""Gets the f273 of this V1UserFeatures. # noqa: E501
|
|
1322
1353
|
|
|
1323
1354
|
|
|
1324
|
-
:return: The
|
|
1355
|
+
:return: The f273 of this V1UserFeatures. # noqa: E501
|
|
1325
1356
|
:rtype: bool
|
|
1326
1357
|
"""
|
|
1327
|
-
return self.
|
|
1358
|
+
return self._f273
|
|
1328
1359
|
|
|
1329
|
-
@
|
|
1330
|
-
def
|
|
1331
|
-
"""Sets the
|
|
1360
|
+
@f273.setter
|
|
1361
|
+
def f273(self, f273: 'bool'):
|
|
1362
|
+
"""Sets the f273 of this V1UserFeatures.
|
|
1332
1363
|
|
|
1333
1364
|
|
|
1334
|
-
:param
|
|
1365
|
+
:param f273: The f273 of this V1UserFeatures. # noqa: E501
|
|
1335
1366
|
:type: bool
|
|
1336
1367
|
"""
|
|
1337
1368
|
|
|
1338
|
-
self.
|
|
1369
|
+
self._f273 = f273
|
|
1339
1370
|
|
|
1340
1371
|
@property
|
|
1341
|
-
def
|
|
1342
|
-
"""Gets the
|
|
1372
|
+
def f274(self) -> 'bool':
|
|
1373
|
+
"""Gets the f274 of this V1UserFeatures. # noqa: E501
|
|
1343
1374
|
|
|
1344
1375
|
|
|
1345
|
-
:return: The
|
|
1376
|
+
:return: The f274 of this V1UserFeatures. # noqa: E501
|
|
1346
1377
|
:rtype: bool
|
|
1347
1378
|
"""
|
|
1348
|
-
return self.
|
|
1379
|
+
return self._f274
|
|
1349
1380
|
|
|
1350
|
-
@
|
|
1351
|
-
def
|
|
1352
|
-
"""Sets the
|
|
1381
|
+
@f274.setter
|
|
1382
|
+
def f274(self, f274: 'bool'):
|
|
1383
|
+
"""Sets the f274 of this V1UserFeatures.
|
|
1353
1384
|
|
|
1354
1385
|
|
|
1355
|
-
:param
|
|
1386
|
+
:param f274: The f274 of this V1UserFeatures. # noqa: E501
|
|
1356
1387
|
:type: bool
|
|
1357
1388
|
"""
|
|
1358
1389
|
|
|
1359
|
-
self.
|
|
1390
|
+
self._f274 = f274
|
|
1360
1391
|
|
|
1361
1392
|
@property
|
|
1362
|
-
def
|
|
1363
|
-
"""Gets the
|
|
1393
|
+
def fair_share(self) -> 'bool':
|
|
1394
|
+
"""Gets the fair_share of this V1UserFeatures. # noqa: E501
|
|
1364
1395
|
|
|
1365
1396
|
|
|
1366
|
-
:return: The
|
|
1397
|
+
:return: The fair_share of this V1UserFeatures. # noqa: E501
|
|
1367
1398
|
:rtype: bool
|
|
1368
1399
|
"""
|
|
1369
|
-
return self.
|
|
1400
|
+
return self._fair_share
|
|
1370
1401
|
|
|
1371
|
-
@
|
|
1372
|
-
def
|
|
1373
|
-
"""Sets the
|
|
1402
|
+
@fair_share.setter
|
|
1403
|
+
def fair_share(self, fair_share: 'bool'):
|
|
1404
|
+
"""Sets the fair_share of this V1UserFeatures.
|
|
1374
1405
|
|
|
1375
1406
|
|
|
1376
|
-
:param
|
|
1407
|
+
:param fair_share: The fair_share of this V1UserFeatures. # noqa: E501
|
|
1377
1408
|
:type: bool
|
|
1378
1409
|
"""
|
|
1379
1410
|
|
|
1380
|
-
self.
|
|
1411
|
+
self._fair_share = fair_share
|
|
1381
1412
|
|
|
1382
1413
|
@property
|
|
1383
|
-
def
|
|
1384
|
-
"""Gets the
|
|
1414
|
+
def featured_studios_admin(self) -> 'bool':
|
|
1415
|
+
"""Gets the featured_studios_admin of this V1UserFeatures. # noqa: E501
|
|
1385
1416
|
|
|
1386
1417
|
|
|
1387
|
-
:return: The
|
|
1418
|
+
:return: The featured_studios_admin of this V1UserFeatures. # noqa: E501
|
|
1388
1419
|
:rtype: bool
|
|
1389
1420
|
"""
|
|
1390
|
-
return self.
|
|
1421
|
+
return self._featured_studios_admin
|
|
1391
1422
|
|
|
1392
|
-
@
|
|
1393
|
-
def
|
|
1394
|
-
"""Sets the
|
|
1423
|
+
@featured_studios_admin.setter
|
|
1424
|
+
def featured_studios_admin(self, featured_studios_admin: 'bool'):
|
|
1425
|
+
"""Sets the featured_studios_admin of this V1UserFeatures.
|
|
1395
1426
|
|
|
1396
1427
|
|
|
1397
|
-
:param
|
|
1428
|
+
:param featured_studios_admin: The featured_studios_admin of this V1UserFeatures. # noqa: E501
|
|
1398
1429
|
:type: bool
|
|
1399
1430
|
"""
|
|
1400
1431
|
|
|
1401
|
-
self.
|
|
1432
|
+
self._featured_studios_admin = featured_studios_admin
|
|
1402
1433
|
|
|
1403
1434
|
@property
|
|
1404
|
-
def
|
|
1405
|
-
"""Gets the
|
|
1435
|
+
def job_artifacts_v2(self) -> 'bool':
|
|
1436
|
+
"""Gets the job_artifacts_v2 of this V1UserFeatures. # noqa: E501
|
|
1406
1437
|
|
|
1407
1438
|
|
|
1408
|
-
:return: The
|
|
1439
|
+
:return: The job_artifacts_v2 of this V1UserFeatures. # noqa: E501
|
|
1409
1440
|
:rtype: bool
|
|
1410
1441
|
"""
|
|
1411
|
-
return self.
|
|
1442
|
+
return self._job_artifacts_v2
|
|
1412
1443
|
|
|
1413
|
-
@
|
|
1414
|
-
def
|
|
1415
|
-
"""Sets the
|
|
1444
|
+
@job_artifacts_v2.setter
|
|
1445
|
+
def job_artifacts_v2(self, job_artifacts_v2: 'bool'):
|
|
1446
|
+
"""Sets the job_artifacts_v2 of this V1UserFeatures.
|
|
1416
1447
|
|
|
1417
1448
|
|
|
1418
|
-
:param
|
|
1449
|
+
:param job_artifacts_v2: The job_artifacts_v2 of this V1UserFeatures. # noqa: E501
|
|
1419
1450
|
:type: bool
|
|
1420
1451
|
"""
|
|
1421
1452
|
|
|
1422
|
-
self.
|
|
1453
|
+
self._job_artifacts_v2 = job_artifacts_v2
|
|
1423
1454
|
|
|
1424
1455
|
@property
|
|
1425
|
-
def
|
|
1426
|
-
"""Gets the
|
|
1456
|
+
def kubernetes_cluster_ui(self) -> 'bool':
|
|
1457
|
+
"""Gets the kubernetes_cluster_ui of this V1UserFeatures. # noqa: E501
|
|
1427
1458
|
|
|
1428
1459
|
|
|
1429
|
-
:return: The
|
|
1460
|
+
:return: The kubernetes_cluster_ui of this V1UserFeatures. # noqa: E501
|
|
1430
1461
|
:rtype: bool
|
|
1431
1462
|
"""
|
|
1432
|
-
return self.
|
|
1463
|
+
return self._kubernetes_cluster_ui
|
|
1433
1464
|
|
|
1434
|
-
@
|
|
1435
|
-
def
|
|
1436
|
-
"""Sets the
|
|
1465
|
+
@kubernetes_cluster_ui.setter
|
|
1466
|
+
def kubernetes_cluster_ui(self, kubernetes_cluster_ui: 'bool'):
|
|
1467
|
+
"""Sets the kubernetes_cluster_ui of this V1UserFeatures.
|
|
1437
1468
|
|
|
1438
1469
|
|
|
1439
|
-
:param
|
|
1470
|
+
:param kubernetes_cluster_ui: The kubernetes_cluster_ui of this V1UserFeatures. # noqa: E501
|
|
1440
1471
|
:type: bool
|
|
1441
1472
|
"""
|
|
1442
1473
|
|
|
1443
|
-
self.
|
|
1474
|
+
self._kubernetes_cluster_ui = kubernetes_cluster_ui
|
|
1444
1475
|
|
|
1445
1476
|
@property
|
|
1446
|
-
def
|
|
1447
|
-
"""Gets the
|
|
1477
|
+
def kubernetes_clusters(self) -> 'bool':
|
|
1478
|
+
"""Gets the kubernetes_clusters of this V1UserFeatures. # noqa: E501
|
|
1448
1479
|
|
|
1449
1480
|
|
|
1450
|
-
:return: The
|
|
1481
|
+
:return: The kubernetes_clusters of this V1UserFeatures. # noqa: E501
|
|
1451
1482
|
:rtype: bool
|
|
1452
1483
|
"""
|
|
1453
|
-
return self.
|
|
1484
|
+
return self._kubernetes_clusters
|
|
1454
1485
|
|
|
1455
|
-
@
|
|
1456
|
-
def
|
|
1457
|
-
"""Sets the
|
|
1486
|
+
@kubernetes_clusters.setter
|
|
1487
|
+
def kubernetes_clusters(self, kubernetes_clusters: 'bool'):
|
|
1488
|
+
"""Sets the kubernetes_clusters of this V1UserFeatures.
|
|
1458
1489
|
|
|
1459
1490
|
|
|
1460
|
-
:param
|
|
1491
|
+
:param kubernetes_clusters: The kubernetes_clusters of this V1UserFeatures. # noqa: E501
|
|
1461
1492
|
:type: bool
|
|
1462
1493
|
"""
|
|
1463
1494
|
|
|
1464
|
-
self.
|
|
1495
|
+
self._kubernetes_clusters = kubernetes_clusters
|
|
1465
1496
|
|
|
1466
1497
|
@property
|
|
1467
|
-
def
|
|
1468
|
-
"""Gets the
|
|
1498
|
+
def landing_studios(self) -> 'bool':
|
|
1499
|
+
"""Gets the landing_studios of this V1UserFeatures. # noqa: E501
|
|
1469
1500
|
|
|
1470
1501
|
|
|
1471
|
-
:return: The
|
|
1502
|
+
:return: The landing_studios of this V1UserFeatures. # noqa: E501
|
|
1472
1503
|
:rtype: bool
|
|
1473
1504
|
"""
|
|
1474
|
-
return self.
|
|
1505
|
+
return self._landing_studios
|
|
1475
1506
|
|
|
1476
|
-
@
|
|
1477
|
-
def
|
|
1478
|
-
"""Sets the
|
|
1507
|
+
@landing_studios.setter
|
|
1508
|
+
def landing_studios(self, landing_studios: 'bool'):
|
|
1509
|
+
"""Sets the landing_studios of this V1UserFeatures.
|
|
1479
1510
|
|
|
1480
1511
|
|
|
1481
|
-
:param
|
|
1512
|
+
:param landing_studios: The landing_studios of this V1UserFeatures. # noqa: E501
|
|
1482
1513
|
:type: bool
|
|
1483
1514
|
"""
|
|
1484
1515
|
|
|
1485
|
-
self.
|
|
1516
|
+
self._landing_studios = landing_studios
|
|
1486
1517
|
|
|
1487
1518
|
@property
|
|
1488
|
-
def
|
|
1489
|
-
"""Gets the
|
|
1519
|
+
def lit_logger(self) -> 'bool':
|
|
1520
|
+
"""Gets the lit_logger of this V1UserFeatures. # noqa: E501
|
|
1490
1521
|
|
|
1491
1522
|
|
|
1492
|
-
:return: The
|
|
1523
|
+
:return: The lit_logger of this V1UserFeatures. # noqa: E501
|
|
1493
1524
|
:rtype: bool
|
|
1494
1525
|
"""
|
|
1495
|
-
return self.
|
|
1526
|
+
return self._lit_logger
|
|
1496
1527
|
|
|
1497
|
-
@
|
|
1498
|
-
def
|
|
1499
|
-
"""Sets the
|
|
1528
|
+
@lit_logger.setter
|
|
1529
|
+
def lit_logger(self, lit_logger: 'bool'):
|
|
1530
|
+
"""Sets the lit_logger of this V1UserFeatures.
|
|
1500
1531
|
|
|
1501
1532
|
|
|
1502
|
-
:param
|
|
1533
|
+
:param lit_logger: The lit_logger of this V1UserFeatures. # noqa: E501
|
|
1503
1534
|
:type: bool
|
|
1504
1535
|
"""
|
|
1505
1536
|
|
|
1506
|
-
self.
|
|
1537
|
+
self._lit_logger = lit_logger
|
|
1507
1538
|
|
|
1508
1539
|
@property
|
|
1509
|
-
def
|
|
1510
|
-
"""Gets the
|
|
1540
|
+
def marketplace(self) -> 'bool':
|
|
1541
|
+
"""Gets the marketplace of this V1UserFeatures. # noqa: E501
|
|
1511
1542
|
|
|
1512
1543
|
|
|
1513
|
-
:return: The
|
|
1544
|
+
:return: The marketplace of this V1UserFeatures. # noqa: E501
|
|
1514
1545
|
:rtype: bool
|
|
1515
1546
|
"""
|
|
1516
|
-
return self.
|
|
1547
|
+
return self._marketplace
|
|
1517
1548
|
|
|
1518
|
-
@
|
|
1519
|
-
def
|
|
1520
|
-
"""Sets the
|
|
1549
|
+
@marketplace.setter
|
|
1550
|
+
def marketplace(self, marketplace: 'bool'):
|
|
1551
|
+
"""Sets the marketplace of this V1UserFeatures.
|
|
1521
1552
|
|
|
1522
1553
|
|
|
1523
|
-
:param
|
|
1554
|
+
:param marketplace: The marketplace of this V1UserFeatures. # noqa: E501
|
|
1524
1555
|
:type: bool
|
|
1525
1556
|
"""
|
|
1526
1557
|
|
|
1527
|
-
self.
|
|
1558
|
+
self._marketplace = marketplace
|
|
1528
1559
|
|
|
1529
1560
|
@property
|
|
1530
|
-
def
|
|
1531
|
-
"""Gets the
|
|
1561
|
+
def mmt_fault_tolerance(self) -> 'bool':
|
|
1562
|
+
"""Gets the mmt_fault_tolerance of this V1UserFeatures. # noqa: E501
|
|
1532
1563
|
|
|
1533
1564
|
|
|
1534
|
-
:return: The
|
|
1565
|
+
:return: The mmt_fault_tolerance of this V1UserFeatures. # noqa: E501
|
|
1535
1566
|
:rtype: bool
|
|
1536
1567
|
"""
|
|
1537
|
-
return self.
|
|
1568
|
+
return self._mmt_fault_tolerance
|
|
1538
1569
|
|
|
1539
|
-
@
|
|
1540
|
-
def
|
|
1541
|
-
"""Sets the
|
|
1570
|
+
@mmt_fault_tolerance.setter
|
|
1571
|
+
def mmt_fault_tolerance(self, mmt_fault_tolerance: 'bool'):
|
|
1572
|
+
"""Sets the mmt_fault_tolerance of this V1UserFeatures.
|
|
1542
1573
|
|
|
1543
1574
|
|
|
1544
|
-
:param
|
|
1575
|
+
:param mmt_fault_tolerance: The mmt_fault_tolerance of this V1UserFeatures. # noqa: E501
|
|
1545
1576
|
:type: bool
|
|
1546
1577
|
"""
|
|
1547
1578
|
|
|
1548
|
-
self.
|
|
1579
|
+
self._mmt_fault_tolerance = mmt_fault_tolerance
|
|
1580
|
+
|
|
1581
|
+
@property
|
|
1582
|
+
def mmt_strategy_selector(self) -> 'bool':
|
|
1583
|
+
"""Gets the mmt_strategy_selector of this V1UserFeatures. # noqa: E501
|
|
1584
|
+
|
|
1585
|
+
|
|
1586
|
+
:return: The mmt_strategy_selector of this V1UserFeatures. # noqa: E501
|
|
1587
|
+
:rtype: bool
|
|
1588
|
+
"""
|
|
1589
|
+
return self._mmt_strategy_selector
|
|
1590
|
+
|
|
1591
|
+
@mmt_strategy_selector.setter
|
|
1592
|
+
def mmt_strategy_selector(self, mmt_strategy_selector: 'bool'):
|
|
1593
|
+
"""Sets the mmt_strategy_selector of this V1UserFeatures.
|
|
1594
|
+
|
|
1595
|
+
|
|
1596
|
+
:param mmt_strategy_selector: The mmt_strategy_selector of this V1UserFeatures. # noqa: E501
|
|
1597
|
+
:type: bool
|
|
1598
|
+
"""
|
|
1599
|
+
|
|
1600
|
+
self._mmt_strategy_selector = mmt_strategy_selector
|
|
1549
1601
|
|
|
1550
1602
|
@property
|
|
1551
|
-
def
|
|
1552
|
-
"""Gets the
|
|
1603
|
+
def multiple_studio_versions(self) -> 'bool':
|
|
1604
|
+
"""Gets the multiple_studio_versions of this V1UserFeatures. # noqa: E501
|
|
1553
1605
|
|
|
1554
1606
|
|
|
1555
|
-
:return: The
|
|
1607
|
+
:return: The multiple_studio_versions of this V1UserFeatures. # noqa: E501
|
|
1556
1608
|
:rtype: bool
|
|
1557
1609
|
"""
|
|
1558
|
-
return self.
|
|
1610
|
+
return self._multiple_studio_versions
|
|
1559
1611
|
|
|
1560
|
-
@
|
|
1561
|
-
def
|
|
1562
|
-
"""Sets the
|
|
1612
|
+
@multiple_studio_versions.setter
|
|
1613
|
+
def multiple_studio_versions(self, multiple_studio_versions: 'bool'):
|
|
1614
|
+
"""Sets the multiple_studio_versions of this V1UserFeatures.
|
|
1563
1615
|
|
|
1564
1616
|
|
|
1565
|
-
:param
|
|
1617
|
+
:param multiple_studio_versions: The multiple_studio_versions of this V1UserFeatures. # noqa: E501
|
|
1566
1618
|
:type: bool
|
|
1567
1619
|
"""
|
|
1568
1620
|
|
|
1569
|
-
self.
|
|
1621
|
+
self._multiple_studio_versions = multiple_studio_versions
|
|
1570
1622
|
|
|
1571
1623
|
@property
|
|
1572
|
-
def
|
|
1573
|
-
"""Gets the
|
|
1624
|
+
def nerf_fs_nonpaying(self) -> 'bool':
|
|
1625
|
+
"""Gets the nerf_fs_nonpaying of this V1UserFeatures. # noqa: E501
|
|
1574
1626
|
|
|
1575
1627
|
|
|
1576
|
-
:return: The
|
|
1628
|
+
:return: The nerf_fs_nonpaying of this V1UserFeatures. # noqa: E501
|
|
1577
1629
|
:rtype: bool
|
|
1578
1630
|
"""
|
|
1579
|
-
return self.
|
|
1631
|
+
return self._nerf_fs_nonpaying
|
|
1580
1632
|
|
|
1581
|
-
@
|
|
1582
|
-
def
|
|
1583
|
-
"""Sets the
|
|
1633
|
+
@nerf_fs_nonpaying.setter
|
|
1634
|
+
def nerf_fs_nonpaying(self, nerf_fs_nonpaying: 'bool'):
|
|
1635
|
+
"""Sets the nerf_fs_nonpaying of this V1UserFeatures.
|
|
1584
1636
|
|
|
1585
1637
|
|
|
1586
|
-
:param
|
|
1638
|
+
:param nerf_fs_nonpaying: The nerf_fs_nonpaying of this V1UserFeatures. # noqa: E501
|
|
1587
1639
|
:type: bool
|
|
1588
1640
|
"""
|
|
1589
1641
|
|
|
1590
|
-
self.
|
|
1642
|
+
self._nerf_fs_nonpaying = nerf_fs_nonpaying
|
|
1591
1643
|
|
|
1592
1644
|
@property
|
|
1593
|
-
def
|
|
1594
|
-
"""Gets the
|
|
1645
|
+
def org_level_member_permissions(self) -> 'bool':
|
|
1646
|
+
"""Gets the org_level_member_permissions of this V1UserFeatures. # noqa: E501
|
|
1595
1647
|
|
|
1596
1648
|
|
|
1597
|
-
:return: The
|
|
1649
|
+
:return: The org_level_member_permissions of this V1UserFeatures. # noqa: E501
|
|
1598
1650
|
:rtype: bool
|
|
1599
1651
|
"""
|
|
1600
|
-
return self.
|
|
1652
|
+
return self._org_level_member_permissions
|
|
1601
1653
|
|
|
1602
|
-
@
|
|
1603
|
-
def
|
|
1604
|
-
"""Sets the
|
|
1654
|
+
@org_level_member_permissions.setter
|
|
1655
|
+
def org_level_member_permissions(self, org_level_member_permissions: 'bool'):
|
|
1656
|
+
"""Sets the org_level_member_permissions of this V1UserFeatures.
|
|
1605
1657
|
|
|
1606
1658
|
|
|
1607
|
-
:param
|
|
1659
|
+
:param org_level_member_permissions: The org_level_member_permissions of this V1UserFeatures. # noqa: E501
|
|
1608
1660
|
:type: bool
|
|
1609
1661
|
"""
|
|
1610
1662
|
|
|
1611
|
-
self.
|
|
1663
|
+
self._org_level_member_permissions = org_level_member_permissions
|
|
1612
1664
|
|
|
1613
1665
|
@property
|
|
1614
|
-
def
|
|
1615
|
-
"""Gets the
|
|
1666
|
+
def org_usage_limits(self) -> 'bool':
|
|
1667
|
+
"""Gets the org_usage_limits of this V1UserFeatures. # noqa: E501
|
|
1616
1668
|
|
|
1617
1669
|
|
|
1618
|
-
:return: The
|
|
1670
|
+
:return: The org_usage_limits of this V1UserFeatures. # noqa: E501
|
|
1619
1671
|
:rtype: bool
|
|
1620
1672
|
"""
|
|
1621
|
-
return self.
|
|
1673
|
+
return self._org_usage_limits
|
|
1622
1674
|
|
|
1623
|
-
@
|
|
1624
|
-
def
|
|
1625
|
-
"""Sets the
|
|
1675
|
+
@org_usage_limits.setter
|
|
1676
|
+
def org_usage_limits(self, org_usage_limits: 'bool'):
|
|
1677
|
+
"""Sets the org_usage_limits of this V1UserFeatures.
|
|
1626
1678
|
|
|
1627
1679
|
|
|
1628
|
-
:param
|
|
1680
|
+
:param org_usage_limits: The org_usage_limits of this V1UserFeatures. # noqa: E501
|
|
1629
1681
|
:type: bool
|
|
1630
1682
|
"""
|
|
1631
1683
|
|
|
1632
|
-
self.
|
|
1684
|
+
self._org_usage_limits = org_usage_limits
|
|
1633
1685
|
|
|
1634
1686
|
@property
|
|
1635
|
-
def
|
|
1636
|
-
"""Gets the
|
|
1687
|
+
def persistent_disk(self) -> 'bool':
|
|
1688
|
+
"""Gets the persistent_disk of this V1UserFeatures. # noqa: E501
|
|
1637
1689
|
|
|
1638
1690
|
|
|
1639
|
-
:return: The
|
|
1691
|
+
:return: The persistent_disk of this V1UserFeatures. # noqa: E501
|
|
1640
1692
|
:rtype: bool
|
|
1641
1693
|
"""
|
|
1642
|
-
return self.
|
|
1694
|
+
return self._persistent_disk
|
|
1643
1695
|
|
|
1644
|
-
@
|
|
1645
|
-
def
|
|
1646
|
-
"""Sets the
|
|
1696
|
+
@persistent_disk.setter
|
|
1697
|
+
def persistent_disk(self, persistent_disk: 'bool'):
|
|
1698
|
+
"""Sets the persistent_disk of this V1UserFeatures.
|
|
1647
1699
|
|
|
1648
1700
|
|
|
1649
|
-
:param
|
|
1701
|
+
:param persistent_disk: The persistent_disk of this V1UserFeatures. # noqa: E501
|
|
1650
1702
|
:type: bool
|
|
1651
1703
|
"""
|
|
1652
1704
|
|
|
1653
|
-
self.
|
|
1705
|
+
self._persistent_disk = persistent_disk
|
|
1654
1706
|
|
|
1655
1707
|
@property
|
|
1656
|
-
def
|
|
1657
|
-
"""Gets the
|
|
1708
|
+
def plugin_distributed(self) -> 'bool':
|
|
1709
|
+
"""Gets the plugin_distributed of this V1UserFeatures. # noqa: E501
|
|
1658
1710
|
|
|
1659
1711
|
|
|
1660
|
-
:return: The
|
|
1712
|
+
:return: The plugin_distributed of this V1UserFeatures. # noqa: E501
|
|
1661
1713
|
:rtype: bool
|
|
1662
1714
|
"""
|
|
1663
|
-
return self.
|
|
1715
|
+
return self._plugin_distributed
|
|
1664
1716
|
|
|
1665
|
-
@
|
|
1666
|
-
def
|
|
1667
|
-
"""Sets the
|
|
1717
|
+
@plugin_distributed.setter
|
|
1718
|
+
def plugin_distributed(self, plugin_distributed: 'bool'):
|
|
1719
|
+
"""Sets the plugin_distributed of this V1UserFeatures.
|
|
1668
1720
|
|
|
1669
1721
|
|
|
1670
|
-
:param
|
|
1722
|
+
:param plugin_distributed: The plugin_distributed of this V1UserFeatures. # noqa: E501
|
|
1671
1723
|
:type: bool
|
|
1672
1724
|
"""
|
|
1673
1725
|
|
|
1674
|
-
self.
|
|
1726
|
+
self._plugin_distributed = plugin_distributed
|
|
1675
1727
|
|
|
1676
1728
|
@property
|
|
1677
|
-
def
|
|
1678
|
-
"""Gets the
|
|
1729
|
+
def plugin_inference(self) -> 'bool':
|
|
1730
|
+
"""Gets the plugin_inference of this V1UserFeatures. # noqa: E501
|
|
1679
1731
|
|
|
1680
1732
|
|
|
1681
|
-
:return: The
|
|
1733
|
+
:return: The plugin_inference of this V1UserFeatures. # noqa: E501
|
|
1682
1734
|
:rtype: bool
|
|
1683
1735
|
"""
|
|
1684
|
-
return self.
|
|
1736
|
+
return self._plugin_inference
|
|
1685
1737
|
|
|
1686
|
-
@
|
|
1687
|
-
def
|
|
1688
|
-
"""Sets the
|
|
1738
|
+
@plugin_inference.setter
|
|
1739
|
+
def plugin_inference(self, plugin_inference: 'bool'):
|
|
1740
|
+
"""Sets the plugin_inference of this V1UserFeatures.
|
|
1689
1741
|
|
|
1690
1742
|
|
|
1691
|
-
:param
|
|
1743
|
+
:param plugin_inference: The plugin_inference of this V1UserFeatures. # noqa: E501
|
|
1692
1744
|
:type: bool
|
|
1693
1745
|
"""
|
|
1694
1746
|
|
|
1695
|
-
self.
|
|
1747
|
+
self._plugin_inference = plugin_inference
|
|
1696
1748
|
|
|
1697
1749
|
@property
|
|
1698
|
-
def
|
|
1699
|
-
"""Gets the
|
|
1750
|
+
def plugin_label_studio(self) -> 'bool':
|
|
1751
|
+
"""Gets the plugin_label_studio of this V1UserFeatures. # noqa: E501
|
|
1700
1752
|
|
|
1701
1753
|
|
|
1702
|
-
:return: The
|
|
1754
|
+
:return: The plugin_label_studio of this V1UserFeatures. # noqa: E501
|
|
1703
1755
|
:rtype: bool
|
|
1704
1756
|
"""
|
|
1705
|
-
return self.
|
|
1757
|
+
return self._plugin_label_studio
|
|
1706
1758
|
|
|
1707
|
-
@
|
|
1708
|
-
def
|
|
1709
|
-
"""Sets the
|
|
1759
|
+
@plugin_label_studio.setter
|
|
1760
|
+
def plugin_label_studio(self, plugin_label_studio: 'bool'):
|
|
1761
|
+
"""Sets the plugin_label_studio of this V1UserFeatures.
|
|
1710
1762
|
|
|
1711
1763
|
|
|
1712
|
-
:param
|
|
1764
|
+
:param plugin_label_studio: The plugin_label_studio of this V1UserFeatures. # noqa: E501
|
|
1713
1765
|
:type: bool
|
|
1714
1766
|
"""
|
|
1715
1767
|
|
|
1716
|
-
self.
|
|
1768
|
+
self._plugin_label_studio = plugin_label_studio
|
|
1717
1769
|
|
|
1718
1770
|
@property
|
|
1719
|
-
def
|
|
1720
|
-
"""Gets the
|
|
1771
|
+
def plugin_langflow(self) -> 'bool':
|
|
1772
|
+
"""Gets the plugin_langflow of this V1UserFeatures. # noqa: E501
|
|
1721
1773
|
|
|
1722
1774
|
|
|
1723
|
-
:return: The
|
|
1775
|
+
:return: The plugin_langflow of this V1UserFeatures. # noqa: E501
|
|
1724
1776
|
:rtype: bool
|
|
1725
1777
|
"""
|
|
1726
|
-
return self.
|
|
1778
|
+
return self._plugin_langflow
|
|
1727
1779
|
|
|
1728
|
-
@
|
|
1729
|
-
def
|
|
1730
|
-
"""Sets the
|
|
1780
|
+
@plugin_langflow.setter
|
|
1781
|
+
def plugin_langflow(self, plugin_langflow: 'bool'):
|
|
1782
|
+
"""Sets the plugin_langflow of this V1UserFeatures.
|
|
1731
1783
|
|
|
1732
1784
|
|
|
1733
|
-
:param
|
|
1785
|
+
:param plugin_langflow: The plugin_langflow of this V1UserFeatures. # noqa: E501
|
|
1734
1786
|
:type: bool
|
|
1735
1787
|
"""
|
|
1736
1788
|
|
|
1737
|
-
self.
|
|
1789
|
+
self._plugin_langflow = plugin_langflow
|
|
1790
|
+
|
|
1791
|
+
@property
|
|
1792
|
+
def plugin_python_profiler(self) -> 'bool':
|
|
1793
|
+
"""Gets the plugin_python_profiler of this V1UserFeatures. # noqa: E501
|
|
1794
|
+
|
|
1795
|
+
|
|
1796
|
+
:return: The plugin_python_profiler of this V1UserFeatures. # noqa: E501
|
|
1797
|
+
:rtype: bool
|
|
1798
|
+
"""
|
|
1799
|
+
return self._plugin_python_profiler
|
|
1800
|
+
|
|
1801
|
+
@plugin_python_profiler.setter
|
|
1802
|
+
def plugin_python_profiler(self, plugin_python_profiler: 'bool'):
|
|
1803
|
+
"""Sets the plugin_python_profiler of this V1UserFeatures.
|
|
1804
|
+
|
|
1805
|
+
|
|
1806
|
+
:param plugin_python_profiler: The plugin_python_profiler of this V1UserFeatures. # noqa: E501
|
|
1807
|
+
:type: bool
|
|
1808
|
+
"""
|
|
1809
|
+
|
|
1810
|
+
self._plugin_python_profiler = plugin_python_profiler
|
|
1811
|
+
|
|
1812
|
+
@property
|
|
1813
|
+
def plugin_sweeps(self) -> 'bool':
|
|
1814
|
+
"""Gets the plugin_sweeps of this V1UserFeatures. # noqa: E501
|
|
1815
|
+
|
|
1816
|
+
|
|
1817
|
+
:return: The plugin_sweeps of this V1UserFeatures. # noqa: E501
|
|
1818
|
+
:rtype: bool
|
|
1819
|
+
"""
|
|
1820
|
+
return self._plugin_sweeps
|
|
1821
|
+
|
|
1822
|
+
@plugin_sweeps.setter
|
|
1823
|
+
def plugin_sweeps(self, plugin_sweeps: 'bool'):
|
|
1824
|
+
"""Sets the plugin_sweeps of this V1UserFeatures.
|
|
1825
|
+
|
|
1826
|
+
|
|
1827
|
+
:param plugin_sweeps: The plugin_sweeps of this V1UserFeatures. # noqa: E501
|
|
1828
|
+
:type: bool
|
|
1829
|
+
"""
|
|
1830
|
+
|
|
1831
|
+
self._plugin_sweeps = plugin_sweeps
|
|
1738
1832
|
|
|
1739
1833
|
@property
|
|
1740
1834
|
def pricing_updates(self) -> 'bool':
|
|
@@ -1778,6 +1872,27 @@ class V1UserFeatures(object):
|
|
|
1778
1872
|
|
|
1779
1873
|
self._product_generator = product_generator
|
|
1780
1874
|
|
|
1875
|
+
@property
|
|
1876
|
+
def product_license(self) -> 'bool':
|
|
1877
|
+
"""Gets the product_license of this V1UserFeatures. # noqa: E501
|
|
1878
|
+
|
|
1879
|
+
|
|
1880
|
+
:return: The product_license of this V1UserFeatures. # noqa: E501
|
|
1881
|
+
:rtype: bool
|
|
1882
|
+
"""
|
|
1883
|
+
return self._product_license
|
|
1884
|
+
|
|
1885
|
+
@product_license.setter
|
|
1886
|
+
def product_license(self, product_license: 'bool'):
|
|
1887
|
+
"""Sets the product_license of this V1UserFeatures.
|
|
1888
|
+
|
|
1889
|
+
|
|
1890
|
+
:param product_license: The product_license of this V1UserFeatures. # noqa: E501
|
|
1891
|
+
:type: bool
|
|
1892
|
+
"""
|
|
1893
|
+
|
|
1894
|
+
self._product_license = product_license
|
|
1895
|
+
|
|
1781
1896
|
@property
|
|
1782
1897
|
def project_selector(self) -> 'bool':
|
|
1783
1898
|
"""Gets the project_selector of this V1UserFeatures. # noqa: E501
|
|
@@ -1800,25 +1915,46 @@ class V1UserFeatures(object):
|
|
|
1800
1915
|
self._project_selector = project_selector
|
|
1801
1916
|
|
|
1802
1917
|
@property
|
|
1803
|
-
def
|
|
1804
|
-
"""Gets the
|
|
1918
|
+
def publish_pipelines(self) -> 'bool':
|
|
1919
|
+
"""Gets the publish_pipelines of this V1UserFeatures. # noqa: E501
|
|
1805
1920
|
|
|
1806
1921
|
|
|
1807
|
-
:return: The
|
|
1922
|
+
:return: The publish_pipelines of this V1UserFeatures. # noqa: E501
|
|
1808
1923
|
:rtype: bool
|
|
1809
1924
|
"""
|
|
1810
|
-
return self.
|
|
1925
|
+
return self._publish_pipelines
|
|
1811
1926
|
|
|
1812
|
-
@
|
|
1813
|
-
def
|
|
1814
|
-
"""Sets the
|
|
1927
|
+
@publish_pipelines.setter
|
|
1928
|
+
def publish_pipelines(self, publish_pipelines: 'bool'):
|
|
1929
|
+
"""Sets the publish_pipelines of this V1UserFeatures.
|
|
1815
1930
|
|
|
1816
1931
|
|
|
1817
|
-
:param
|
|
1932
|
+
:param publish_pipelines: The publish_pipelines of this V1UserFeatures. # noqa: E501
|
|
1818
1933
|
:type: bool
|
|
1819
1934
|
"""
|
|
1820
1935
|
|
|
1821
|
-
self.
|
|
1936
|
+
self._publish_pipelines = publish_pipelines
|
|
1937
|
+
|
|
1938
|
+
@property
|
|
1939
|
+
def reserved_machines_tab(self) -> 'bool':
|
|
1940
|
+
"""Gets the reserved_machines_tab of this V1UserFeatures. # noqa: E501
|
|
1941
|
+
|
|
1942
|
+
|
|
1943
|
+
:return: The reserved_machines_tab of this V1UserFeatures. # noqa: E501
|
|
1944
|
+
:rtype: bool
|
|
1945
|
+
"""
|
|
1946
|
+
return self._reserved_machines_tab
|
|
1947
|
+
|
|
1948
|
+
@reserved_machines_tab.setter
|
|
1949
|
+
def reserved_machines_tab(self, reserved_machines_tab: 'bool'):
|
|
1950
|
+
"""Sets the reserved_machines_tab of this V1UserFeatures.
|
|
1951
|
+
|
|
1952
|
+
|
|
1953
|
+
:param reserved_machines_tab: The reserved_machines_tab of this V1UserFeatures. # noqa: E501
|
|
1954
|
+
:type: bool
|
|
1955
|
+
"""
|
|
1956
|
+
|
|
1957
|
+
self._reserved_machines_tab = reserved_machines_tab
|
|
1822
1958
|
|
|
1823
1959
|
@property
|
|
1824
1960
|
def restartable_jobs(self) -> 'bool':
|
|
@@ -1862,6 +1998,27 @@ class V1UserFeatures(object):
|
|
|
1862
1998
|
|
|
1863
1999
|
self._runnable_public_studio_page = runnable_public_studio_page
|
|
1864
2000
|
|
|
2001
|
+
@property
|
|
2002
|
+
def security_docs(self) -> 'bool':
|
|
2003
|
+
"""Gets the security_docs of this V1UserFeatures. # noqa: E501
|
|
2004
|
+
|
|
2005
|
+
|
|
2006
|
+
:return: The security_docs of this V1UserFeatures. # noqa: E501
|
|
2007
|
+
:rtype: bool
|
|
2008
|
+
"""
|
|
2009
|
+
return self._security_docs
|
|
2010
|
+
|
|
2011
|
+
@security_docs.setter
|
|
2012
|
+
def security_docs(self, security_docs: 'bool'):
|
|
2013
|
+
"""Sets the security_docs of this V1UserFeatures.
|
|
2014
|
+
|
|
2015
|
+
|
|
2016
|
+
:param security_docs: The security_docs of this V1UserFeatures. # noqa: E501
|
|
2017
|
+
:type: bool
|
|
2018
|
+
"""
|
|
2019
|
+
|
|
2020
|
+
self._security_docs = security_docs
|
|
2021
|
+
|
|
1865
2022
|
@property
|
|
1866
2023
|
def show_dev_admin(self) -> 'bool':
|
|
1867
2024
|
"""Gets the show_dev_admin of this V1UserFeatures. # noqa: E501
|
|
@@ -1905,88 +2062,46 @@ class V1UserFeatures(object):
|
|
|
1905
2062
|
self._slurm = slurm
|
|
1906
2063
|
|
|
1907
2064
|
@property
|
|
1908
|
-
def
|
|
1909
|
-
"""Gets the
|
|
1910
|
-
|
|
1911
|
-
|
|
1912
|
-
:return: The slurm_machine_selector of this V1UserFeatures. # noqa: E501
|
|
1913
|
-
:rtype: bool
|
|
1914
|
-
"""
|
|
1915
|
-
return self._slurm_machine_selector
|
|
1916
|
-
|
|
1917
|
-
@slurm_machine_selector.setter
|
|
1918
|
-
def slurm_machine_selector(self, slurm_machine_selector: 'bool'):
|
|
1919
|
-
"""Sets the slurm_machine_selector of this V1UserFeatures.
|
|
1920
|
-
|
|
1921
|
-
|
|
1922
|
-
:param slurm_machine_selector: The slurm_machine_selector of this V1UserFeatures. # noqa: E501
|
|
1923
|
-
:type: bool
|
|
1924
|
-
"""
|
|
1925
|
-
|
|
1926
|
-
self._slurm_machine_selector = slurm_machine_selector
|
|
1927
|
-
|
|
1928
|
-
@property
|
|
1929
|
-
def snapshotter_service(self) -> 'bool':
|
|
1930
|
-
"""Gets the snapshotter_service of this V1UserFeatures. # noqa: E501
|
|
1931
|
-
|
|
1932
|
-
|
|
1933
|
-
:return: The snapshotter_service of this V1UserFeatures. # noqa: E501
|
|
1934
|
-
:rtype: bool
|
|
1935
|
-
"""
|
|
1936
|
-
return self._snapshotter_service
|
|
1937
|
-
|
|
1938
|
-
@snapshotter_service.setter
|
|
1939
|
-
def snapshotter_service(self, snapshotter_service: 'bool'):
|
|
1940
|
-
"""Sets the snapshotter_service of this V1UserFeatures.
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
:param snapshotter_service: The snapshotter_service of this V1UserFeatures. # noqa: E501
|
|
1944
|
-
:type: bool
|
|
1945
|
-
"""
|
|
1946
|
-
|
|
1947
|
-
self._snapshotter_service = snapshotter_service
|
|
1948
|
-
|
|
1949
|
-
@property
|
|
1950
|
-
def snowflake_connection(self) -> 'bool':
|
|
1951
|
-
"""Gets the snowflake_connection of this V1UserFeatures. # noqa: E501
|
|
2065
|
+
def specialised_studios(self) -> 'bool':
|
|
2066
|
+
"""Gets the specialised_studios of this V1UserFeatures. # noqa: E501
|
|
1952
2067
|
|
|
1953
2068
|
|
|
1954
|
-
:return: The
|
|
2069
|
+
:return: The specialised_studios of this V1UserFeatures. # noqa: E501
|
|
1955
2070
|
:rtype: bool
|
|
1956
2071
|
"""
|
|
1957
|
-
return self.
|
|
2072
|
+
return self._specialised_studios
|
|
1958
2073
|
|
|
1959
|
-
@
|
|
1960
|
-
def
|
|
1961
|
-
"""Sets the
|
|
2074
|
+
@specialised_studios.setter
|
|
2075
|
+
def specialised_studios(self, specialised_studios: 'bool'):
|
|
2076
|
+
"""Sets the specialised_studios of this V1UserFeatures.
|
|
1962
2077
|
|
|
1963
2078
|
|
|
1964
|
-
:param
|
|
2079
|
+
:param specialised_studios: The specialised_studios of this V1UserFeatures. # noqa: E501
|
|
1965
2080
|
:type: bool
|
|
1966
2081
|
"""
|
|
1967
2082
|
|
|
1968
|
-
self.
|
|
2083
|
+
self._specialised_studios = specialised_studios
|
|
1969
2084
|
|
|
1970
2085
|
@property
|
|
1971
|
-
def
|
|
1972
|
-
"""Gets the
|
|
2086
|
+
def storage_overuse_deletion(self) -> 'bool':
|
|
2087
|
+
"""Gets the storage_overuse_deletion of this V1UserFeatures. # noqa: E501
|
|
1973
2088
|
|
|
1974
2089
|
|
|
1975
|
-
:return: The
|
|
2090
|
+
:return: The storage_overuse_deletion of this V1UserFeatures. # noqa: E501
|
|
1976
2091
|
:rtype: bool
|
|
1977
2092
|
"""
|
|
1978
|
-
return self.
|
|
2093
|
+
return self._storage_overuse_deletion
|
|
1979
2094
|
|
|
1980
|
-
@
|
|
1981
|
-
def
|
|
1982
|
-
"""Sets the
|
|
2095
|
+
@storage_overuse_deletion.setter
|
|
2096
|
+
def storage_overuse_deletion(self, storage_overuse_deletion: 'bool'):
|
|
2097
|
+
"""Sets the storage_overuse_deletion of this V1UserFeatures.
|
|
1983
2098
|
|
|
1984
2099
|
|
|
1985
|
-
:param
|
|
2100
|
+
:param storage_overuse_deletion: The storage_overuse_deletion of this V1UserFeatures. # noqa: E501
|
|
1986
2101
|
:type: bool
|
|
1987
2102
|
"""
|
|
1988
2103
|
|
|
1989
|
-
self.
|
|
2104
|
+
self._storage_overuse_deletion = storage_overuse_deletion
|
|
1990
2105
|
|
|
1991
2106
|
@property
|
|
1992
2107
|
def studio_config(self) -> 'bool':
|
|
@@ -2009,27 +2124,6 @@ class V1UserFeatures(object):
|
|
|
2009
2124
|
|
|
2010
2125
|
self._studio_config = studio_config
|
|
2011
2126
|
|
|
2012
|
-
@property
|
|
2013
|
-
def studio_on_stop(self) -> 'bool':
|
|
2014
|
-
"""Gets the studio_on_stop of this V1UserFeatures. # noqa: E501
|
|
2015
|
-
|
|
2016
|
-
|
|
2017
|
-
:return: The studio_on_stop of this V1UserFeatures. # noqa: E501
|
|
2018
|
-
:rtype: bool
|
|
2019
|
-
"""
|
|
2020
|
-
return self._studio_on_stop
|
|
2021
|
-
|
|
2022
|
-
@studio_on_stop.setter
|
|
2023
|
-
def studio_on_stop(self, studio_on_stop: 'bool'):
|
|
2024
|
-
"""Sets the studio_on_stop of this V1UserFeatures.
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
|
-
:param studio_on_stop: The studio_on_stop of this V1UserFeatures. # noqa: E501
|
|
2028
|
-
:type: bool
|
|
2029
|
-
"""
|
|
2030
|
-
|
|
2031
|
-
self._studio_on_stop = studio_on_stop
|
|
2032
|
-
|
|
2033
2127
|
@property
|
|
2034
2128
|
def studio_version_visibility(self) -> 'bool':
|
|
2035
2129
|
"""Gets the studio_version_visibility of this V1UserFeatures. # noqa: E501
|
|
@@ -2052,109 +2146,67 @@ class V1UserFeatures(object):
|
|
|
2052
2146
|
self._studio_version_visibility = studio_version_visibility
|
|
2053
2147
|
|
|
2054
2148
|
@property
|
|
2055
|
-
def
|
|
2056
|
-
"""Gets the
|
|
2057
|
-
|
|
2058
|
-
|
|
2059
|
-
:return: The teamspace_storage_tab of this V1UserFeatures. # noqa: E501
|
|
2060
|
-
:rtype: bool
|
|
2061
|
-
"""
|
|
2062
|
-
return self._teamspace_storage_tab
|
|
2063
|
-
|
|
2064
|
-
@teamspace_storage_tab.setter
|
|
2065
|
-
def teamspace_storage_tab(self, teamspace_storage_tab: 'bool'):
|
|
2066
|
-
"""Sets the teamspace_storage_tab of this V1UserFeatures.
|
|
2067
|
-
|
|
2068
|
-
|
|
2069
|
-
:param teamspace_storage_tab: The teamspace_storage_tab of this V1UserFeatures. # noqa: E501
|
|
2070
|
-
:type: bool
|
|
2071
|
-
"""
|
|
2072
|
-
|
|
2073
|
-
self._teamspace_storage_tab = teamspace_storage_tab
|
|
2074
|
-
|
|
2075
|
-
@property
|
|
2076
|
-
def trainium2(self) -> 'bool':
|
|
2077
|
-
"""Gets the trainium2 of this V1UserFeatures. # noqa: E501
|
|
2078
|
-
|
|
2079
|
-
|
|
2080
|
-
:return: The trainium2 of this V1UserFeatures. # noqa: E501
|
|
2081
|
-
:rtype: bool
|
|
2082
|
-
"""
|
|
2083
|
-
return self._trainium2
|
|
2084
|
-
|
|
2085
|
-
@trainium2.setter
|
|
2086
|
-
def trainium2(self, trainium2: 'bool'):
|
|
2087
|
-
"""Sets the trainium2 of this V1UserFeatures.
|
|
2088
|
-
|
|
2089
|
-
|
|
2090
|
-
:param trainium2: The trainium2 of this V1UserFeatures. # noqa: E501
|
|
2091
|
-
:type: bool
|
|
2092
|
-
"""
|
|
2093
|
-
|
|
2094
|
-
self._trainium2 = trainium2
|
|
2095
|
-
|
|
2096
|
-
@property
|
|
2097
|
-
def use_rclone_mounts_only(self) -> 'bool':
|
|
2098
|
-
"""Gets the use_rclone_mounts_only of this V1UserFeatures. # noqa: E501
|
|
2149
|
+
def vultr(self) -> 'bool':
|
|
2150
|
+
"""Gets the vultr of this V1UserFeatures. # noqa: E501
|
|
2099
2151
|
|
|
2100
2152
|
|
|
2101
|
-
:return: The
|
|
2153
|
+
:return: The vultr of this V1UserFeatures. # noqa: E501
|
|
2102
2154
|
:rtype: bool
|
|
2103
2155
|
"""
|
|
2104
|
-
return self.
|
|
2156
|
+
return self._vultr
|
|
2105
2157
|
|
|
2106
|
-
@
|
|
2107
|
-
def
|
|
2108
|
-
"""Sets the
|
|
2158
|
+
@vultr.setter
|
|
2159
|
+
def vultr(self, vultr: 'bool'):
|
|
2160
|
+
"""Sets the vultr of this V1UserFeatures.
|
|
2109
2161
|
|
|
2110
2162
|
|
|
2111
|
-
:param
|
|
2163
|
+
:param vultr: The vultr of this V1UserFeatures. # noqa: E501
|
|
2112
2164
|
:type: bool
|
|
2113
2165
|
"""
|
|
2114
2166
|
|
|
2115
|
-
self.
|
|
2167
|
+
self._vultr = vultr
|
|
2116
2168
|
|
|
2117
2169
|
@property
|
|
2118
|
-
def
|
|
2119
|
-
"""Gets the
|
|
2170
|
+
def weka(self) -> 'bool':
|
|
2171
|
+
"""Gets the weka of this V1UserFeatures. # noqa: E501
|
|
2120
2172
|
|
|
2121
2173
|
|
|
2122
|
-
:return: The
|
|
2174
|
+
:return: The weka of this V1UserFeatures. # noqa: E501
|
|
2123
2175
|
:rtype: bool
|
|
2124
2176
|
"""
|
|
2125
|
-
return self.
|
|
2177
|
+
return self._weka
|
|
2126
2178
|
|
|
2127
|
-
@
|
|
2128
|
-
def
|
|
2129
|
-
"""Sets the
|
|
2179
|
+
@weka.setter
|
|
2180
|
+
def weka(self, weka: 'bool'):
|
|
2181
|
+
"""Sets the weka of this V1UserFeatures.
|
|
2130
2182
|
|
|
2131
2183
|
|
|
2132
|
-
:param
|
|
2184
|
+
:param weka: The weka of this V1UserFeatures. # noqa: E501
|
|
2133
2185
|
:type: bool
|
|
2134
2186
|
"""
|
|
2135
2187
|
|
|
2136
|
-
self.
|
|
2188
|
+
self._weka = weka
|
|
2137
2189
|
|
|
2138
2190
|
@property
|
|
2139
|
-
def
|
|
2140
|
-
"""Gets the
|
|
2191
|
+
def writable_s3_connections(self) -> 'bool':
|
|
2192
|
+
"""Gets the writable_s3_connections of this V1UserFeatures. # noqa: E501
|
|
2141
2193
|
|
|
2142
2194
|
|
|
2143
|
-
:return: The
|
|
2195
|
+
:return: The writable_s3_connections of this V1UserFeatures. # noqa: E501
|
|
2144
2196
|
:rtype: bool
|
|
2145
2197
|
"""
|
|
2146
|
-
return self.
|
|
2198
|
+
return self._writable_s3_connections
|
|
2147
2199
|
|
|
2148
|
-
@
|
|
2149
|
-
def
|
|
2150
|
-
"""Sets the
|
|
2200
|
+
@writable_s3_connections.setter
|
|
2201
|
+
def writable_s3_connections(self, writable_s3_connections: 'bool'):
|
|
2202
|
+
"""Sets the writable_s3_connections of this V1UserFeatures.
|
|
2151
2203
|
|
|
2152
2204
|
|
|
2153
|
-
:param
|
|
2205
|
+
:param writable_s3_connections: The writable_s3_connections of this V1UserFeatures. # noqa: E501
|
|
2154
2206
|
:type: bool
|
|
2155
2207
|
"""
|
|
2156
2208
|
|
|
2157
|
-
self.
|
|
2209
|
+
self._writable_s3_connections = writable_s3_connections
|
|
2158
2210
|
|
|
2159
2211
|
def to_dict(self) -> dict:
|
|
2160
2212
|
"""Returns the model properties as a dict"""
|