lightning-sdk 0.1.3__py3-none-any.whl → 0.1.47__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 +12 -2
- lightning_sdk/agents.py +46 -0
- lightning_sdk/ai_hub.py +185 -0
- lightning_sdk/api/__init__.py +4 -0
- lightning_sdk/api/agents_api.py +107 -0
- lightning_sdk/api/ai_hub_api.py +130 -0
- lightning_sdk/api/deployment_api.py +574 -0
- lightning_sdk/api/job_api.py +328 -0
- lightning_sdk/api/lit_registry_api.py +12 -0
- lightning_sdk/api/mmt_api.py +205 -0
- lightning_sdk/api/org_api.py +1 -3
- lightning_sdk/api/studio_api.py +172 -81
- lightning_sdk/api/teamspace_api.py +237 -20
- lightning_sdk/api/user_api.py +24 -9
- lightning_sdk/api/utils.py +429 -48
- lightning_sdk/cli/ai_hub.py +49 -0
- lightning_sdk/cli/download.py +132 -0
- lightning_sdk/cli/entrypoint.py +13 -3
- lightning_sdk/cli/list.py +54 -0
- lightning_sdk/cli/run.py +206 -0
- lightning_sdk/cli/serve.py +218 -0
- lightning_sdk/cli/studios_menu.py +78 -0
- lightning_sdk/cli/teamspace_menu.py +94 -0
- lightning_sdk/cli/upload.py +79 -89
- lightning_sdk/constants.py +29 -1
- lightning_sdk/deployment/__init__.py +25 -0
- lightning_sdk/deployment/deployment.py +389 -0
- lightning_sdk/helpers.py +49 -0
- lightning_sdk/job/__init__.py +5 -0
- lightning_sdk/job/base.py +359 -0
- lightning_sdk/job/job.py +291 -0
- lightning_sdk/job/v1.py +269 -0
- lightning_sdk/job/v2.py +221 -0
- lightning_sdk/job/work.py +81 -0
- lightning_sdk/lightning_cloud/__version__.py +1 -1
- lightning_sdk/lightning_cloud/cli/__main__.py +15 -13
- lightning_sdk/lightning_cloud/env.py +1 -0
- lightning_sdk/lightning_cloud/login.py +12 -8
- lightning_sdk/lightning_cloud/openapi/__init__.py +289 -42
- lightning_sdk/lightning_cloud/openapi/api/__init__.py +10 -0
- lightning_sdk/lightning_cloud/openapi/api/analytics_service_api.py +141 -0
- lightning_sdk/lightning_cloud/openapi/api/assistants_service_api.py +1075 -227
- lightning_sdk/lightning_cloud/openapi/api/billing_service_api.py +9 -1
- lightning_sdk/lightning_cloud/openapi/api/cloud_space_service_api.py +992 -233
- lightning_sdk/lightning_cloud/openapi/api/cluster_service_api.py +883 -120
- lightning_sdk/lightning_cloud/openapi/api/data_connection_service_api.py +10 -5
- lightning_sdk/lightning_cloud/openapi/api/deployment_templates_service_api.py +756 -0
- lightning_sdk/lightning_cloud/openapi/api/endpoint_service_api.py +422 -1
- lightning_sdk/lightning_cloud/openapi/api/experiments_service_api.py +242 -0
- lightning_sdk/lightning_cloud/openapi/api/file_system_service_api.py +674 -0
- lightning_sdk/lightning_cloud/openapi/api/jobs_service_api.py +3823 -0
- lightning_sdk/lightning_cloud/openapi/api/lightningapp_instance_service_api.py +158 -594
- lightning_sdk/lightning_cloud/openapi/api/lightningapp_v2_service_api.py +0 -1086
- lightning_sdk/lightning_cloud/openapi/api/lightningwork_service_api.py +113 -0
- lightning_sdk/lightning_cloud/openapi/api/lit_logger_service_api.py +1753 -0
- lightning_sdk/lightning_cloud/openapi/api/lit_registry_service_api.py +343 -0
- lightning_sdk/lightning_cloud/openapi/api/models_store_api.py +1423 -108
- lightning_sdk/lightning_cloud/openapi/api/organizations_service_api.py +421 -1
- lightning_sdk/lightning_cloud/openapi/api/profiler_service_api.py +663 -0
- lightning_sdk/lightning_cloud/openapi/api/projects_service_api.py +5 -1
- lightning_sdk/lightning_cloud/openapi/api/secret_service_api.py +478 -1
- lightning_sdk/lightning_cloud/openapi/api/slurm_jobs_user_service_api.py +9 -5
- lightning_sdk/lightning_cloud/openapi/api/snowflake_service_api.py +686 -0
- lightning_sdk/lightning_cloud/openapi/api/storage_service_api.py +1094 -0
- lightning_sdk/lightning_cloud/openapi/api/studio_jobs_service_api.py +4 -4
- lightning_sdk/lightning_cloud/openapi/api/user_service_api.py +1081 -34
- lightning_sdk/lightning_cloud/openapi/models/__init__.py +279 -40
- lightning_sdk/lightning_cloud/openapi/models/affiliatelinks_id_body.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/agentmanagedendpoints_id_body.py +305 -0
- lightning_sdk/lightning_cloud/openapi/models/{assistants_id_body.py → agents_id_body.py} +201 -71
- lightning_sdk/lightning_cloud/openapi/models/app_id_works_body.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/approveautojoindomain_domain_body.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/apps_id_body1.py +107 -3
- lightning_sdk/lightning_cloud/openapi/models/assistant_id_conversations_body.py +1 -27
- lightning_sdk/lightning_cloud/openapi/models/{v1_get_cluster_health_response.py → captures_id_body.py} +16 -16
- lightning_sdk/lightning_cloud/openapi/models/cloud_space_id_versionpublications_body1.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/cloudspace_id_runs_body.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/cloudspaces_id_body.py +58 -6
- lightning_sdk/lightning_cloud/openapi/models/cluster_id_capacityblock_body.py +253 -0
- lightning_sdk/lightning_cloud/openapi/models/cluster_id_capacityreservations_body.py +55 -3
- lightning_sdk/lightning_cloud/openapi/models/cluster_id_proxies_body.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/create.py +157 -1
- lightning_sdk/lightning_cloud/openapi/models/create_deployment_request_defines_a_spec_for_the_job_that_allows_for_autoscaling_jobs.py +383 -0
- lightning_sdk/lightning_cloud/openapi/models/deployments_id_body.py +565 -0
- lightning_sdk/lightning_cloud/openapi/models/deploymenttemplates_id_body.py +513 -0
- lightning_sdk/lightning_cloud/openapi/models/endpoints_id_body.py +43 -17
- lightning_sdk/lightning_cloud/openapi/models/experiment_name_variant_name_body.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/externalv1_cloud_space_instance_status.py +107 -1
- lightning_sdk/lightning_cloud/openapi/models/externalv1_lightningapp_instance.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/externalv1_user_status.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/fileendpoints_id_body.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/id_codeconfig_body.py +29 -55
- lightning_sdk/lightning_cloud/openapi/models/id_engage_body.py +3 -29
- lightning_sdk/lightning_cloud/openapi/models/id_engage_body1.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/id_execute_body.py +3 -55
- lightning_sdk/lightning_cloud/openapi/models/id_execute_body1.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/id_get_body.py +133 -3
- lightning_sdk/lightning_cloud/openapi/models/id_index_body.py +67 -15
- lightning_sdk/lightning_cloud/openapi/models/id_index_body2.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/id_index_body3.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/id_reportlogsactivity_body.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/id_start_body.py +29 -3
- lightning_sdk/lightning_cloud/openapi/models/id_storage_body.py +52 -26
- lightning_sdk/lightning_cloud/openapi/models/id_visibility_body.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/jobs_id_body1.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/jobs_id_body2.py +17 -43
- lightning_sdk/lightning_cloud/openapi/models/jobs_id_body3.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/litloggermetrics_id_body.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/litpages_id_body.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/loggermetrics_id_body.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/metrics_stream_id_loggerartifacts_body.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/metricsstream_create_body.py +383 -0
- lightning_sdk/lightning_cloud/openapi/models/{v1_cloud_space_id_list.py → metricsstream_delete_body.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/metricsstream_id_body.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/{v1_upload_model_response.py → model_id_versions_body.py} +25 -51
- lightning_sdk/lightning_cloud/openapi/models/model_id_visibility_body.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/models_model_id_body.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/multimachinejobs_id_body.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/org_id_memberships_body.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/orgs_id_body.py +183 -1
- lightning_sdk/lightning_cloud/openapi/models/profiler_captures_body.py +279 -0
- lightning_sdk/lightning_cloud/openapi/models/profiler_enabled_body.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/project_id_agentmanagedendpoints_body.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/{project_id_assistants_body.py → project_id_agents_body.py} +159 -55
- lightning_sdk/lightning_cloud/openapi/models/project_id_cloudspaces_body.py +71 -19
- lightning_sdk/lightning_cloud/openapi/models/project_id_fileendpoints_body.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/project_id_jobs_body.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/project_id_litregistry_body.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/project_id_memberships_body.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/{v1_upload_model_request.py → project_id_models_body.py} +70 -70
- lightning_sdk/lightning_cloud/openapi/models/project_id_multimachinejobs_body.py +227 -0
- lightning_sdk/lightning_cloud/openapi/models/project_id_secrets_body.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/project_id_snowflake_body.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/projects_id_body.py +29 -3
- lightning_sdk/lightning_cloud/openapi/models/query_query_id_body.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/secrets_id_body1.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/servers_server_id_body.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/service_artifact_artifact_kind.py +104 -0
- lightning_sdk/lightning_cloud/openapi/models/serviceexecution_id_body.py +43 -43
- lightning_sdk/lightning_cloud/openapi/models/slurm_jobs_body.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/snowflake_export_body.py +305 -0
- lightning_sdk/lightning_cloud/openapi/models/{v1_download_model_response.py → snowflake_query_body.py} +51 -51
- lightning_sdk/lightning_cloud/openapi/models/storage_complete_body.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/update.py +105 -1
- lightning_sdk/lightning_cloud/openapi/models/upload_id_complete_body.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/upload_id_parts_body.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/user_id_affiliatelinks_body.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_accelerator_quota_info.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_ack_user_storage_violation_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_add_job_timing_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_affiliate_link.py +435 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_agent_job.py +131 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_api_pricing_spec.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_app_type.py +104 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_append_logger_metrics_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_approve_auto_join_domain_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_assign_variant_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_assistant.py +131 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_assistant_knowledge_item_status.py +253 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_assistant_knowledge_status.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_assistant_model_status.py +104 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_auto_join_domain_validation.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_auto_join_org_response.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_autoscaling_spec.py +305 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_autoscaling_target_metric.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_aws_direct_v1.py +133 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_batch_update_lightningwork_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_body.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_cancellation_metadata.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_capacity_block_offering.py +383 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_check_snowflake_connection_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_checkbox.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space.py +136 -6
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_code_version.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_instance_config.py +1 -53
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_instance_startup_status.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/{v1_cluster_log_service.py → v1_cloud_space_session.py} +49 -49
- lightning_sdk/lightning_cloud/openapi/models/v1_cloud_space_version.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_cluster_accelerator.py +445 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_cluster_capacity_reservation.py +55 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_cluster_names.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_cluster_proxy.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_cluster_resource_tag.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_cluster_security_options.py +357 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_cluster_spec.py +157 -107
- lightning_sdk/lightning_cloud/openapi/models/v1_cluster_state.py +1 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_cluster_status.py +17 -43
- lightning_sdk/lightning_cloud/openapi/models/v1_cluster_tagging_options.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_cluster_type.py +0 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_command_argument.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_complete_model_upload_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_complete_multi_part_upload_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_completed_part.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_conversation.py +15 -15
- lightning_sdk/lightning_cloud/openapi/models/v1_conversation_response_chunk.py +26 -26
- lightning_sdk/lightning_cloud/openapi/models/v1_count_metrics_streams_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_create_checkout_session_request.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_create_cluster_request.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_create_deployment_template_request.py +539 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_create_multi_part_upload_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_create_organization_request.py +159 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_create_project_request.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_create_shared_metrics_stream_request.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_create_shared_metrics_stream_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_create_snowflake_connection_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_create_user_secret_request.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_data_connection.py +365 -1
- lightning_sdk/lightning_cloud/openapi/models/{v1_cluster_performance_profile.py → v1_data_connection_state.py} +11 -9
- lightning_sdk/lightning_cloud/openapi/models/v1_data_path.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_delete_affiliate_link_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_delete_cloud_space_session_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_delete_cluster_proxy_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_delete_container_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_delete_deployment_release_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/{v1_azure_cluster_driver_status.py → v1_delete_deployment_response.py} +6 -6
- lightning_sdk/lightning_cloud/openapi/models/v1_delete_index_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/{v1_byom_cluster_driver.py → v1_delete_job_response.py} +6 -6
- lightning_sdk/lightning_cloud/openapi/models/{v1_delete_lightningapp_v2_response.py → v1_delete_logger_artifact_response.py} +6 -6
- lightning_sdk/lightning_cloud/openapi/models/v1_delete_managed_endpoint_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_delete_metrics_stream_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_delete_multi_machine_job_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_delete_profiler_capture_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/{v1_delete_lightningapp_release_response.py → v1_delete_shared_metrics_stream_response.py} +6 -6
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment.py +617 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_api.py +253 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_event.py +357 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_event_type.py +104 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_metrics.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_performance.py +305 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_release.py +331 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_spec.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/{get_cluster_health_response_health_status.py → v1_deployment_state.py} +11 -9
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_status.py +279 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_strategy.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_template.py +721 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_template_engagement_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_template_gallery_response.py +591 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_template_parameter.py +435 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_template_parameter_placement.py +106 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_template_parameter_type.py +106 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_template_summary.py +591 -0
- lightning_sdk/lightning_cloud/openapi/models/{instance_type_availability.py → v1_deployment_template_type.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/{v1_get_lightningapp_source_code_download_url_response.py → v1_download_job_logs_response.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/v1_download_service_execution_artifact_response.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_ebs.py +279 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_efs_config.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_endpoint.py +53 -27
- lightning_sdk/lightning_cloud/openapi/models/v1_endpoint_auth.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_endpoint_type.py +104 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_execute_cloud_space_command_response.py +29 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_execute_in_cloud_space_session_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_execute_snowflake_query_response.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_experiment.py +409 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_export_snowflake_query_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_file_endpoint.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/{v1_instance_spec.py → v1_filesystem_app.py} +85 -59
- lightning_sdk/lightning_cloud/openapi/models/v1_filesystem_cloud_space.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_filesystem_dataset.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_filesystem_job.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_filesystem_slurm_job.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_filesystem_snowflake_connection.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_filesystem_work.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_find_capacity_block_offering_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_gcp_data_connection.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_gcs_folder_data_connection.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_get_affiliate_link_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/{v1_list_cluster_instance_types_response.py → v1_get_deployment_routing_telemetry_aggregated_response.py} +23 -23
- lightning_sdk/lightning_cloud/openapi/models/v1_get_deployment_routing_telemetry_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_get_folder_index_response.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/{v1_cluster_driver_status.py → v1_get_job_stats_response.py} +39 -39
- lightning_sdk/lightning_cloud/openapi/models/v1_get_job_system_metrics_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_get_lightningapp_instance_open_ports_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_get_logger_metrics_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_get_model_file_upload_urls_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_get_model_file_url_response.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_get_model_files_response.py +279 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_get_model_files_url_response.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/{v1_lightningwork_cluster_driver.py → v1_get_project_artifact_response.py} +33 -14
- lightning_sdk/lightning_cloud/openapi/models/v1_get_project_balance_response.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_get_project_storage_metadata_response.py +383 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_get_service_execution_status_response.py +67 -15
- lightning_sdk/lightning_cloud/openapi/models/v1_get_snowflake_query_response.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_get_user_balance_response.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_get_user_response.py +105 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_get_user_storage_breakdown_response.py +279 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_get_user_storage_response.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_google_cloud_direct_v1.py +137 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_google_cloud_direct_v1_status.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_header.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/{v1_external_kubeconfig.py → v1_health_check_exec.py} +21 -21
- lightning_sdk/lightning_cloud/openapi/models/v1_health_check_http_get.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_ids_logger_metrics.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_input.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_interrupt_server_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_job.py +723 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_job_health_check_config.py +253 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_job_log_entry.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_job_logs_page.py +227 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_job_logs_response.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_job_spec.py +669 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_job_timing.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_joinable_organization.py +331 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_knowledge_configuration.py +279 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_lambda_labs_direct_v1.py +125 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_lightning_run.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_lightningapp_instance_spec.py +105 -27
- lightning_sdk/lightning_cloud/openapi/models/v1_lightningapp_instance_status.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_lightningwork_spec.py +27 -27
- lightning_sdk/lightning_cloud/openapi/models/v1_lightningwork_status.py +81 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_list_affiliate_links_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_cloud_space_python_versions_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_cloud_space_sessions_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_cloud_space_tags_response.py +6 -6
- lightning_sdk/lightning_cloud/openapi/models/v1_list_cluster_availabilities_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_cluster_proxies_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_deployment_events_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_deployment_releases_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_deployment_tags_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_deployment_templates_response.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_deployments_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_experiments_response.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_filesystem_apps_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_filesystem_cloud_spaces_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_filesystem_datasets_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_filesystem_jobs_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_filesystem_slurm_jobs_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_filesystem_snowflake_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/{v1_list_lightningapps_v2_response.py → v1_list_jobs_response.py} +31 -31
- lightning_sdk/lightning_cloud/openapi/models/v1_list_joinable_organizations_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_logger_artifact_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_metrics_streams_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_multi_machine_job_events_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_multi_machine_jobs_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_new_features_for_user_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_profiler_captures_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_project_locked_resources_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_published_cloud_spaces_response.py +3 -29
- lightning_sdk/lightning_cloud/openapi/models/v1_list_published_deployment_templates_response.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_list_service_execution_lightningapp_instances_response.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_lit_page.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_lit_registry_project.py +227 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_lit_repository.py +279 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_locked_resource.py +227 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_logger_artifact.py +227 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_machines_selector.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_magic_link_login_request.py +81 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_magic_link_login_response.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_managed_endpoint.py +175 -19
- lightning_sdk/lightning_cloud/openapi/models/v1_managed_model.py +305 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_managed_model_abilities.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_membership.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_message.py +138 -8
- lightning_sdk/lightning_cloud/openapi/models/v1_message_content.py +6 -6
- lightning_sdk/lightning_cloud/openapi/models/v1_message_content_type.py +103 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_metadata.py +131 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_metric_value.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_metrics.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_metrics_stream.py +799 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_metrics_tags.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_metrics_tracker.py +383 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_model.py +95 -17
- lightning_sdk/lightning_cloud/openapi/models/v1_model_file.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_model_version_archive.py +131 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_mount_target.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_multi_machine_job.py +487 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_multi_machine_job_event.py +331 -0
- lightning_sdk/lightning_cloud/openapi/models/{v1_lightningapp_cluster_driver.py → v1_multi_machine_job_event_type.py} +9 -9
- lightning_sdk/lightning_cloud/openapi/models/v1_multi_machine_job_fault_tolerance.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_multi_machine_job_fault_tolerance_strategy.py +105 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_multi_machine_job_state.py +108 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_multi_machine_job_status.py +305 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_named_get_logger_metrics.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_new_feature.py +383 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_onboarding_event_request.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_onboarding_event_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_organization.py +209 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_parameterization_spec.py +227 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_path_telemetry.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_phase_type.py +104 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_profiler_capture.py +357 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_profiler_enabled_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_project.py +131 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_project_membership.py +263 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_project_settings.py +29 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_project_storage.py +279 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_published_cloud_space_response.py +188 -6
- lightning_sdk/lightning_cloud/openapi/models/v1_purchase_capacity_block_response.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_query_param.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_query_result.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_query_result_row.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_refresh_path_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_regional_load_balancer.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_report_logs_activity_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_request_cluster_access_request.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_request_cluster_access_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/{v1_cloud_space_tag.py → v1_resource_tag.py} +18 -18
- lightning_sdk/lightning_cloud/openapi/models/{appsv2_id_body.py → v1_resource_visibility.py} +37 -37
- lightning_sdk/lightning_cloud/openapi/models/v1_resources.py +37 -11
- lightning_sdk/lightning_cloud/openapi/models/v1_restore_deployment_release_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_rolling_update_strategy.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_rule_condition.py +29 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_rule_resource.py +11 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_s3_folder_data_connection.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_search_job_logs_response.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_secret.py +107 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_secret_type.py +105 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_select.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_server_check_in_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_service_artifact.py +201 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_service_execution.py +43 -43
- lightning_sdk/lightning_cloud/openapi/models/v1_should_start_syncing_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_signed_url.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_slurm_job.py +131 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_slurm_node.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_slurm_v1.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_snowflake_data_connection.py +253 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_status_code_telemetry.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_storage_asset.py +253 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_storage_asset_type.py +105 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_studio_job_app.py +1 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_system_info.py +617 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_telemetry.py +331 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_timestamp_code_telemetry.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_transaction.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_transfer_user_balance_request.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_update_billing_subscription_request.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_update_cluster_accelerators_request.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_update_index_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_update_metrics_stream_visibility_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_update_model_visibility_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_update_shared_metrics_stream_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_update_snowflake_query_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_update_user_request.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_update_user_viewed_new_features_request.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_update_user_viewed_new_features_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_upstream_cloud_space.py +97 -19
- lightning_sdk/lightning_cloud/openapi/models/v1_upstream_job.py +227 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_usage.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_usage_details.py +107 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_user_features.py +1032 -330
- lightning_sdk/lightning_cloud/openapi/models/v1_user_requested_compute_config.py +45 -45
- lightning_sdk/lightning_cloud/openapi/models/v1_user_requested_flow_compute_config.py +29 -29
- lightning_sdk/lightning_cloud/openapi/models/v1_validate_assistant_status_response.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_validate_auto_join_domain_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_validate_data_connection_response.py +107 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_validate_deployment_image_request.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_validate_deployment_image_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_validate_managed_endpoint_request.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_validate_managed_endpoint_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_validate_managed_model_response.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_volume.py +175 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_vultr_direct_v1.py +125 -0
- lightning_sdk/lightning_cloud/openapi/models/validate.py +97 -19
- lightning_sdk/lightning_cloud/openapi/models/validateautojoindomain_domain_body.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/version_uploads_body.py +123 -0
- lightning_sdk/lightning_cloud/rest_client.py +47 -23
- lightning_sdk/lightning_cloud/source_code/logs_socket_api.py +1 -1
- lightning_sdk/lightning_cloud/source_code/tar.py +1 -3
- lightning_sdk/lightning_cloud/utils/data_connection.py +144 -7
- lightning_sdk/lit_registry.py +39 -0
- lightning_sdk/machine.py +21 -4
- lightning_sdk/mmt/__init__.py +4 -0
- lightning_sdk/mmt/base.py +326 -0
- lightning_sdk/mmt/mmt.py +306 -0
- lightning_sdk/mmt/v1.py +209 -0
- lightning_sdk/mmt/v2.py +221 -0
- lightning_sdk/models.py +153 -0
- lightning_sdk/organization.py +1 -1
- lightning_sdk/plugin.py +207 -41
- lightning_sdk/services/__init__.py +2 -1
- lightning_sdk/services/file_endpoint.py +116 -213
- lightning_sdk/services/finetune/__init__.py +13 -15
- lightning_sdk/services/utilities.py +99 -26
- lightning_sdk/status.py +11 -6
- lightning_sdk/studio.py +90 -17
- lightning_sdk/teamspace.py +240 -12
- lightning_sdk/user.py +1 -1
- lightning_sdk/utils/__init__.py +0 -0
- lightning_sdk/utils/dynamic.py +61 -0
- lightning_sdk/utils/enum.py +116 -0
- lightning_sdk/{utils.py → utils/resolve.py} +41 -4
- lightning_sdk-0.1.47.dist-info/LICENSE +21 -0
- {lightning_sdk-0.1.3.dist-info → lightning_sdk-0.1.47.dist-info}/METADATA +30 -4
- {lightning_sdk-0.1.3.dist-info → lightning_sdk-0.1.47.dist-info}/RECORD +487 -204
- {lightning_sdk-0.1.3.dist-info → lightning_sdk-0.1.47.dist-info}/WHEEL +1 -1
- lightning_sdk/lightning_cloud/openapi/models/app_id_releases_body.py +0 -541
- lightning_sdk/lightning_cloud/openapi/models/id_endpoint_body.py +0 -409
- lightning_sdk/lightning_cloud/openapi/models/id_get_body1.py +0 -333
- lightning_sdk/lightning_cloud/openapi/models/project_id_appsv2_body.py +0 -201
- lightning_sdk/lightning_cloud/openapi/models/v1_aws_cluster_driver_spec.py +0 -1039
- lightning_sdk/lightning_cloud/openapi/models/v1_aws_cluster_secondary_region_spec.py +0 -253
- lightning_sdk/lightning_cloud/openapi/models/v1_azure_cluster_driver_spec.py +0 -227
- lightning_sdk/lightning_cloud/openapi/models/v1_cluster_driver.py +0 -175
- lightning_sdk/lightning_cloud/openapi/models/v1_container_resources.py +0 -201
- lightning_sdk/lightning_cloud/openapi/models/v1_eks_custer_driver_status.py +0 -387
- lightning_sdk/lightning_cloud/openapi/models/v1_instance_type.py +0 -305
- lightning_sdk/lightning_cloud/openapi/models/v1_kubernetes_cluster_driver.py +0 -359
- lightning_sdk/lightning_cloud/openapi/models/v1_kubernetes_cluster_status.py +0 -279
- lightning_sdk/lightning_cloud/openapi/models/v1_lightningapp_release.py +0 -697
- lightning_sdk/lightning_cloud/openapi/models/v1_lightningapp_v2.py +0 -331
- lightning_sdk/services/uploader.py +0 -123
- {lightning_sdk-0.1.3.dist-info → lightning_sdk-0.1.47.dist-info}/entry_points.txt +0 -0
- {lightning_sdk-0.1.3.dist-info → lightning_sdk-0.1.47.dist-info}/top_level.txt +0 -0
|
@@ -1,1039 +0,0 @@
|
|
|
1
|
-
# coding: utf-8
|
|
2
|
-
|
|
3
|
-
"""
|
|
4
|
-
external/v1/auth_service.proto
|
|
5
|
-
|
|
6
|
-
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
|
|
7
|
-
|
|
8
|
-
OpenAPI spec version: version not set
|
|
9
|
-
|
|
10
|
-
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
11
|
-
|
|
12
|
-
NOTE
|
|
13
|
-
----
|
|
14
|
-
standard swagger-codegen-cli for this python client has been modified
|
|
15
|
-
by custom templates. The purpose of these templates is to include
|
|
16
|
-
typing information in the API and Model code. Please refer to the
|
|
17
|
-
main grid repository for more info
|
|
18
|
-
"""
|
|
19
|
-
|
|
20
|
-
import pprint
|
|
21
|
-
import re # noqa: F401
|
|
22
|
-
|
|
23
|
-
from typing import TYPE_CHECKING
|
|
24
|
-
|
|
25
|
-
import six
|
|
26
|
-
|
|
27
|
-
if TYPE_CHECKING:
|
|
28
|
-
from datetime import datetime
|
|
29
|
-
from lightning_sdk.lightning_cloud.openapi.models import *
|
|
30
|
-
|
|
31
|
-
class V1AWSClusterDriverSpec(object):
|
|
32
|
-
"""NOTE: This class is auto generated by the swagger code generator program.
|
|
33
|
-
|
|
34
|
-
Do not edit the class manually.
|
|
35
|
-
"""
|
|
36
|
-
"""
|
|
37
|
-
Attributes:
|
|
38
|
-
swagger_types (dict): The key is attribute name
|
|
39
|
-
and the value is attribute type.
|
|
40
|
-
attribute_map (dict): The key is attribute name
|
|
41
|
-
and the value is json key in definition.
|
|
42
|
-
"""
|
|
43
|
-
swagger_types = {
|
|
44
|
-
'abort_incomplete_datastore_num_days': 'int',
|
|
45
|
-
'az_skip_ids': 'list[str]',
|
|
46
|
-
'bastion_ami_override': 'str',
|
|
47
|
-
'bucket_name': 'str',
|
|
48
|
-
'builder_ami_name_override': 'str',
|
|
49
|
-
'builder_ami_override': 'str',
|
|
50
|
-
'builder_node_instance_type': 'str',
|
|
51
|
-
'cluster_coredns_version': 'str',
|
|
52
|
-
'cluster_kubeproxy_version': 'str',
|
|
53
|
-
'cluster_vpc_cni_version': 'str',
|
|
54
|
-
'cpu_ami_override': 'str',
|
|
55
|
-
'datastore_transition_to_intelligent_tiering_num_days': 'int',
|
|
56
|
-
'default_lightning_flow_compute_config': 'V1ComputeConfig',
|
|
57
|
-
'default_lightning_work_compute_config': 'V1ComputeConfig',
|
|
58
|
-
'disable_automatic_ami_updates': 'bool',
|
|
59
|
-
'ec2_cpu_ami': 'str',
|
|
60
|
-
'ec2_cpu_ami_cloud_space': 'str',
|
|
61
|
-
'ec2_gpu_ami': 'str',
|
|
62
|
-
'ec2_gpu_ami_cloud_space': 'str',
|
|
63
|
-
'enable_datastore_transition_to_intelligent_tiering': 'bool',
|
|
64
|
-
'enable_dns_firewall': 'bool',
|
|
65
|
-
'enable_experiment_transition_to_intelligent_tiering': 'bool',
|
|
66
|
-
'experiment_transition_to_intelligent_tiering_num_days': 'int',
|
|
67
|
-
'external_id': 'str',
|
|
68
|
-
'gpu_ami_override': 'str',
|
|
69
|
-
'guardduty_integration': 'bool',
|
|
70
|
-
'instance_types': 'list[V1InstanceSpec]',
|
|
71
|
-
'internal_gc_ttl': 'str',
|
|
72
|
-
'internal_test_cluster': 'bool',
|
|
73
|
-
'kubernetes_version': 'str',
|
|
74
|
-
'loki_bucket_name': 'str',
|
|
75
|
-
'management_node_instance_type': 'str',
|
|
76
|
-
'original_cluster_name': 'str',
|
|
77
|
-
'region': 'str',
|
|
78
|
-
'role_arn': 'str',
|
|
79
|
-
'secondary_regions': 'list[V1AWSClusterSecondaryRegionSpec]'
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
attribute_map = {
|
|
83
|
-
'abort_incomplete_datastore_num_days': 'abortIncompleteDatastoreNumDays',
|
|
84
|
-
'az_skip_ids': 'azSkipIds',
|
|
85
|
-
'bastion_ami_override': 'bastionAmiOverride',
|
|
86
|
-
'bucket_name': 'bucketName',
|
|
87
|
-
'builder_ami_name_override': 'builderAmiNameOverride',
|
|
88
|
-
'builder_ami_override': 'builderAmiOverride',
|
|
89
|
-
'builder_node_instance_type': 'builderNodeInstanceType',
|
|
90
|
-
'cluster_coredns_version': 'clusterCorednsVersion',
|
|
91
|
-
'cluster_kubeproxy_version': 'clusterKubeproxyVersion',
|
|
92
|
-
'cluster_vpc_cni_version': 'clusterVpcCniVersion',
|
|
93
|
-
'cpu_ami_override': 'cpuAmiOverride',
|
|
94
|
-
'datastore_transition_to_intelligent_tiering_num_days': 'datastoreTransitionToIntelligentTieringNumDays',
|
|
95
|
-
'default_lightning_flow_compute_config': 'defaultLightningFlowComputeConfig',
|
|
96
|
-
'default_lightning_work_compute_config': 'defaultLightningWorkComputeConfig',
|
|
97
|
-
'disable_automatic_ami_updates': 'disableAutomaticAmiUpdates',
|
|
98
|
-
'ec2_cpu_ami': 'ec2CpuAmi',
|
|
99
|
-
'ec2_cpu_ami_cloud_space': 'ec2CpuAmiCloudSpace',
|
|
100
|
-
'ec2_gpu_ami': 'ec2GpuAmi',
|
|
101
|
-
'ec2_gpu_ami_cloud_space': 'ec2GpuAmiCloudSpace',
|
|
102
|
-
'enable_datastore_transition_to_intelligent_tiering': 'enableDatastoreTransitionToIntelligentTiering',
|
|
103
|
-
'enable_dns_firewall': 'enableDnsFirewall',
|
|
104
|
-
'enable_experiment_transition_to_intelligent_tiering': 'enableExperimentTransitionToIntelligentTiering',
|
|
105
|
-
'experiment_transition_to_intelligent_tiering_num_days': 'experimentTransitionToIntelligentTieringNumDays',
|
|
106
|
-
'external_id': 'externalId',
|
|
107
|
-
'gpu_ami_override': 'gpuAmiOverride',
|
|
108
|
-
'guardduty_integration': 'guarddutyIntegration',
|
|
109
|
-
'instance_types': 'instanceTypes',
|
|
110
|
-
'internal_gc_ttl': 'internalGcTtl',
|
|
111
|
-
'internal_test_cluster': 'internalTestCluster',
|
|
112
|
-
'kubernetes_version': 'kubernetesVersion',
|
|
113
|
-
'loki_bucket_name': 'lokiBucketName',
|
|
114
|
-
'management_node_instance_type': 'managementNodeInstanceType',
|
|
115
|
-
'original_cluster_name': 'originalClusterName',
|
|
116
|
-
'region': 'region',
|
|
117
|
-
'role_arn': 'roleArn',
|
|
118
|
-
'secondary_regions': 'secondaryRegions'
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
def __init__(self, abort_incomplete_datastore_num_days: 'int' =None, az_skip_ids: 'list[str]' =None, bastion_ami_override: 'str' =None, bucket_name: 'str' =None, builder_ami_name_override: 'str' =None, builder_ami_override: 'str' =None, builder_node_instance_type: 'str' =None, cluster_coredns_version: 'str' =None, cluster_kubeproxy_version: 'str' =None, cluster_vpc_cni_version: 'str' =None, cpu_ami_override: 'str' =None, datastore_transition_to_intelligent_tiering_num_days: 'int' =None, default_lightning_flow_compute_config: 'V1ComputeConfig' =None, default_lightning_work_compute_config: 'V1ComputeConfig' =None, disable_automatic_ami_updates: 'bool' =None, ec2_cpu_ami: 'str' =None, ec2_cpu_ami_cloud_space: 'str' =None, ec2_gpu_ami: 'str' =None, ec2_gpu_ami_cloud_space: 'str' =None, enable_datastore_transition_to_intelligent_tiering: 'bool' =None, enable_dns_firewall: 'bool' =None, enable_experiment_transition_to_intelligent_tiering: 'bool' =None, experiment_transition_to_intelligent_tiering_num_days: 'int' =None, external_id: 'str' =None, gpu_ami_override: 'str' =None, guardduty_integration: 'bool' =None, instance_types: 'list[V1InstanceSpec]' =None, internal_gc_ttl: 'str' =None, internal_test_cluster: 'bool' =None, kubernetes_version: 'str' =None, loki_bucket_name: 'str' =None, management_node_instance_type: 'str' =None, original_cluster_name: 'str' =None, region: 'str' =None, role_arn: 'str' =None, secondary_regions: 'list[V1AWSClusterSecondaryRegionSpec]' =None): # noqa: E501
|
|
122
|
-
"""V1AWSClusterDriverSpec - a model defined in Swagger""" # noqa: E501
|
|
123
|
-
self._abort_incomplete_datastore_num_days = None
|
|
124
|
-
self._az_skip_ids = None
|
|
125
|
-
self._bastion_ami_override = None
|
|
126
|
-
self._bucket_name = None
|
|
127
|
-
self._builder_ami_name_override = None
|
|
128
|
-
self._builder_ami_override = None
|
|
129
|
-
self._builder_node_instance_type = None
|
|
130
|
-
self._cluster_coredns_version = None
|
|
131
|
-
self._cluster_kubeproxy_version = None
|
|
132
|
-
self._cluster_vpc_cni_version = None
|
|
133
|
-
self._cpu_ami_override = None
|
|
134
|
-
self._datastore_transition_to_intelligent_tiering_num_days = None
|
|
135
|
-
self._default_lightning_flow_compute_config = None
|
|
136
|
-
self._default_lightning_work_compute_config = None
|
|
137
|
-
self._disable_automatic_ami_updates = None
|
|
138
|
-
self._ec2_cpu_ami = None
|
|
139
|
-
self._ec2_cpu_ami_cloud_space = None
|
|
140
|
-
self._ec2_gpu_ami = None
|
|
141
|
-
self._ec2_gpu_ami_cloud_space = None
|
|
142
|
-
self._enable_datastore_transition_to_intelligent_tiering = None
|
|
143
|
-
self._enable_dns_firewall = None
|
|
144
|
-
self._enable_experiment_transition_to_intelligent_tiering = None
|
|
145
|
-
self._experiment_transition_to_intelligent_tiering_num_days = None
|
|
146
|
-
self._external_id = None
|
|
147
|
-
self._gpu_ami_override = None
|
|
148
|
-
self._guardduty_integration = None
|
|
149
|
-
self._instance_types = None
|
|
150
|
-
self._internal_gc_ttl = None
|
|
151
|
-
self._internal_test_cluster = None
|
|
152
|
-
self._kubernetes_version = None
|
|
153
|
-
self._loki_bucket_name = None
|
|
154
|
-
self._management_node_instance_type = None
|
|
155
|
-
self._original_cluster_name = None
|
|
156
|
-
self._region = None
|
|
157
|
-
self._role_arn = None
|
|
158
|
-
self._secondary_regions = None
|
|
159
|
-
self.discriminator = None
|
|
160
|
-
if abort_incomplete_datastore_num_days is not None:
|
|
161
|
-
self.abort_incomplete_datastore_num_days = abort_incomplete_datastore_num_days
|
|
162
|
-
if az_skip_ids is not None:
|
|
163
|
-
self.az_skip_ids = az_skip_ids
|
|
164
|
-
if bastion_ami_override is not None:
|
|
165
|
-
self.bastion_ami_override = bastion_ami_override
|
|
166
|
-
if bucket_name is not None:
|
|
167
|
-
self.bucket_name = bucket_name
|
|
168
|
-
if builder_ami_name_override is not None:
|
|
169
|
-
self.builder_ami_name_override = builder_ami_name_override
|
|
170
|
-
if builder_ami_override is not None:
|
|
171
|
-
self.builder_ami_override = builder_ami_override
|
|
172
|
-
if builder_node_instance_type is not None:
|
|
173
|
-
self.builder_node_instance_type = builder_node_instance_type
|
|
174
|
-
if cluster_coredns_version is not None:
|
|
175
|
-
self.cluster_coredns_version = cluster_coredns_version
|
|
176
|
-
if cluster_kubeproxy_version is not None:
|
|
177
|
-
self.cluster_kubeproxy_version = cluster_kubeproxy_version
|
|
178
|
-
if cluster_vpc_cni_version is not None:
|
|
179
|
-
self.cluster_vpc_cni_version = cluster_vpc_cni_version
|
|
180
|
-
if cpu_ami_override is not None:
|
|
181
|
-
self.cpu_ami_override = cpu_ami_override
|
|
182
|
-
if datastore_transition_to_intelligent_tiering_num_days is not None:
|
|
183
|
-
self.datastore_transition_to_intelligent_tiering_num_days = datastore_transition_to_intelligent_tiering_num_days
|
|
184
|
-
if default_lightning_flow_compute_config is not None:
|
|
185
|
-
self.default_lightning_flow_compute_config = default_lightning_flow_compute_config
|
|
186
|
-
if default_lightning_work_compute_config is not None:
|
|
187
|
-
self.default_lightning_work_compute_config = default_lightning_work_compute_config
|
|
188
|
-
if disable_automatic_ami_updates is not None:
|
|
189
|
-
self.disable_automatic_ami_updates = disable_automatic_ami_updates
|
|
190
|
-
if ec2_cpu_ami is not None:
|
|
191
|
-
self.ec2_cpu_ami = ec2_cpu_ami
|
|
192
|
-
if ec2_cpu_ami_cloud_space is not None:
|
|
193
|
-
self.ec2_cpu_ami_cloud_space = ec2_cpu_ami_cloud_space
|
|
194
|
-
if ec2_gpu_ami is not None:
|
|
195
|
-
self.ec2_gpu_ami = ec2_gpu_ami
|
|
196
|
-
if ec2_gpu_ami_cloud_space is not None:
|
|
197
|
-
self.ec2_gpu_ami_cloud_space = ec2_gpu_ami_cloud_space
|
|
198
|
-
if enable_datastore_transition_to_intelligent_tiering is not None:
|
|
199
|
-
self.enable_datastore_transition_to_intelligent_tiering = enable_datastore_transition_to_intelligent_tiering
|
|
200
|
-
if enable_dns_firewall is not None:
|
|
201
|
-
self.enable_dns_firewall = enable_dns_firewall
|
|
202
|
-
if enable_experiment_transition_to_intelligent_tiering is not None:
|
|
203
|
-
self.enable_experiment_transition_to_intelligent_tiering = enable_experiment_transition_to_intelligent_tiering
|
|
204
|
-
if experiment_transition_to_intelligent_tiering_num_days is not None:
|
|
205
|
-
self.experiment_transition_to_intelligent_tiering_num_days = experiment_transition_to_intelligent_tiering_num_days
|
|
206
|
-
if external_id is not None:
|
|
207
|
-
self.external_id = external_id
|
|
208
|
-
if gpu_ami_override is not None:
|
|
209
|
-
self.gpu_ami_override = gpu_ami_override
|
|
210
|
-
if guardduty_integration is not None:
|
|
211
|
-
self.guardduty_integration = guardduty_integration
|
|
212
|
-
if instance_types is not None:
|
|
213
|
-
self.instance_types = instance_types
|
|
214
|
-
if internal_gc_ttl is not None:
|
|
215
|
-
self.internal_gc_ttl = internal_gc_ttl
|
|
216
|
-
if internal_test_cluster is not None:
|
|
217
|
-
self.internal_test_cluster = internal_test_cluster
|
|
218
|
-
if kubernetes_version is not None:
|
|
219
|
-
self.kubernetes_version = kubernetes_version
|
|
220
|
-
if loki_bucket_name is not None:
|
|
221
|
-
self.loki_bucket_name = loki_bucket_name
|
|
222
|
-
if management_node_instance_type is not None:
|
|
223
|
-
self.management_node_instance_type = management_node_instance_type
|
|
224
|
-
if original_cluster_name is not None:
|
|
225
|
-
self.original_cluster_name = original_cluster_name
|
|
226
|
-
if region is not None:
|
|
227
|
-
self.region = region
|
|
228
|
-
if role_arn is not None:
|
|
229
|
-
self.role_arn = role_arn
|
|
230
|
-
if secondary_regions is not None:
|
|
231
|
-
self.secondary_regions = secondary_regions
|
|
232
|
-
|
|
233
|
-
@property
|
|
234
|
-
def abort_incomplete_datastore_num_days(self) -> 'int':
|
|
235
|
-
"""Gets the abort_incomplete_datastore_num_days of this V1AWSClusterDriverSpec. # noqa: E501
|
|
236
|
-
|
|
237
|
-
how many days after initiating a datastore upload should the datastore be marked as failed and all data deleted if the \"upload\" is not complete. The value for tf abort_incomplete_datastore_mpu_days is derived from this value (this value + 1). Must be value >= 1 or a default value will be silently updated in place. # noqa: E501
|
|
238
|
-
|
|
239
|
-
:return: The abort_incomplete_datastore_num_days of this V1AWSClusterDriverSpec. # noqa: E501
|
|
240
|
-
:rtype: int
|
|
241
|
-
"""
|
|
242
|
-
return self._abort_incomplete_datastore_num_days
|
|
243
|
-
|
|
244
|
-
@abort_incomplete_datastore_num_days.setter
|
|
245
|
-
def abort_incomplete_datastore_num_days(self, abort_incomplete_datastore_num_days: 'int'):
|
|
246
|
-
"""Sets the abort_incomplete_datastore_num_days of this V1AWSClusterDriverSpec.
|
|
247
|
-
|
|
248
|
-
how many days after initiating a datastore upload should the datastore be marked as failed and all data deleted if the \"upload\" is not complete. The value for tf abort_incomplete_datastore_mpu_days is derived from this value (this value + 1). Must be value >= 1 or a default value will be silently updated in place. # noqa: E501
|
|
249
|
-
|
|
250
|
-
:param abort_incomplete_datastore_num_days: The abort_incomplete_datastore_num_days of this V1AWSClusterDriverSpec. # noqa: E501
|
|
251
|
-
:type: int
|
|
252
|
-
"""
|
|
253
|
-
|
|
254
|
-
self._abort_incomplete_datastore_num_days = abort_incomplete_datastore_num_days
|
|
255
|
-
|
|
256
|
-
@property
|
|
257
|
-
def az_skip_ids(self) -> 'list[str]':
|
|
258
|
-
"""Gets the az_skip_ids of this V1AWSClusterDriverSpec. # noqa: E501
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
:return: The az_skip_ids of this V1AWSClusterDriverSpec. # noqa: E501
|
|
262
|
-
:rtype: list[str]
|
|
263
|
-
"""
|
|
264
|
-
return self._az_skip_ids
|
|
265
|
-
|
|
266
|
-
@az_skip_ids.setter
|
|
267
|
-
def az_skip_ids(self, az_skip_ids: 'list[str]'):
|
|
268
|
-
"""Sets the az_skip_ids of this V1AWSClusterDriverSpec.
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
:param az_skip_ids: The az_skip_ids of this V1AWSClusterDriverSpec. # noqa: E501
|
|
272
|
-
:type: list[str]
|
|
273
|
-
"""
|
|
274
|
-
|
|
275
|
-
self._az_skip_ids = az_skip_ids
|
|
276
|
-
|
|
277
|
-
@property
|
|
278
|
-
def bastion_ami_override(self) -> 'str':
|
|
279
|
-
"""Gets the bastion_ami_override of this V1AWSClusterDriverSpec. # noqa: E501
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
:return: The bastion_ami_override of this V1AWSClusterDriverSpec. # noqa: E501
|
|
283
|
-
:rtype: str
|
|
284
|
-
"""
|
|
285
|
-
return self._bastion_ami_override
|
|
286
|
-
|
|
287
|
-
@bastion_ami_override.setter
|
|
288
|
-
def bastion_ami_override(self, bastion_ami_override: 'str'):
|
|
289
|
-
"""Sets the bastion_ami_override of this V1AWSClusterDriverSpec.
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
:param bastion_ami_override: The bastion_ami_override of this V1AWSClusterDriverSpec. # noqa: E501
|
|
293
|
-
:type: str
|
|
294
|
-
"""
|
|
295
|
-
|
|
296
|
-
self._bastion_ami_override = bastion_ami_override
|
|
297
|
-
|
|
298
|
-
@property
|
|
299
|
-
def bucket_name(self) -> 'str':
|
|
300
|
-
"""Gets the bucket_name of this V1AWSClusterDriverSpec. # noqa: E501
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
:return: The bucket_name of this V1AWSClusterDriverSpec. # noqa: E501
|
|
304
|
-
:rtype: str
|
|
305
|
-
"""
|
|
306
|
-
return self._bucket_name
|
|
307
|
-
|
|
308
|
-
@bucket_name.setter
|
|
309
|
-
def bucket_name(self, bucket_name: 'str'):
|
|
310
|
-
"""Sets the bucket_name of this V1AWSClusterDriverSpec.
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
:param bucket_name: The bucket_name of this V1AWSClusterDriverSpec. # noqa: E501
|
|
314
|
-
:type: str
|
|
315
|
-
"""
|
|
316
|
-
|
|
317
|
-
self._bucket_name = bucket_name
|
|
318
|
-
|
|
319
|
-
@property
|
|
320
|
-
def builder_ami_name_override(self) -> 'str':
|
|
321
|
-
"""Gets the builder_ami_name_override of this V1AWSClusterDriverSpec. # noqa: E501
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
:return: The builder_ami_name_override of this V1AWSClusterDriverSpec. # noqa: E501
|
|
325
|
-
:rtype: str
|
|
326
|
-
"""
|
|
327
|
-
return self._builder_ami_name_override
|
|
328
|
-
|
|
329
|
-
@builder_ami_name_override.setter
|
|
330
|
-
def builder_ami_name_override(self, builder_ami_name_override: 'str'):
|
|
331
|
-
"""Sets the builder_ami_name_override of this V1AWSClusterDriverSpec.
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
:param builder_ami_name_override: The builder_ami_name_override of this V1AWSClusterDriverSpec. # noqa: E501
|
|
335
|
-
:type: str
|
|
336
|
-
"""
|
|
337
|
-
|
|
338
|
-
self._builder_ami_name_override = builder_ami_name_override
|
|
339
|
-
|
|
340
|
-
@property
|
|
341
|
-
def builder_ami_override(self) -> 'str':
|
|
342
|
-
"""Gets the builder_ami_override of this V1AWSClusterDriverSpec. # noqa: E501
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
:return: The builder_ami_override of this V1AWSClusterDriverSpec. # noqa: E501
|
|
346
|
-
:rtype: str
|
|
347
|
-
"""
|
|
348
|
-
return self._builder_ami_override
|
|
349
|
-
|
|
350
|
-
@builder_ami_override.setter
|
|
351
|
-
def builder_ami_override(self, builder_ami_override: 'str'):
|
|
352
|
-
"""Sets the builder_ami_override of this V1AWSClusterDriverSpec.
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
:param builder_ami_override: The builder_ami_override of this V1AWSClusterDriverSpec. # noqa: E501
|
|
356
|
-
:type: str
|
|
357
|
-
"""
|
|
358
|
-
|
|
359
|
-
self._builder_ami_override = builder_ami_override
|
|
360
|
-
|
|
361
|
-
@property
|
|
362
|
-
def builder_node_instance_type(self) -> 'str':
|
|
363
|
-
"""Gets the builder_node_instance_type of this V1AWSClusterDriverSpec. # noqa: E501
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
:return: The builder_node_instance_type of this V1AWSClusterDriverSpec. # noqa: E501
|
|
367
|
-
:rtype: str
|
|
368
|
-
"""
|
|
369
|
-
return self._builder_node_instance_type
|
|
370
|
-
|
|
371
|
-
@builder_node_instance_type.setter
|
|
372
|
-
def builder_node_instance_type(self, builder_node_instance_type: 'str'):
|
|
373
|
-
"""Sets the builder_node_instance_type of this V1AWSClusterDriverSpec.
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
:param builder_node_instance_type: The builder_node_instance_type of this V1AWSClusterDriverSpec. # noqa: E501
|
|
377
|
-
:type: str
|
|
378
|
-
"""
|
|
379
|
-
|
|
380
|
-
self._builder_node_instance_type = builder_node_instance_type
|
|
381
|
-
|
|
382
|
-
@property
|
|
383
|
-
def cluster_coredns_version(self) -> 'str':
|
|
384
|
-
"""Gets the cluster_coredns_version of this V1AWSClusterDriverSpec. # noqa: E501
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
:return: The cluster_coredns_version of this V1AWSClusterDriverSpec. # noqa: E501
|
|
388
|
-
:rtype: str
|
|
389
|
-
"""
|
|
390
|
-
return self._cluster_coredns_version
|
|
391
|
-
|
|
392
|
-
@cluster_coredns_version.setter
|
|
393
|
-
def cluster_coredns_version(self, cluster_coredns_version: 'str'):
|
|
394
|
-
"""Sets the cluster_coredns_version of this V1AWSClusterDriverSpec.
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
:param cluster_coredns_version: The cluster_coredns_version of this V1AWSClusterDriverSpec. # noqa: E501
|
|
398
|
-
:type: str
|
|
399
|
-
"""
|
|
400
|
-
|
|
401
|
-
self._cluster_coredns_version = cluster_coredns_version
|
|
402
|
-
|
|
403
|
-
@property
|
|
404
|
-
def cluster_kubeproxy_version(self) -> 'str':
|
|
405
|
-
"""Gets the cluster_kubeproxy_version of this V1AWSClusterDriverSpec. # noqa: E501
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
:return: The cluster_kubeproxy_version of this V1AWSClusterDriverSpec. # noqa: E501
|
|
409
|
-
:rtype: str
|
|
410
|
-
"""
|
|
411
|
-
return self._cluster_kubeproxy_version
|
|
412
|
-
|
|
413
|
-
@cluster_kubeproxy_version.setter
|
|
414
|
-
def cluster_kubeproxy_version(self, cluster_kubeproxy_version: 'str'):
|
|
415
|
-
"""Sets the cluster_kubeproxy_version of this V1AWSClusterDriverSpec.
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
:param cluster_kubeproxy_version: The cluster_kubeproxy_version of this V1AWSClusterDriverSpec. # noqa: E501
|
|
419
|
-
:type: str
|
|
420
|
-
"""
|
|
421
|
-
|
|
422
|
-
self._cluster_kubeproxy_version = cluster_kubeproxy_version
|
|
423
|
-
|
|
424
|
-
@property
|
|
425
|
-
def cluster_vpc_cni_version(self) -> 'str':
|
|
426
|
-
"""Gets the cluster_vpc_cni_version of this V1AWSClusterDriverSpec. # noqa: E501
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
:return: The cluster_vpc_cni_version of this V1AWSClusterDriverSpec. # noqa: E501
|
|
430
|
-
:rtype: str
|
|
431
|
-
"""
|
|
432
|
-
return self._cluster_vpc_cni_version
|
|
433
|
-
|
|
434
|
-
@cluster_vpc_cni_version.setter
|
|
435
|
-
def cluster_vpc_cni_version(self, cluster_vpc_cni_version: 'str'):
|
|
436
|
-
"""Sets the cluster_vpc_cni_version of this V1AWSClusterDriverSpec.
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
:param cluster_vpc_cni_version: The cluster_vpc_cni_version of this V1AWSClusterDriverSpec. # noqa: E501
|
|
440
|
-
:type: str
|
|
441
|
-
"""
|
|
442
|
-
|
|
443
|
-
self._cluster_vpc_cni_version = cluster_vpc_cni_version
|
|
444
|
-
|
|
445
|
-
@property
|
|
446
|
-
def cpu_ami_override(self) -> 'str':
|
|
447
|
-
"""Gets the cpu_ami_override of this V1AWSClusterDriverSpec. # noqa: E501
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
:return: The cpu_ami_override of this V1AWSClusterDriverSpec. # noqa: E501
|
|
451
|
-
:rtype: str
|
|
452
|
-
"""
|
|
453
|
-
return self._cpu_ami_override
|
|
454
|
-
|
|
455
|
-
@cpu_ami_override.setter
|
|
456
|
-
def cpu_ami_override(self, cpu_ami_override: 'str'):
|
|
457
|
-
"""Sets the cpu_ami_override of this V1AWSClusterDriverSpec.
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
:param cpu_ami_override: The cpu_ami_override of this V1AWSClusterDriverSpec. # noqa: E501
|
|
461
|
-
:type: str
|
|
462
|
-
"""
|
|
463
|
-
|
|
464
|
-
self._cpu_ami_override = cpu_ami_override
|
|
465
|
-
|
|
466
|
-
@property
|
|
467
|
-
def datastore_transition_to_intelligent_tiering_num_days(self) -> 'int':
|
|
468
|
-
"""Gets the datastore_transition_to_intelligent_tiering_num_days of this V1AWSClusterDriverSpec. # noqa: E501
|
|
469
|
-
|
|
470
|
-
how many days after datastore blob upload should the object transition to INTELLIGENT_TIERING storage class. If variable `enable_datastore_transition_to_intelligent_tiering` is `false` then this value is ignored. # noqa: E501
|
|
471
|
-
|
|
472
|
-
:return: The datastore_transition_to_intelligent_tiering_num_days of this V1AWSClusterDriverSpec. # noqa: E501
|
|
473
|
-
:rtype: int
|
|
474
|
-
"""
|
|
475
|
-
return self._datastore_transition_to_intelligent_tiering_num_days
|
|
476
|
-
|
|
477
|
-
@datastore_transition_to_intelligent_tiering_num_days.setter
|
|
478
|
-
def datastore_transition_to_intelligent_tiering_num_days(self, datastore_transition_to_intelligent_tiering_num_days: 'int'):
|
|
479
|
-
"""Sets the datastore_transition_to_intelligent_tiering_num_days of this V1AWSClusterDriverSpec.
|
|
480
|
-
|
|
481
|
-
how many days after datastore blob upload should the object transition to INTELLIGENT_TIERING storage class. If variable `enable_datastore_transition_to_intelligent_tiering` is `false` then this value is ignored. # noqa: E501
|
|
482
|
-
|
|
483
|
-
:param datastore_transition_to_intelligent_tiering_num_days: The datastore_transition_to_intelligent_tiering_num_days of this V1AWSClusterDriverSpec. # noqa: E501
|
|
484
|
-
:type: int
|
|
485
|
-
"""
|
|
486
|
-
|
|
487
|
-
self._datastore_transition_to_intelligent_tiering_num_days = datastore_transition_to_intelligent_tiering_num_days
|
|
488
|
-
|
|
489
|
-
@property
|
|
490
|
-
def default_lightning_flow_compute_config(self) -> 'V1ComputeConfig':
|
|
491
|
-
"""Gets the default_lightning_flow_compute_config of this V1AWSClusterDriverSpec. # noqa: E501
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
:return: The default_lightning_flow_compute_config of this V1AWSClusterDriverSpec. # noqa: E501
|
|
495
|
-
:rtype: V1ComputeConfig
|
|
496
|
-
"""
|
|
497
|
-
return self._default_lightning_flow_compute_config
|
|
498
|
-
|
|
499
|
-
@default_lightning_flow_compute_config.setter
|
|
500
|
-
def default_lightning_flow_compute_config(self, default_lightning_flow_compute_config: 'V1ComputeConfig'):
|
|
501
|
-
"""Sets the default_lightning_flow_compute_config of this V1AWSClusterDriverSpec.
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
:param default_lightning_flow_compute_config: The default_lightning_flow_compute_config of this V1AWSClusterDriverSpec. # noqa: E501
|
|
505
|
-
:type: V1ComputeConfig
|
|
506
|
-
"""
|
|
507
|
-
|
|
508
|
-
self._default_lightning_flow_compute_config = default_lightning_flow_compute_config
|
|
509
|
-
|
|
510
|
-
@property
|
|
511
|
-
def default_lightning_work_compute_config(self) -> 'V1ComputeConfig':
|
|
512
|
-
"""Gets the default_lightning_work_compute_config of this V1AWSClusterDriverSpec. # noqa: E501
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
:return: The default_lightning_work_compute_config of this V1AWSClusterDriverSpec. # noqa: E501
|
|
516
|
-
:rtype: V1ComputeConfig
|
|
517
|
-
"""
|
|
518
|
-
return self._default_lightning_work_compute_config
|
|
519
|
-
|
|
520
|
-
@default_lightning_work_compute_config.setter
|
|
521
|
-
def default_lightning_work_compute_config(self, default_lightning_work_compute_config: 'V1ComputeConfig'):
|
|
522
|
-
"""Sets the default_lightning_work_compute_config of this V1AWSClusterDriverSpec.
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
:param default_lightning_work_compute_config: The default_lightning_work_compute_config of this V1AWSClusterDriverSpec. # noqa: E501
|
|
526
|
-
:type: V1ComputeConfig
|
|
527
|
-
"""
|
|
528
|
-
|
|
529
|
-
self._default_lightning_work_compute_config = default_lightning_work_compute_config
|
|
530
|
-
|
|
531
|
-
@property
|
|
532
|
-
def disable_automatic_ami_updates(self) -> 'bool':
|
|
533
|
-
"""Gets the disable_automatic_ami_updates of this V1AWSClusterDriverSpec. # noqa: E501
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
:return: The disable_automatic_ami_updates of this V1AWSClusterDriverSpec. # noqa: E501
|
|
537
|
-
:rtype: bool
|
|
538
|
-
"""
|
|
539
|
-
return self._disable_automatic_ami_updates
|
|
540
|
-
|
|
541
|
-
@disable_automatic_ami_updates.setter
|
|
542
|
-
def disable_automatic_ami_updates(self, disable_automatic_ami_updates: 'bool'):
|
|
543
|
-
"""Sets the disable_automatic_ami_updates of this V1AWSClusterDriverSpec.
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
:param disable_automatic_ami_updates: The disable_automatic_ami_updates of this V1AWSClusterDriverSpec. # noqa: E501
|
|
547
|
-
:type: bool
|
|
548
|
-
"""
|
|
549
|
-
|
|
550
|
-
self._disable_automatic_ami_updates = disable_automatic_ami_updates
|
|
551
|
-
|
|
552
|
-
@property
|
|
553
|
-
def ec2_cpu_ami(self) -> 'str':
|
|
554
|
-
"""Gets the ec2_cpu_ami of this V1AWSClusterDriverSpec. # noqa: E501
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
:return: The ec2_cpu_ami of this V1AWSClusterDriverSpec. # noqa: E501
|
|
558
|
-
:rtype: str
|
|
559
|
-
"""
|
|
560
|
-
return self._ec2_cpu_ami
|
|
561
|
-
|
|
562
|
-
@ec2_cpu_ami.setter
|
|
563
|
-
def ec2_cpu_ami(self, ec2_cpu_ami: 'str'):
|
|
564
|
-
"""Sets the ec2_cpu_ami of this V1AWSClusterDriverSpec.
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
:param ec2_cpu_ami: The ec2_cpu_ami of this V1AWSClusterDriverSpec. # noqa: E501
|
|
568
|
-
:type: str
|
|
569
|
-
"""
|
|
570
|
-
|
|
571
|
-
self._ec2_cpu_ami = ec2_cpu_ami
|
|
572
|
-
|
|
573
|
-
@property
|
|
574
|
-
def ec2_cpu_ami_cloud_space(self) -> 'str':
|
|
575
|
-
"""Gets the ec2_cpu_ami_cloud_space of this V1AWSClusterDriverSpec. # noqa: E501
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
:return: The ec2_cpu_ami_cloud_space of this V1AWSClusterDriverSpec. # noqa: E501
|
|
579
|
-
:rtype: str
|
|
580
|
-
"""
|
|
581
|
-
return self._ec2_cpu_ami_cloud_space
|
|
582
|
-
|
|
583
|
-
@ec2_cpu_ami_cloud_space.setter
|
|
584
|
-
def ec2_cpu_ami_cloud_space(self, ec2_cpu_ami_cloud_space: 'str'):
|
|
585
|
-
"""Sets the ec2_cpu_ami_cloud_space of this V1AWSClusterDriverSpec.
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
:param ec2_cpu_ami_cloud_space: The ec2_cpu_ami_cloud_space of this V1AWSClusterDriverSpec. # noqa: E501
|
|
589
|
-
:type: str
|
|
590
|
-
"""
|
|
591
|
-
|
|
592
|
-
self._ec2_cpu_ami_cloud_space = ec2_cpu_ami_cloud_space
|
|
593
|
-
|
|
594
|
-
@property
|
|
595
|
-
def ec2_gpu_ami(self) -> 'str':
|
|
596
|
-
"""Gets the ec2_gpu_ami of this V1AWSClusterDriverSpec. # noqa: E501
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
:return: The ec2_gpu_ami of this V1AWSClusterDriverSpec. # noqa: E501
|
|
600
|
-
:rtype: str
|
|
601
|
-
"""
|
|
602
|
-
return self._ec2_gpu_ami
|
|
603
|
-
|
|
604
|
-
@ec2_gpu_ami.setter
|
|
605
|
-
def ec2_gpu_ami(self, ec2_gpu_ami: 'str'):
|
|
606
|
-
"""Sets the ec2_gpu_ami of this V1AWSClusterDriverSpec.
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
:param ec2_gpu_ami: The ec2_gpu_ami of this V1AWSClusterDriverSpec. # noqa: E501
|
|
610
|
-
:type: str
|
|
611
|
-
"""
|
|
612
|
-
|
|
613
|
-
self._ec2_gpu_ami = ec2_gpu_ami
|
|
614
|
-
|
|
615
|
-
@property
|
|
616
|
-
def ec2_gpu_ami_cloud_space(self) -> 'str':
|
|
617
|
-
"""Gets the ec2_gpu_ami_cloud_space of this V1AWSClusterDriverSpec. # noqa: E501
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
:return: The ec2_gpu_ami_cloud_space of this V1AWSClusterDriverSpec. # noqa: E501
|
|
621
|
-
:rtype: str
|
|
622
|
-
"""
|
|
623
|
-
return self._ec2_gpu_ami_cloud_space
|
|
624
|
-
|
|
625
|
-
@ec2_gpu_ami_cloud_space.setter
|
|
626
|
-
def ec2_gpu_ami_cloud_space(self, ec2_gpu_ami_cloud_space: 'str'):
|
|
627
|
-
"""Sets the ec2_gpu_ami_cloud_space of this V1AWSClusterDriverSpec.
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
:param ec2_gpu_ami_cloud_space: The ec2_gpu_ami_cloud_space of this V1AWSClusterDriverSpec. # noqa: E501
|
|
631
|
-
:type: str
|
|
632
|
-
"""
|
|
633
|
-
|
|
634
|
-
self._ec2_gpu_ami_cloud_space = ec2_gpu_ami_cloud_space
|
|
635
|
-
|
|
636
|
-
@property
|
|
637
|
-
def enable_datastore_transition_to_intelligent_tiering(self) -> 'bool':
|
|
638
|
-
"""Gets the enable_datastore_transition_to_intelligent_tiering of this V1AWSClusterDriverSpec. # noqa: E501
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
:return: The enable_datastore_transition_to_intelligent_tiering of this V1AWSClusterDriverSpec. # noqa: E501
|
|
642
|
-
:rtype: bool
|
|
643
|
-
"""
|
|
644
|
-
return self._enable_datastore_transition_to_intelligent_tiering
|
|
645
|
-
|
|
646
|
-
@enable_datastore_transition_to_intelligent_tiering.setter
|
|
647
|
-
def enable_datastore_transition_to_intelligent_tiering(self, enable_datastore_transition_to_intelligent_tiering: 'bool'):
|
|
648
|
-
"""Sets the enable_datastore_transition_to_intelligent_tiering of this V1AWSClusterDriverSpec.
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
:param enable_datastore_transition_to_intelligent_tiering: The enable_datastore_transition_to_intelligent_tiering of this V1AWSClusterDriverSpec. # noqa: E501
|
|
652
|
-
:type: bool
|
|
653
|
-
"""
|
|
654
|
-
|
|
655
|
-
self._enable_datastore_transition_to_intelligent_tiering = enable_datastore_transition_to_intelligent_tiering
|
|
656
|
-
|
|
657
|
-
@property
|
|
658
|
-
def enable_dns_firewall(self) -> 'bool':
|
|
659
|
-
"""Gets the enable_dns_firewall of this V1AWSClusterDriverSpec. # noqa: E501
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
:return: The enable_dns_firewall of this V1AWSClusterDriverSpec. # noqa: E501
|
|
663
|
-
:rtype: bool
|
|
664
|
-
"""
|
|
665
|
-
return self._enable_dns_firewall
|
|
666
|
-
|
|
667
|
-
@enable_dns_firewall.setter
|
|
668
|
-
def enable_dns_firewall(self, enable_dns_firewall: 'bool'):
|
|
669
|
-
"""Sets the enable_dns_firewall of this V1AWSClusterDriverSpec.
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
:param enable_dns_firewall: The enable_dns_firewall of this V1AWSClusterDriverSpec. # noqa: E501
|
|
673
|
-
:type: bool
|
|
674
|
-
"""
|
|
675
|
-
|
|
676
|
-
self._enable_dns_firewall = enable_dns_firewall
|
|
677
|
-
|
|
678
|
-
@property
|
|
679
|
-
def enable_experiment_transition_to_intelligent_tiering(self) -> 'bool':
|
|
680
|
-
"""Gets the enable_experiment_transition_to_intelligent_tiering of this V1AWSClusterDriverSpec. # noqa: E501
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
:return: The enable_experiment_transition_to_intelligent_tiering of this V1AWSClusterDriverSpec. # noqa: E501
|
|
684
|
-
:rtype: bool
|
|
685
|
-
"""
|
|
686
|
-
return self._enable_experiment_transition_to_intelligent_tiering
|
|
687
|
-
|
|
688
|
-
@enable_experiment_transition_to_intelligent_tiering.setter
|
|
689
|
-
def enable_experiment_transition_to_intelligent_tiering(self, enable_experiment_transition_to_intelligent_tiering: 'bool'):
|
|
690
|
-
"""Sets the enable_experiment_transition_to_intelligent_tiering of this V1AWSClusterDriverSpec.
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
:param enable_experiment_transition_to_intelligent_tiering: The enable_experiment_transition_to_intelligent_tiering of this V1AWSClusterDriverSpec. # noqa: E501
|
|
694
|
-
:type: bool
|
|
695
|
-
"""
|
|
696
|
-
|
|
697
|
-
self._enable_experiment_transition_to_intelligent_tiering = enable_experiment_transition_to_intelligent_tiering
|
|
698
|
-
|
|
699
|
-
@property
|
|
700
|
-
def experiment_transition_to_intelligent_tiering_num_days(self) -> 'int':
|
|
701
|
-
"""Gets the experiment_transition_to_intelligent_tiering_num_days of this V1AWSClusterDriverSpec. # noqa: E501
|
|
702
|
-
|
|
703
|
-
how many days after datastore blob upload should the object transition to INTELLIGENT_TIERING storage class. If variable `enable_experiment_transition_to_intelligent_tiering` is `false` then this value is ignored. # noqa: E501
|
|
704
|
-
|
|
705
|
-
:return: The experiment_transition_to_intelligent_tiering_num_days of this V1AWSClusterDriverSpec. # noqa: E501
|
|
706
|
-
:rtype: int
|
|
707
|
-
"""
|
|
708
|
-
return self._experiment_transition_to_intelligent_tiering_num_days
|
|
709
|
-
|
|
710
|
-
@experiment_transition_to_intelligent_tiering_num_days.setter
|
|
711
|
-
def experiment_transition_to_intelligent_tiering_num_days(self, experiment_transition_to_intelligent_tiering_num_days: 'int'):
|
|
712
|
-
"""Sets the experiment_transition_to_intelligent_tiering_num_days of this V1AWSClusterDriverSpec.
|
|
713
|
-
|
|
714
|
-
how many days after datastore blob upload should the object transition to INTELLIGENT_TIERING storage class. If variable `enable_experiment_transition_to_intelligent_tiering` is `false` then this value is ignored. # noqa: E501
|
|
715
|
-
|
|
716
|
-
:param experiment_transition_to_intelligent_tiering_num_days: The experiment_transition_to_intelligent_tiering_num_days of this V1AWSClusterDriverSpec. # noqa: E501
|
|
717
|
-
:type: int
|
|
718
|
-
"""
|
|
719
|
-
|
|
720
|
-
self._experiment_transition_to_intelligent_tiering_num_days = experiment_transition_to_intelligent_tiering_num_days
|
|
721
|
-
|
|
722
|
-
@property
|
|
723
|
-
def external_id(self) -> 'str':
|
|
724
|
-
"""Gets the external_id of this V1AWSClusterDriverSpec. # noqa: E501
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
:return: The external_id of this V1AWSClusterDriverSpec. # noqa: E501
|
|
728
|
-
:rtype: str
|
|
729
|
-
"""
|
|
730
|
-
return self._external_id
|
|
731
|
-
|
|
732
|
-
@external_id.setter
|
|
733
|
-
def external_id(self, external_id: 'str'):
|
|
734
|
-
"""Sets the external_id of this V1AWSClusterDriverSpec.
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
:param external_id: The external_id of this V1AWSClusterDriverSpec. # noqa: E501
|
|
738
|
-
:type: str
|
|
739
|
-
"""
|
|
740
|
-
|
|
741
|
-
self._external_id = external_id
|
|
742
|
-
|
|
743
|
-
@property
|
|
744
|
-
def gpu_ami_override(self) -> 'str':
|
|
745
|
-
"""Gets the gpu_ami_override of this V1AWSClusterDriverSpec. # noqa: E501
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
:return: The gpu_ami_override of this V1AWSClusterDriverSpec. # noqa: E501
|
|
749
|
-
:rtype: str
|
|
750
|
-
"""
|
|
751
|
-
return self._gpu_ami_override
|
|
752
|
-
|
|
753
|
-
@gpu_ami_override.setter
|
|
754
|
-
def gpu_ami_override(self, gpu_ami_override: 'str'):
|
|
755
|
-
"""Sets the gpu_ami_override of this V1AWSClusterDriverSpec.
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
:param gpu_ami_override: The gpu_ami_override of this V1AWSClusterDriverSpec. # noqa: E501
|
|
759
|
-
:type: str
|
|
760
|
-
"""
|
|
761
|
-
|
|
762
|
-
self._gpu_ami_override = gpu_ami_override
|
|
763
|
-
|
|
764
|
-
@property
|
|
765
|
-
def guardduty_integration(self) -> 'bool':
|
|
766
|
-
"""Gets the guardduty_integration of this V1AWSClusterDriverSpec. # noqa: E501
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
:return: The guardduty_integration of this V1AWSClusterDriverSpec. # noqa: E501
|
|
770
|
-
:rtype: bool
|
|
771
|
-
"""
|
|
772
|
-
return self._guardduty_integration
|
|
773
|
-
|
|
774
|
-
@guardduty_integration.setter
|
|
775
|
-
def guardduty_integration(self, guardduty_integration: 'bool'):
|
|
776
|
-
"""Sets the guardduty_integration of this V1AWSClusterDriverSpec.
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
:param guardduty_integration: The guardduty_integration of this V1AWSClusterDriverSpec. # noqa: E501
|
|
780
|
-
:type: bool
|
|
781
|
-
"""
|
|
782
|
-
|
|
783
|
-
self._guardduty_integration = guardduty_integration
|
|
784
|
-
|
|
785
|
-
@property
|
|
786
|
-
def instance_types(self) -> 'list[V1InstanceSpec]':
|
|
787
|
-
"""Gets the instance_types of this V1AWSClusterDriverSpec. # noqa: E501
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
:return: The instance_types of this V1AWSClusterDriverSpec. # noqa: E501
|
|
791
|
-
:rtype: list[V1InstanceSpec]
|
|
792
|
-
"""
|
|
793
|
-
return self._instance_types
|
|
794
|
-
|
|
795
|
-
@instance_types.setter
|
|
796
|
-
def instance_types(self, instance_types: 'list[V1InstanceSpec]'):
|
|
797
|
-
"""Sets the instance_types of this V1AWSClusterDriverSpec.
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
:param instance_types: The instance_types of this V1AWSClusterDriverSpec. # noqa: E501
|
|
801
|
-
:type: list[V1InstanceSpec]
|
|
802
|
-
"""
|
|
803
|
-
|
|
804
|
-
self._instance_types = instance_types
|
|
805
|
-
|
|
806
|
-
@property
|
|
807
|
-
def internal_gc_ttl(self) -> 'str':
|
|
808
|
-
"""Gets the internal_gc_ttl of this V1AWSClusterDriverSpec. # noqa: E501
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
:return: The internal_gc_ttl of this V1AWSClusterDriverSpec. # noqa: E501
|
|
812
|
-
:rtype: str
|
|
813
|
-
"""
|
|
814
|
-
return self._internal_gc_ttl
|
|
815
|
-
|
|
816
|
-
@internal_gc_ttl.setter
|
|
817
|
-
def internal_gc_ttl(self, internal_gc_ttl: 'str'):
|
|
818
|
-
"""Sets the internal_gc_ttl of this V1AWSClusterDriverSpec.
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
:param internal_gc_ttl: The internal_gc_ttl of this V1AWSClusterDriverSpec. # noqa: E501
|
|
822
|
-
:type: str
|
|
823
|
-
"""
|
|
824
|
-
|
|
825
|
-
self._internal_gc_ttl = internal_gc_ttl
|
|
826
|
-
|
|
827
|
-
@property
|
|
828
|
-
def internal_test_cluster(self) -> 'bool':
|
|
829
|
-
"""Gets the internal_test_cluster of this V1AWSClusterDriverSpec. # noqa: E501
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
:return: The internal_test_cluster of this V1AWSClusterDriverSpec. # noqa: E501
|
|
833
|
-
:rtype: bool
|
|
834
|
-
"""
|
|
835
|
-
return self._internal_test_cluster
|
|
836
|
-
|
|
837
|
-
@internal_test_cluster.setter
|
|
838
|
-
def internal_test_cluster(self, internal_test_cluster: 'bool'):
|
|
839
|
-
"""Sets the internal_test_cluster of this V1AWSClusterDriverSpec.
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
:param internal_test_cluster: The internal_test_cluster of this V1AWSClusterDriverSpec. # noqa: E501
|
|
843
|
-
:type: bool
|
|
844
|
-
"""
|
|
845
|
-
|
|
846
|
-
self._internal_test_cluster = internal_test_cluster
|
|
847
|
-
|
|
848
|
-
@property
|
|
849
|
-
def kubernetes_version(self) -> 'str':
|
|
850
|
-
"""Gets the kubernetes_version of this V1AWSClusterDriverSpec. # noqa: E501
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
:return: The kubernetes_version of this V1AWSClusterDriverSpec. # noqa: E501
|
|
854
|
-
:rtype: str
|
|
855
|
-
"""
|
|
856
|
-
return self._kubernetes_version
|
|
857
|
-
|
|
858
|
-
@kubernetes_version.setter
|
|
859
|
-
def kubernetes_version(self, kubernetes_version: 'str'):
|
|
860
|
-
"""Sets the kubernetes_version of this V1AWSClusterDriverSpec.
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
:param kubernetes_version: The kubernetes_version of this V1AWSClusterDriverSpec. # noqa: E501
|
|
864
|
-
:type: str
|
|
865
|
-
"""
|
|
866
|
-
|
|
867
|
-
self._kubernetes_version = kubernetes_version
|
|
868
|
-
|
|
869
|
-
@property
|
|
870
|
-
def loki_bucket_name(self) -> 'str':
|
|
871
|
-
"""Gets the loki_bucket_name of this V1AWSClusterDriverSpec. # noqa: E501
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
:return: The loki_bucket_name of this V1AWSClusterDriverSpec. # noqa: E501
|
|
875
|
-
:rtype: str
|
|
876
|
-
"""
|
|
877
|
-
return self._loki_bucket_name
|
|
878
|
-
|
|
879
|
-
@loki_bucket_name.setter
|
|
880
|
-
def loki_bucket_name(self, loki_bucket_name: 'str'):
|
|
881
|
-
"""Sets the loki_bucket_name of this V1AWSClusterDriverSpec.
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
:param loki_bucket_name: The loki_bucket_name of this V1AWSClusterDriverSpec. # noqa: E501
|
|
885
|
-
:type: str
|
|
886
|
-
"""
|
|
887
|
-
|
|
888
|
-
self._loki_bucket_name = loki_bucket_name
|
|
889
|
-
|
|
890
|
-
@property
|
|
891
|
-
def management_node_instance_type(self) -> 'str':
|
|
892
|
-
"""Gets the management_node_instance_type of this V1AWSClusterDriverSpec. # noqa: E501
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
:return: The management_node_instance_type of this V1AWSClusterDriverSpec. # noqa: E501
|
|
896
|
-
:rtype: str
|
|
897
|
-
"""
|
|
898
|
-
return self._management_node_instance_type
|
|
899
|
-
|
|
900
|
-
@management_node_instance_type.setter
|
|
901
|
-
def management_node_instance_type(self, management_node_instance_type: 'str'):
|
|
902
|
-
"""Sets the management_node_instance_type of this V1AWSClusterDriverSpec.
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
:param management_node_instance_type: The management_node_instance_type of this V1AWSClusterDriverSpec. # noqa: E501
|
|
906
|
-
:type: str
|
|
907
|
-
"""
|
|
908
|
-
|
|
909
|
-
self._management_node_instance_type = management_node_instance_type
|
|
910
|
-
|
|
911
|
-
@property
|
|
912
|
-
def original_cluster_name(self) -> 'str':
|
|
913
|
-
"""Gets the original_cluster_name of this V1AWSClusterDriverSpec. # noqa: E501
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
:return: The original_cluster_name of this V1AWSClusterDriverSpec. # noqa: E501
|
|
917
|
-
:rtype: str
|
|
918
|
-
"""
|
|
919
|
-
return self._original_cluster_name
|
|
920
|
-
|
|
921
|
-
@original_cluster_name.setter
|
|
922
|
-
def original_cluster_name(self, original_cluster_name: 'str'):
|
|
923
|
-
"""Sets the original_cluster_name of this V1AWSClusterDriverSpec.
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
:param original_cluster_name: The original_cluster_name of this V1AWSClusterDriverSpec. # noqa: E501
|
|
927
|
-
:type: str
|
|
928
|
-
"""
|
|
929
|
-
|
|
930
|
-
self._original_cluster_name = original_cluster_name
|
|
931
|
-
|
|
932
|
-
@property
|
|
933
|
-
def region(self) -> 'str':
|
|
934
|
-
"""Gets the region of this V1AWSClusterDriverSpec. # noqa: E501
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
:return: The region of this V1AWSClusterDriverSpec. # noqa: E501
|
|
938
|
-
:rtype: str
|
|
939
|
-
"""
|
|
940
|
-
return self._region
|
|
941
|
-
|
|
942
|
-
@region.setter
|
|
943
|
-
def region(self, region: 'str'):
|
|
944
|
-
"""Sets the region of this V1AWSClusterDriverSpec.
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
:param region: The region of this V1AWSClusterDriverSpec. # noqa: E501
|
|
948
|
-
:type: str
|
|
949
|
-
"""
|
|
950
|
-
|
|
951
|
-
self._region = region
|
|
952
|
-
|
|
953
|
-
@property
|
|
954
|
-
def role_arn(self) -> 'str':
|
|
955
|
-
"""Gets the role_arn of this V1AWSClusterDriverSpec. # noqa: E501
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
:return: The role_arn of this V1AWSClusterDriverSpec. # noqa: E501
|
|
959
|
-
:rtype: str
|
|
960
|
-
"""
|
|
961
|
-
return self._role_arn
|
|
962
|
-
|
|
963
|
-
@role_arn.setter
|
|
964
|
-
def role_arn(self, role_arn: 'str'):
|
|
965
|
-
"""Sets the role_arn of this V1AWSClusterDriverSpec.
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
:param role_arn: The role_arn of this V1AWSClusterDriverSpec. # noqa: E501
|
|
969
|
-
:type: str
|
|
970
|
-
"""
|
|
971
|
-
|
|
972
|
-
self._role_arn = role_arn
|
|
973
|
-
|
|
974
|
-
@property
|
|
975
|
-
def secondary_regions(self) -> 'list[V1AWSClusterSecondaryRegionSpec]':
|
|
976
|
-
"""Gets the secondary_regions of this V1AWSClusterDriverSpec. # noqa: E501
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
:return: The secondary_regions of this V1AWSClusterDriverSpec. # noqa: E501
|
|
980
|
-
:rtype: list[V1AWSClusterSecondaryRegionSpec]
|
|
981
|
-
"""
|
|
982
|
-
return self._secondary_regions
|
|
983
|
-
|
|
984
|
-
@secondary_regions.setter
|
|
985
|
-
def secondary_regions(self, secondary_regions: 'list[V1AWSClusterSecondaryRegionSpec]'):
|
|
986
|
-
"""Sets the secondary_regions of this V1AWSClusterDriverSpec.
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
:param secondary_regions: The secondary_regions of this V1AWSClusterDriverSpec. # noqa: E501
|
|
990
|
-
:type: list[V1AWSClusterSecondaryRegionSpec]
|
|
991
|
-
"""
|
|
992
|
-
|
|
993
|
-
self._secondary_regions = secondary_regions
|
|
994
|
-
|
|
995
|
-
def to_dict(self) -> dict:
|
|
996
|
-
"""Returns the model properties as a dict"""
|
|
997
|
-
result = {}
|
|
998
|
-
|
|
999
|
-
for attr, _ in six.iteritems(self.swagger_types):
|
|
1000
|
-
value = getattr(self, attr)
|
|
1001
|
-
if isinstance(value, list):
|
|
1002
|
-
result[attr] = list(map(
|
|
1003
|
-
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
|
|
1004
|
-
value
|
|
1005
|
-
))
|
|
1006
|
-
elif hasattr(value, "to_dict"):
|
|
1007
|
-
result[attr] = value.to_dict()
|
|
1008
|
-
elif isinstance(value, dict):
|
|
1009
|
-
result[attr] = dict(map(
|
|
1010
|
-
lambda item: (item[0], item[1].to_dict())
|
|
1011
|
-
if hasattr(item[1], "to_dict") else item,
|
|
1012
|
-
value.items()
|
|
1013
|
-
))
|
|
1014
|
-
else:
|
|
1015
|
-
result[attr] = value
|
|
1016
|
-
if issubclass(V1AWSClusterDriverSpec, dict):
|
|
1017
|
-
for key, value in self.items():
|
|
1018
|
-
result[key] = value
|
|
1019
|
-
|
|
1020
|
-
return result
|
|
1021
|
-
|
|
1022
|
-
def to_str(self) -> str:
|
|
1023
|
-
"""Returns the string representation of the model"""
|
|
1024
|
-
return pprint.pformat(self.to_dict())
|
|
1025
|
-
|
|
1026
|
-
def __repr__(self) -> str:
|
|
1027
|
-
"""For `print` and `pprint`"""
|
|
1028
|
-
return self.to_str()
|
|
1029
|
-
|
|
1030
|
-
def __eq__(self, other: 'V1AWSClusterDriverSpec') -> bool:
|
|
1031
|
-
"""Returns true if both objects are equal"""
|
|
1032
|
-
if not isinstance(other, V1AWSClusterDriverSpec):
|
|
1033
|
-
return False
|
|
1034
|
-
|
|
1035
|
-
return self.__dict__ == other.__dict__
|
|
1036
|
-
|
|
1037
|
-
def __ne__(self, other: 'V1AWSClusterDriverSpec') -> bool:
|
|
1038
|
-
"""Returns true if both objects are not equal"""
|
|
1039
|
-
return not self == other
|