lightning-sdk 2025.12.5__py3-none-any.whl → 2025.12.9__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- lightning_sdk/__version__.py +1 -1
- lightning_sdk/api/agents_api.py +4 -4
- lightning_sdk/api/ai_hub_api.py +2 -2
- lightning_sdk/api/base_studio_api.py +3 -1
- lightning_sdk/api/deployment_api.py +2 -2
- lightning_sdk/api/job_api.py +9 -7
- lightning_sdk/api/license_api.py +2 -2
- lightning_sdk/api/mmt_api.py +5 -5
- lightning_sdk/api/pipeline_api.py +4 -4
- lightning_sdk/api/studio_api.py +33 -33
- lightning_sdk/api/teamspace_api.py +38 -26
- lightning_sdk/api/user_api.py +2 -2
- lightning_sdk/api/utils.py +17 -24
- lightning_sdk/cli/entrypoint.py +16 -12
- lightning_sdk/lightning_cloud/login.py +1 -1
- lightning_sdk/lightning_cloud/openapi/__init__.py +204 -195
- lightning_sdk/lightning_cloud/openapi/api/agent_service_api.py +28 -28
- lightning_sdk/lightning_cloud/openapi/api/assistants_service_api.py +108 -108
- lightning_sdk/lightning_cloud/openapi/api/billing_service_api.py +69 -57
- lightning_sdk/lightning_cloud/openapi/api/blog_posts_service_api.py +4 -4
- lightning_sdk/lightning_cloud/openapi/api/cloud_space_environment_template_service_api.py +14 -14
- lightning_sdk/lightning_cloud/openapi/api/cloud_space_service_api.py +331 -168
- lightning_sdk/lightning_cloud/openapi/api/cloudy_service_api.py +4 -4
- lightning_sdk/lightning_cloud/openapi/api/cluster_service_api.py +58 -58
- lightning_sdk/lightning_cloud/openapi/api/data_connection_service_api.py +24 -24
- lightning_sdk/lightning_cloud/openapi/api/dataset_service_api.py +8 -8
- lightning_sdk/lightning_cloud/openapi/api/deployment_templates_service_api.py +8 -8
- lightning_sdk/lightning_cloud/openapi/api/endpoint_service_api.py +8 -8
- lightning_sdk/lightning_cloud/openapi/api/experiments_service_api.py +8 -8
- lightning_sdk/lightning_cloud/openapi/api/file_system_service_api.py +16 -16
- lightning_sdk/lightning_cloud/openapi/api/incidents_service_api.py +18 -18
- lightning_sdk/lightning_cloud/openapi/api/jobs_service_api.py +514 -254
- lightning_sdk/lightning_cloud/openapi/api/k8_s_cluster_service_api.py +67 -59
- lightning_sdk/lightning_cloud/openapi/api/lightningapp_instance_service_api.py +16 -16
- lightning_sdk/lightning_cloud/openapi/api/lightningapp_v2_service_api.py +6 -6
- lightning_sdk/lightning_cloud/openapi/api/lightningwork_service_api.py +16 -16
- lightning_sdk/lightning_cloud/openapi/api/lit_dataset_service_api.py +42 -42
- lightning_sdk/lightning_cloud/openapi/api/lit_logger_service_api.py +28 -28
- lightning_sdk/lightning_cloud/openapi/api/lit_page_service_api.py +4 -4
- lightning_sdk/lightning_cloud/openapi/api/lit_registry_service_api.py +8 -8
- lightning_sdk/lightning_cloud/openapi/api/models_store_api.py +42 -42
- lightning_sdk/lightning_cloud/openapi/api/organizations_service_api.py +34 -34
- lightning_sdk/lightning_cloud/openapi/api/pipeline_templates_service_api.py +4 -4
- lightning_sdk/lightning_cloud/openapi/api/pipelines_service_api.py +38 -38
- lightning_sdk/lightning_cloud/openapi/api/product_license_service_api.py +4 -4
- lightning_sdk/lightning_cloud/openapi/api/profiler_service_api.py +12 -12
- lightning_sdk/lightning_cloud/openapi/api/projects_service_api.py +32 -32
- lightning_sdk/lightning_cloud/openapi/api/quest_service_api.py +8 -8
- lightning_sdk/lightning_cloud/openapi/api/schedules_service_api.py +48 -48
- lightning_sdk/lightning_cloud/openapi/api/secret_service_api.py +12 -12
- lightning_sdk/lightning_cloud/openapi/api/slurm_jobs_user_service_api.py +16 -16
- lightning_sdk/lightning_cloud/openapi/api/snowflake_service_api.py +16 -16
- lightning_sdk/lightning_cloud/openapi/api/storage_service_api.py +40 -40
- lightning_sdk/lightning_cloud/openapi/api/studio_jobs_service_api.py +8 -8
- lightning_sdk/lightning_cloud/openapi/api/user_service_api.py +20 -20
- lightning_sdk/lightning_cloud/openapi/api/volume_service_api.py +4 -4
- lightning_sdk/lightning_cloud/openapi/models/__init__.py +204 -181
- lightning_sdk/lightning_cloud/openapi/models/agent_service_agent_complete_part_body.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/{multipartuploads_upload_id_body.py → agent_service_agent_upload_part_body.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/{id_multipartuploads_body.py → agent_service_create_agent_multipart_upload_body.py} +14 -14
- lightning_sdk/lightning_cloud/openapi/models/{jobs_id_body.py → agent_service_update_agent_job_body.py} +30 -30
- lightning_sdk/lightning_cloud/openapi/models/{id_artifacts_body.py → agent_service_upload_agent_job_artifact_body.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/{id_output_body.py → agent_service_upload_agent_job_output_body.py} +18 -18
- lightning_sdk/lightning_cloud/openapi/models/{id_contactowner_body.py → assistants_service_contact_assistant_owner_body.py} +14 -14
- lightning_sdk/lightning_cloud/openapi/models/{project_id_agents_body.py → assistants_service_create_assistant_body.py} +74 -74
- lightning_sdk/lightning_cloud/openapi/models/{project_id_agentmanagedendpoints_body.py → assistants_service_create_assistant_managed_endpoint_body.py} +14 -14
- lightning_sdk/lightning_cloud/openapi/models/{message_id_actions_body.py → assistants_service_create_conversation_message_action_body.py} +28 -26
- lightning_sdk/lightning_cloud/openapi/models/{models_model_id_body.py → assistants_service_create_model_metrics_body.py} +26 -26
- lightning_sdk/lightning_cloud/openapi/models/{assistant_id_conversations_body.py → assistants_service_start_conversation_body.py} +74 -74
- lightning_sdk/lightning_cloud/openapi/models/{agents_id_body.py → assistants_service_update_assistant_body.py} +102 -102
- lightning_sdk/lightning_cloud/openapi/models/{agentmanagedendpoints_id_body.py → assistants_service_update_assistant_managed_endpoint_body.py} +42 -42
- lightning_sdk/lightning_cloud/openapi/models/{models_id_body.py → assistants_service_update_assistant_managed_endpoint_model_body.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/assistants_service_update_conversation_body.py +149 -0
- lightning_sdk/lightning_cloud/openapi/models/{conversations_id_body1.py → assistants_service_update_conversation_like_body.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/{id_content_body.py → assistants_service_update_conversation_message_content_body.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/{messages_id_body.py → assistants_service_update_conversation_message_like_body.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/assistants_service_validate_assistant_status_body.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/assistants_service_validate_managed_model_body.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/{user_id_upgradetrigger_body.py → billing_service_create_billing_upgrade_trigger_record_body.py} +22 -22
- lightning_sdk/lightning_cloud/openapi/models/{billing_checkout_body.py → billing_service_create_org_checkout_session_body.py} +18 -18
- lightning_sdk/lightning_cloud/openapi/models/{billing_transfer_body.py → billing_service_transfer_org_balance_body.py} +14 -14
- lightning_sdk/lightning_cloud/openapi/models/{billing_transfer_body1.py → billing_service_transfer_project_balance_body.py} +18 -18
- lightning_sdk/lightning_cloud/openapi/models/{blogposts_id_body.py → blog_posts_service_update_blog_post_body.py} +38 -38
- lightning_sdk/lightning_cloud/openapi/models/{update.py → cloud_space_environment_template_service_update_cloud_space_environment_template_body.py} +58 -58
- lightning_sdk/lightning_cloud/openapi/models/{apps_id_body1.py → cloud_space_service_create_cloud_space_app_instance_body.py} +34 -34
- lightning_sdk/lightning_cloud/openapi/models/{project_id_cloudspaces_body.py → cloud_space_service_create_cloud_space_body.py} +78 -78
- lightning_sdk/lightning_cloud/openapi/models/{cloudspace_id_metric_body.py → cloud_space_service_create_cloud_space_instance_metric_body.py} +22 -22
- lightning_sdk/lightning_cloud/openapi/models/{cloud_space_id_versions_body.py → cloud_space_service_create_cloud_space_version_body.py} +54 -54
- lightning_sdk/lightning_cloud/openapi/models/{cloud_space_id_versionpublications_body.py → cloud_space_service_create_cloud_space_version_publication_body.py} +18 -18
- lightning_sdk/lightning_cloud/openapi/models/{cloudspace_id_runs_body.py → cloud_space_service_create_lightning_run_body.py} +86 -86
- lightning_sdk/lightning_cloud/openapi/models/{id_get_body.py → cloud_space_service_create_lightning_run_instance_body.py} +58 -58
- lightning_sdk/lightning_cloud/openapi/models/{id_engage_body1.py → cloud_space_service_engage_cloud_space_body.py} +14 -14
- lightning_sdk/lightning_cloud/openapi/models/{id_execute_body1.py → cloud_space_service_execute_command_in_cloud_space_body.py} +18 -18
- lightning_sdk/lightning_cloud/openapi/models/{id_execute_body.py → cloud_space_service_execute_in_cloud_space_session_body.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/{id_fork_body.py → cloud_space_service_fork_cloud_space_app_instance_body.py} +14 -14
- lightning_sdk/lightning_cloud/openapi/models/{id_fork_body1.py → cloud_space_service_fork_cloud_space_body.py} +22 -22
- lightning_sdk/lightning_cloud/openapi/models/cloud_space_service_keep_alive_cloud_space_instance_body.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/{cluster_id_proxies_body.py → cloud_space_service_publish_cloud_space_body.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/{id_index_body1.py → cloud_space_service_refresh_cloud_space_index_body.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/{cloudspace_id_systemmetrics_body.py → cloud_space_service_report_cloud_space_instance_system_metrics_body.py} +14 -14
- lightning_sdk/lightning_cloud/openapi/models/cloud_space_service_request_cloud_space_access_body.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/{id_start_body.py → cloud_space_service_start_cloud_space_instance_body.py} +14 -14
- lightning_sdk/lightning_cloud/openapi/models/{id_transfer_body.py → cloud_space_service_transfer_cloud_space_body.py} +18 -18
- lightning_sdk/lightning_cloud/openapi/models/{apps_id_body.py → cloud_space_service_update_cloud_space_app_body.py} +86 -86
- lightning_sdk/lightning_cloud/openapi/models/{cloudspaces_id_body.py → cloud_space_service_update_cloud_space_body.py} +114 -114
- lightning_sdk/lightning_cloud/openapi/models/{id_collaborate_body.py → cloud_space_service_update_cloud_space_collab_body.py} +18 -18
- lightning_sdk/lightning_cloud/openapi/models/{conversations_id_body.py → cloud_space_service_update_cloud_space_ide_body.py} +21 -21
- lightning_sdk/lightning_cloud/openapi/models/{id_index_body.py → cloud_space_service_update_cloud_space_index_body.py} +18 -18
- lightning_sdk/lightning_cloud/openapi/models/{id_codeconfig_body.py → cloud_space_service_update_cloud_space_instance_config_body.py} +22 -22
- lightning_sdk/lightning_cloud/openapi/models/{id_publications_body.py → cloud_space_service_update_cloud_space_publication_body.py} +14 -14
- lightning_sdk/lightning_cloud/openapi/models/{id_sleepconfig_body.py → cloud_space_service_update_cloud_space_sleep_config_body.py} +18 -18
- lightning_sdk/lightning_cloud/openapi/models/{versions_id_body.py → cloud_space_service_update_cloud_space_version_body.py} +46 -46
- lightning_sdk/lightning_cloud/openapi/models/{cloud_space_id_versionpublications_body1.py → cloud_space_service_update_cloud_space_version_publication_body.py} +18 -18
- lightning_sdk/lightning_cloud/openapi/models/{dataset_id_visibility_body.py → cloud_space_service_update_cloud_space_visibility_body.py} +14 -14
- lightning_sdk/lightning_cloud/openapi/models/{user_user_id_body.py → cloudy_service_update_user_cloudy_settings_body.py} +22 -22
- lightning_sdk/lightning_cloud/openapi/models/{cluster_id_capacityreservations_body.py → cluster_service_create_cluster_capacity_reservation_body.py} +42 -42
- lightning_sdk/lightning_cloud/openapi/models/{id_publications_body1.py → cluster_service_create_cluster_proxy_body.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/{cluster_id_usagerestrictions_body.py → cluster_service_create_cluster_usage_restriction_body.py} +22 -22
- lightning_sdk/lightning_cloud/openapi/models/{create_machine_request_represents_the_request_to_create_a_machine.py → cluster_service_create_machine_body.py} +62 -62
- lightning_sdk/lightning_cloud/openapi/models/{project_id_clusters_body.py → cluster_service_create_project_cluster_body.py} +14 -14
- lightning_sdk/lightning_cloud/openapi/models/{server_id_alerts_body.py → cluster_service_create_server_alert_body.py} +22 -22
- lightning_sdk/lightning_cloud/openapi/models/cluster_service_interrupt_server_body.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/{cluster_id_capacityblock_body.py → cluster_service_purchase_capacity_block_body.py} +30 -30
- lightning_sdk/lightning_cloud/openapi/models/{servers_server_id_body.py → cluster_service_server_check_in_body.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/cluster_service_sleep_server_body.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/{clusters_id_body.py → cluster_service_update_cluster_body.py} +18 -18
- lightning_sdk/lightning_cloud/openapi/models/{usagerestrictions_id_body.py → cluster_service_update_cluster_usage_restriction_body.py} +22 -22
- lightning_sdk/lightning_cloud/openapi/models/{clusters_id_body1.py → cluster_service_update_project_cluster_body.py} +14 -14
- lightning_sdk/lightning_cloud/openapi/models/{create.py → data_connection_service_create_data_connection_body.py} +82 -82
- lightning_sdk/lightning_cloud/openapi/models/{id_index_body2.py → data_connection_service_refresh_data_connection_index_body.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/{setup.py → data_connection_service_setup_data_connection_body.py} +14 -14
- lightning_sdk/lightning_cloud/openapi/models/{update1.py → data_connection_service_update_data_connection_body.py} +50 -50
- lightning_sdk/lightning_cloud/openapi/models/{validate.py → data_connection_service_validate_data_connection_body.py} +42 -42
- lightning_sdk/lightning_cloud/openapi/models/{project_id_datasets_body.py → dataset_service_create_dataset_body.py} +70 -70
- lightning_sdk/lightning_cloud/openapi/models/{datasets_id_body.py → dataset_service_update_dataset_body.py} +22 -22
- lightning_sdk/lightning_cloud/openapi/models/{id_engage_body.py → deployment_templates_service_engage_deployment_template_body.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/{deploymenttemplates_id_body.py → deployment_templates_service_update_deployment_template_body.py} +70 -70
- lightning_sdk/lightning_cloud/openapi/models/{project_id_endpoints_body.py → endpoint_service_create_endpoint_body.py} +30 -30
- lightning_sdk/lightning_cloud/openapi/models/{endpoints_id_body.py → endpoint_service_update_endpoint_body.py} +62 -62
- lightning_sdk/lightning_cloud/openapi/models/{experiment_name_variant_name_body.py → experiments_service_assign_variant_body.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/{incident_id_messages_body.py → incidents_service_create_incident_message_body.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/{incidents_id_body.py → incidents_service_update_incident_body.py} +34 -34
- lightning_sdk/lightning_cloud/openapi/models/{messages_message_id_body.py → incidents_service_update_incident_message_body.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/{deployment_id_alertingpolicies_body1.py → jobs_service_create_deployment_alerting_policy_body.py} +42 -42
- lightning_sdk/lightning_cloud/openapi/models/{create_deployment_request_defines_a_spec_for_the_job_that_allows_for_autoscaling_jobs.py → jobs_service_create_deployment_body.py} +70 -70
- lightning_sdk/lightning_cloud/openapi/models/{project_id_jobs_body.py → jobs_service_create_job_body.py} +18 -18
- lightning_sdk/lightning_cloud/openapi/models/{project_id_multimachinejobs_body.py → jobs_service_create_multi_machine_job_body.py} +26 -26
- lightning_sdk/lightning_cloud/openapi/models/{job_id_reportroutingtelemetry_body.py → jobs_service_report_deployment_routing_telemetry_body.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/{job_id_systemmetrics_body.py → jobs_service_report_job_system_metrics_body.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/{id_reportlogsactivity_body.py → jobs_service_report_logs_activity_body.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/{id_reportrestarttimings_body.py → jobs_service_report_restart_timings_body.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/jobs_service_restore_deployment_release_body.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/{alertingevents_id_body.py → jobs_service_update_deployment_alerting_event_body.py} +54 -54
- lightning_sdk/lightning_cloud/openapi/models/jobs_service_update_deployment_alerting_events_bulk_body.py +123 -0
- lightning_sdk/lightning_cloud/openapi/models/{deployment_id_alertingpolicies_body.py → jobs_service_update_deployment_alerting_policy_body.py} +46 -46
- lightning_sdk/lightning_cloud/openapi/models/{deployments_id_body.py → jobs_service_update_deployment_body.py} +128 -126
- lightning_sdk/lightning_cloud/openapi/models/{id_visibility_body1.py → jobs_service_update_deployment_visibility_body.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/{jobs_id_body1.py → jobs_service_update_job_body.py} +14 -14
- lightning_sdk/lightning_cloud/openapi/models/{id_index_body3.py → jobs_service_update_job_index_body.py} +18 -18
- lightning_sdk/lightning_cloud/openapi/models/{id_visibility_body.py → jobs_service_update_job_visibility_body.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/{multimachinejobs_id_body.py → jobs_service_update_multi_machine_job_body.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/{deployments_deployment_id_body.py → jobs_service_update_org_deployment_visibility_body.py} +14 -14
- lightning_sdk/lightning_cloud/openapi/models/{kubernetestemplates_id_body.py → k8_s_cluster_service_create_kubernetes_template_body.py} +22 -22
- lightning_sdk/lightning_cloud/openapi/models/{id_render_body.py → k8_s_cluster_service_render_kubernetes_template_body.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/{cluster_id_metrics_body.py → k8_s_cluster_service_report_k8_s_cluster_metrics_body.py} +42 -42
- lightning_sdk/lightning_cloud/openapi/models/{cluster_id_kubernetestemplates_body.py → k8_s_cluster_service_update_kubernetes_template_body.py} +22 -22
- lightning_sdk/lightning_cloud/openapi/models/{appinstances_id_body.py → lightningapp_instance_service_update_lightningapp_instance_body.py} +18 -18
- lightning_sdk/lightning_cloud/openapi/models/{id_release_body.py → lightningapp_instance_service_update_lightningapp_instance_release_body.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/{id_uploads_body.py → lightningapp_instance_service_upload_lightningapp_instance_artifact_body.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/{project_id_getapp_body.py → lightningapp_v2_service_create_lightningapp_from_gallery_body.py} +30 -30
- lightning_sdk/lightning_cloud/openapi/models/{app_id_works_body.py → lightningwork_service_batch_update_lightningworks_body.py} +14 -14
- lightning_sdk/lightning_cloud/openapi/models/{spec_lightningapp_instance_id_works_body.py → lightningwork_service_create_lightningwork_body.py} +24 -24
- lightning_sdk/lightning_cloud/openapi/models/lightningwork_service_create_lightningwork_body_spec.py +487 -0
- lightning_sdk/lightning_cloud/openapi/models/{works_id_body.py → lightningwork_service_update_lightningwork_body.py} +16 -16
- lightning_sdk/lightning_cloud/openapi/models/{upload_id_complete_body1.py → lit_dataset_service_complete_lit_dataset_multi_part_upload_body.py} +14 -14
- lightning_sdk/lightning_cloud/openapi/models/lit_dataset_service_complete_lit_dataset_upload_body.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/{project_id_models_body.py → lit_dataset_service_create_lit_dataset_body.py} +26 -26
- lightning_sdk/lightning_cloud/openapi/models/{version_uploads_body1.py → lit_dataset_service_create_lit_dataset_multi_part_upload_body.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/{dataset_id_versions_body.py → lit_dataset_service_create_lit_dataset_version_body.py} +16 -14
- lightning_sdk/lightning_cloud/openapi/models/{upload_id_parts_body.py → lit_dataset_service_get_lit_dataset_file_upload_urls_body.py} +14 -14
- lightning_sdk/lightning_cloud/openapi/models/{version_default_body.py → lit_dataset_service_set_lit_dataset_default_version_body.py} +14 -14
- lightning_sdk/lightning_cloud/openapi/models/{litdatasets_dataset_id_body.py → lit_dataset_service_update_lit_dataset_body.py} +14 -14
- lightning_sdk/lightning_cloud/openapi/models/{versions_version_body.py → lit_dataset_service_update_lit_dataset_version_body.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/{id_visibility_body2.py → lit_dataset_service_update_lit_dataset_visibility_body.py} +14 -14
- lightning_sdk/lightning_cloud/openapi/models/{loggermetrics_id_body.py → lit_logger_service_append_logger_metrics_body.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/{metrics_stream_id_loggerartifacts_body.py → lit_logger_service_create_logger_artifact_body.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/{metricsstream_create_body.py → lit_logger_service_create_metrics_stream_body.py} +62 -62
- lightning_sdk/lightning_cloud/openapi/models/{metricsstream_delete_body.py → lit_logger_service_delete_metrics_stream_body.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/{metricsstream_id_body.py → lit_logger_service_update_metrics_stream_body.py} +22 -22
- lightning_sdk/lightning_cloud/openapi/models/{model_id_visibility_body.py → lit_logger_service_update_metrics_stream_visibility_body.py} +14 -14
- lightning_sdk/lightning_cloud/openapi/models/{litloggermetrics_id_body.py → lit_logger_service_update_shared_metrics_stream_body.py} +18 -18
- lightning_sdk/lightning_cloud/openapi/models/{litpages_id_body.py → lit_page_service_update_lit_page_body.py} +42 -42
- lightning_sdk/lightning_cloud/openapi/models/{project_id_litregistry_body.py → lit_registry_service_create_lit_project_registry_body.py} +12 -12
- lightning_sdk/lightning_cloud/openapi/models/{litregistry_lit_repo_name_body.py → lit_registry_service_update_lit_repository_metadata_body.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/models_store_complete_model_upload_body.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/{upload_id_complete_body.py → models_store_complete_multi_part_upload_body.py} +14 -14
- lightning_sdk/lightning_cloud/openapi/models/{project_id_litdatasets_body.py → models_store_create_model_body.py} +26 -26
- lightning_sdk/lightning_cloud/openapi/models/{model_id_versions_body.py → models_store_create_model_version_body.py} +20 -18
- lightning_sdk/lightning_cloud/openapi/models/{version_uploads_body.py → models_store_create_multi_part_upload_body.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/{upload_id_parts_body1.py → models_store_get_model_file_upload_urls_body.py} +14 -14
- lightning_sdk/lightning_cloud/openapi/models/{version_default_body1.py → models_store_set_model_default_version_body.py} +14 -14
- lightning_sdk/lightning_cloud/openapi/models/{models_model_id_body1.py → models_store_update_model_body.py} +14 -14
- lightning_sdk/lightning_cloud/openapi/models/{versions_version_body1.py → models_store_update_model_version_body.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/{cloudspace_id_visibility_body.py → models_store_update_model_visibility_body.py} +14 -14
- lightning_sdk/lightning_cloud/openapi/models/{approveautojoindomain_domain_body.py → organizations_service_approve_auto_join_domain_body.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/organizations_service_auto_join_org_body.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/{org_id_memberships_body.py → organizations_service_create_org_membership_body.py} +22 -22
- lightning_sdk/lightning_cloud/openapi/models/{user_id_membershiprolebindings_body1.py → organizations_service_create_org_membership_role_binding_body.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/{org_id_roles_body.py → organizations_service_create_org_role_body.py} +18 -18
- lightning_sdk/lightning_cloud/openapi/models/{orgs_id_body.py → organizations_service_update_organization_body.py} +162 -162
- lightning_sdk/lightning_cloud/openapi/models/{credits_autoreplenish_body.py → organizations_service_update_organization_credits_auto_replenish_body.py} +18 -18
- lightning_sdk/lightning_cloud/openapi/models/{validateautojoindomain_domain_body.py → organizations_service_validate_auto_join_domain_body.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/{pipelinetemplates_id_body.py → pipeline_templates_service_update_pipeline_template_body.py} +42 -42
- lightning_sdk/lightning_cloud/openapi/models/{pipelines_id_body1.py → pipelines_service_create_child_pipeline_body.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/{project_id_pipelines_body.py → pipelines_service_create_pipeline_body.py} +30 -30
- lightning_sdk/lightning_cloud/openapi/models/{pipelines_id_body.py → pipelines_service_update_pipeline_body.py} +74 -74
- lightning_sdk/lightning_cloud/openapi/models/{license_key_validate_body.py → product_license_service_validate_license_body.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/{profiler_captures_body.py → profiler_service_create_profiler_capture_body.py} +34 -34
- lightning_sdk/lightning_cloud/openapi/models/{captures_id_body.py → profiler_service_update_profiler_capture_body.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/{profiler_enabled_body.py → profiler_service_update_profiler_enabled_body.py} +14 -14
- lightning_sdk/lightning_cloud/openapi/models/{project_id_projectclustersbindings_body.py → projects_service_create_project_cluster_binding_body.py} +14 -14
- lightning_sdk/lightning_cloud/openapi/models/{project_id_memberships_body.py → projects_service_create_project_membership_body.py} +22 -22
- lightning_sdk/lightning_cloud/openapi/models/{user_id_membershiprolebindings_body.py → projects_service_create_project_membership_role_binding_body.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/{projects_project_id_body.py → projects_service_create_project_role_body.py} +18 -18
- lightning_sdk/lightning_cloud/openapi/models/{project_id_invite_body.py → projects_service_invite_project_membership_body.py} +18 -18
- lightning_sdk/lightning_cloud/openapi/models/{projects_id_body.py → projects_service_update_project_body.py} +110 -110
- lightning_sdk/lightning_cloud/openapi/models/{project_tab_management_messages.py → projects_service_update_project_tab_order_body.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/protobuf_any.py +7 -58
- lightning_sdk/lightning_cloud/openapi/models/quest_service_complete_quest_body.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/quest_service_start_quest_body.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/{project_id_schedules_body.py → schedules_service_create_schedule_body.py} +42 -42
- lightning_sdk/lightning_cloud/openapi/models/schedules_service_create_schedule_run_body.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/{schedules_id_body.py → schedules_service_update_schedule_body.py} +70 -70
- lightning_sdk/lightning_cloud/openapi/models/{project_id_secrets_body.py → secret_service_create_secret_body.py} +18 -18
- lightning_sdk/lightning_cloud/openapi/models/{secrets_id_body1.py → secret_service_update_secret_body.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/{secrets_id_body.py → secret_service_update_user_secret_body.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/{cluster_id_slurmusers_body.py → slurm_jobs_user_service_create_slurm_cluster_user_body.py} +22 -22
- lightning_sdk/lightning_cloud/openapi/models/{slurm_jobs_body.py → slurm_jobs_user_service_create_user_slurm_job_body.py} +54 -54
- lightning_sdk/lightning_cloud/openapi/models/{jobs_id_body2.py → slurm_jobs_user_service_update_user_slurm_job_body.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/{id_action_body.py → slurm_jobs_user_service_user_slurm_job_action_body.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/{project_id_snowflake_body.py → snowflake_service_create_snowflake_connection_body.py} +10 -10
- lightning_sdk/lightning_cloud/openapi/models/{query_query_id_body.py → snowflake_service_execute_snowflake_query_body.py} +18 -18
- lightning_sdk/lightning_cloud/openapi/models/{snowflake_export_body.py → snowflake_service_export_snowflake_query_body.py} +38 -38
- lightning_sdk/lightning_cloud/openapi/models/{snowflake_query_body.py → snowflake_service_update_snowflake_query_body.py} +18 -18
- lightning_sdk/lightning_cloud/openapi/models/storage_service_abort_storage_transfer_body.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/{storage_complete_body.py → storage_service_complete_upload_project_artifact_body.py} +30 -30
- lightning_sdk/lightning_cloud/openapi/models/{project_id_storagetransfers_body.py → storage_service_create_storage_transfer_body.py} +18 -18
- lightning_sdk/lightning_cloud/openapi/models/storage_service_pause_storage_transfer_body.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/storage_service_resume_storage_transfer_body.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/{project_id_storage_body.py → storage_service_upload_project_artifact_body.py} +22 -22
- lightning_sdk/lightning_cloud/openapi/models/{uploads_upload_id_body1.py → storage_service_upload_project_artifact_parts_body.py} +22 -22
- lightning_sdk/lightning_cloud/openapi/models/{uploads_upload_id_body.py → storage_service_upload_temporary_artifact_parts_body.py} +14 -14
- lightning_sdk/lightning_cloud/openapi/models/{storagetransfers_validate_body.py → storage_service_validate_storage_transfer_body.py} +14 -14
- lightning_sdk/lightning_cloud/openapi/models/{studioapp_jobs_body.py → studio_jobs_service_create_studio_job_body.py} +34 -34
- lightning_sdk/lightning_cloud/openapi/models/{jobs_id_body3.py → studio_jobs_service_update_studio_job_body.py} +14 -14
- lightning_sdk/lightning_cloud/openapi/models/{user_id_affiliatelinks_body.py → user_service_create_affiliate_link_body.py} +30 -30
- lightning_sdk/lightning_cloud/openapi/models/{affiliatelinks_id_body.py → user_service_update_affiliate_link_body.py} +14 -14
- lightning_sdk/lightning_cloud/openapi/models/{credits_autoreplenish_body1.py → user_service_update_user_credits_auto_replenish_body.py} +18 -18
- lightning_sdk/lightning_cloud/openapi/models/user_service_upload_settings_body.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_autoscaling_target_metric.py +2 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_aws_data_connection.py +2 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_billing_subscription.py +2 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_conversation.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_conversation_response_chunk.py +2 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_create_checkout_session_request.py +4 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_data_connection.py +6 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment.py +2 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_alerting_policy_type.py +2 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_deployment_event.py +2 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_experiment.py +2 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_external_cluster_spec.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_generic_job.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_generic_job_spec.py +253 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_get_user_response.py +2 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_group_pod_metrics.py +6 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_health_check_http_get.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_incident.py +2 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_job.py +6 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_job_health_check_config.py +55 -3
- lightning_sdk/lightning_cloud/openapi/models/v1_job_spec.py +59 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_kubernetes_direct_v1.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_lit_dataset_version_archive.py +2 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_machine.py +79 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_machine_direct_v1.py +27 -1
- lightning_sdk/lightning_cloud/openapi/models/v1_message_action.py +2 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_model_version_archive.py +2 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_multi_machine_job_event.py +2 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_pipeline_step_status.py +2 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_server_alert_severity.py +1 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_slurm_v1.py +4 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_slurm_v1_status.py +2 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_update_deployment_alerting_events_bulk_response.py +97 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_update_user_request.py +2 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_usage_report.py +6 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_user_features.py +183 -79
- lightning_sdk/lightning_cloud/openapi/models/v1_user_requested_compute_config.py +2 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_user_requested_flow_compute_config.py +2 -0
- lightning_sdk/lightning_cloud/openapi/models/v1_volume.py +53 -1
- lightning_sdk/lightning_cloud/openapi/models/{volumes_id_body.py → volume_service_update_volume_body.py} +10 -10
- lightning_sdk/lightning_cloud/utils/data_connection.py +14 -8
- lightning_sdk/lightning_cloud/utils/dataset.py +3 -5
- lightning_sdk/plugin.py +2 -2
- lightning_sdk/teamspace.py +0 -1
- {lightning_sdk-2025.12.5.dist-info → lightning_sdk-2025.12.9.dist-info}/METADATA +1 -1
- {lightning_sdk-2025.12.5.dist-info → lightning_sdk-2025.12.9.dist-info}/RECORD +309 -286
- {lightning_sdk-2025.12.5.dist-info → lightning_sdk-2025.12.9.dist-info}/LICENSE +0 -0
- {lightning_sdk-2025.12.5.dist-info → lightning_sdk-2025.12.9.dist-info}/WHEEL +0 -0
- {lightning_sdk-2025.12.5.dist-info → lightning_sdk-2025.12.9.dist-info}/entry_points.txt +0 -0
- {lightning_sdk-2025.12.5.dist-info → lightning_sdk-2025.12.9.dist-info}/top_level.txt +0 -0
|
@@ -433,7 +433,7 @@ class CloudSpaceServiceApi(object):
|
|
|
433
433
|
_request_timeout=params.get('_request_timeout'),
|
|
434
434
|
collection_formats=collection_formats)
|
|
435
435
|
|
|
436
|
-
def cloud_space_service_create_cloud_space(self, body: '
|
|
436
|
+
def cloud_space_service_create_cloud_space(self, body: 'CloudSpaceServiceCreateCloudSpaceBody', project_id: 'str', **kwargs) -> 'V1CloudSpace': # noqa: E501
|
|
437
437
|
"""cloud_space_service_create_cloud_space # noqa: E501
|
|
438
438
|
|
|
439
439
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -442,7 +442,7 @@ class CloudSpaceServiceApi(object):
|
|
|
442
442
|
>>> result = thread.get()
|
|
443
443
|
|
|
444
444
|
:param async_req bool
|
|
445
|
-
:param
|
|
445
|
+
:param CloudSpaceServiceCreateCloudSpaceBody body: (required)
|
|
446
446
|
:param str project_id: (required)
|
|
447
447
|
:return: V1CloudSpace
|
|
448
448
|
If the method is called asynchronously,
|
|
@@ -455,7 +455,7 @@ class CloudSpaceServiceApi(object):
|
|
|
455
455
|
(data) = self.cloud_space_service_create_cloud_space_with_http_info(body, project_id, **kwargs) # noqa: E501
|
|
456
456
|
return data
|
|
457
457
|
|
|
458
|
-
def cloud_space_service_create_cloud_space_with_http_info(self, body: '
|
|
458
|
+
def cloud_space_service_create_cloud_space_with_http_info(self, body: 'CloudSpaceServiceCreateCloudSpaceBody', project_id: 'str', **kwargs) -> 'V1CloudSpace': # noqa: E501
|
|
459
459
|
"""cloud_space_service_create_cloud_space # noqa: E501
|
|
460
460
|
|
|
461
461
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -464,7 +464,7 @@ class CloudSpaceServiceApi(object):
|
|
|
464
464
|
>>> result = thread.get()
|
|
465
465
|
|
|
466
466
|
:param async_req bool
|
|
467
|
-
:param
|
|
467
|
+
:param CloudSpaceServiceCreateCloudSpaceBody body: (required)
|
|
468
468
|
:param str project_id: (required)
|
|
469
469
|
:return: V1CloudSpace
|
|
470
470
|
If the method is called asynchronously,
|
|
@@ -635,7 +635,7 @@ class CloudSpaceServiceApi(object):
|
|
|
635
635
|
_request_timeout=params.get('_request_timeout'),
|
|
636
636
|
collection_formats=collection_formats)
|
|
637
637
|
|
|
638
|
-
def cloud_space_service_create_cloud_space_app_instance(self, body: '
|
|
638
|
+
def cloud_space_service_create_cloud_space_app_instance(self, body: 'CloudSpaceServiceCreateCloudSpaceAppInstanceBody', project_id: 'str', cloudspace_id: 'str', id: 'str', **kwargs) -> 'V1CreateCloudSpaceAppInstanceResponse': # noqa: E501
|
|
639
639
|
"""cloud_space_service_create_cloud_space_app_instance # noqa: E501
|
|
640
640
|
|
|
641
641
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -644,10 +644,10 @@ class CloudSpaceServiceApi(object):
|
|
|
644
644
|
>>> result = thread.get()
|
|
645
645
|
|
|
646
646
|
:param async_req bool
|
|
647
|
-
:param
|
|
648
|
-
:param str project_id: (required)
|
|
649
|
-
:param str cloudspace_id: (required)
|
|
650
|
-
:param str id: (required)
|
|
647
|
+
:param CloudSpaceServiceCreateCloudSpaceAppInstanceBody body: (required)
|
|
648
|
+
:param str project_id: the project ID the cloudspace lives in. (required)
|
|
649
|
+
:param str cloudspace_id: the cloudspace ID the cloudspace app should be run in. (required)
|
|
650
|
+
:param str id: the ID of the cloudspace app to run. (required)
|
|
651
651
|
:return: V1CreateCloudSpaceAppInstanceResponse
|
|
652
652
|
If the method is called asynchronously,
|
|
653
653
|
returns the request thread.
|
|
@@ -659,7 +659,7 @@ class CloudSpaceServiceApi(object):
|
|
|
659
659
|
(data) = self.cloud_space_service_create_cloud_space_app_instance_with_http_info(body, project_id, cloudspace_id, id, **kwargs) # noqa: E501
|
|
660
660
|
return data
|
|
661
661
|
|
|
662
|
-
def cloud_space_service_create_cloud_space_app_instance_with_http_info(self, body: '
|
|
662
|
+
def cloud_space_service_create_cloud_space_app_instance_with_http_info(self, body: 'CloudSpaceServiceCreateCloudSpaceAppInstanceBody', project_id: 'str', cloudspace_id: 'str', id: 'str', **kwargs) -> 'V1CreateCloudSpaceAppInstanceResponse': # noqa: E501
|
|
663
663
|
"""cloud_space_service_create_cloud_space_app_instance # noqa: E501
|
|
664
664
|
|
|
665
665
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -668,10 +668,10 @@ class CloudSpaceServiceApi(object):
|
|
|
668
668
|
>>> result = thread.get()
|
|
669
669
|
|
|
670
670
|
:param async_req bool
|
|
671
|
-
:param
|
|
672
|
-
:param str project_id: (required)
|
|
673
|
-
:param str cloudspace_id: (required)
|
|
674
|
-
:param str id: (required)
|
|
671
|
+
:param CloudSpaceServiceCreateCloudSpaceAppInstanceBody body: (required)
|
|
672
|
+
:param str project_id: the project ID the cloudspace lives in. (required)
|
|
673
|
+
:param str cloudspace_id: the cloudspace ID the cloudspace app should be run in. (required)
|
|
674
|
+
:param str id: the ID of the cloudspace app to run. (required)
|
|
675
675
|
:return: V1CreateCloudSpaceAppInstanceResponse
|
|
676
676
|
If the method is called asynchronously,
|
|
677
677
|
returns the request thread.
|
|
@@ -756,7 +756,7 @@ class CloudSpaceServiceApi(object):
|
|
|
756
756
|
_request_timeout=params.get('_request_timeout'),
|
|
757
757
|
collection_formats=collection_formats)
|
|
758
758
|
|
|
759
|
-
def cloud_space_service_create_cloud_space_instance_metric(self, body: '
|
|
759
|
+
def cloud_space_service_create_cloud_space_instance_metric(self, body: 'CloudSpaceServiceCreateCloudSpaceInstanceMetricBody', project_id: 'str', cloudspace_id: 'str', **kwargs) -> 'V1CreateCloudSpaceInstanceMetricResponse': # noqa: E501
|
|
760
760
|
"""Endpoint for collecting Studio startup metrics # noqa: E501
|
|
761
761
|
|
|
762
762
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -765,7 +765,7 @@ class CloudSpaceServiceApi(object):
|
|
|
765
765
|
>>> result = thread.get()
|
|
766
766
|
|
|
767
767
|
:param async_req bool
|
|
768
|
-
:param
|
|
768
|
+
:param CloudSpaceServiceCreateCloudSpaceInstanceMetricBody body: (required)
|
|
769
769
|
:param str project_id: (required)
|
|
770
770
|
:param str cloudspace_id: (required)
|
|
771
771
|
:return: V1CreateCloudSpaceInstanceMetricResponse
|
|
@@ -779,7 +779,7 @@ class CloudSpaceServiceApi(object):
|
|
|
779
779
|
(data) = self.cloud_space_service_create_cloud_space_instance_metric_with_http_info(body, project_id, cloudspace_id, **kwargs) # noqa: E501
|
|
780
780
|
return data
|
|
781
781
|
|
|
782
|
-
def cloud_space_service_create_cloud_space_instance_metric_with_http_info(self, body: '
|
|
782
|
+
def cloud_space_service_create_cloud_space_instance_metric_with_http_info(self, body: 'CloudSpaceServiceCreateCloudSpaceInstanceMetricBody', project_id: 'str', cloudspace_id: 'str', **kwargs) -> 'V1CreateCloudSpaceInstanceMetricResponse': # noqa: E501
|
|
783
783
|
"""Endpoint for collecting Studio startup metrics # noqa: E501
|
|
784
784
|
|
|
785
785
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -788,7 +788,7 @@ class CloudSpaceServiceApi(object):
|
|
|
788
788
|
>>> result = thread.get()
|
|
789
789
|
|
|
790
790
|
:param async_req bool
|
|
791
|
-
:param
|
|
791
|
+
:param CloudSpaceServiceCreateCloudSpaceInstanceMetricBody body: (required)
|
|
792
792
|
:param str project_id: (required)
|
|
793
793
|
:param str cloudspace_id: (required)
|
|
794
794
|
:return: V1CreateCloudSpaceInstanceMetricResponse
|
|
@@ -970,7 +970,7 @@ class CloudSpaceServiceApi(object):
|
|
|
970
970
|
_request_timeout=params.get('_request_timeout'),
|
|
971
971
|
collection_formats=collection_formats)
|
|
972
972
|
|
|
973
|
-
def cloud_space_service_create_cloud_space_version(self, body: '
|
|
973
|
+
def cloud_space_service_create_cloud_space_version(self, body: 'CloudSpaceServiceCreateCloudSpaceVersionBody', project_id: 'str', cloud_space_id: 'str', **kwargs) -> 'V1CloudSpaceVersion': # noqa: E501
|
|
974
974
|
"""cloud_space_service_create_cloud_space_version # noqa: E501
|
|
975
975
|
|
|
976
976
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -979,7 +979,7 @@ class CloudSpaceServiceApi(object):
|
|
|
979
979
|
>>> result = thread.get()
|
|
980
980
|
|
|
981
981
|
:param async_req bool
|
|
982
|
-
:param
|
|
982
|
+
:param CloudSpaceServiceCreateCloudSpaceVersionBody body: (required)
|
|
983
983
|
:param str project_id: (required)
|
|
984
984
|
:param str cloud_space_id: (required)
|
|
985
985
|
:return: V1CloudSpaceVersion
|
|
@@ -993,7 +993,7 @@ class CloudSpaceServiceApi(object):
|
|
|
993
993
|
(data) = self.cloud_space_service_create_cloud_space_version_with_http_info(body, project_id, cloud_space_id, **kwargs) # noqa: E501
|
|
994
994
|
return data
|
|
995
995
|
|
|
996
|
-
def cloud_space_service_create_cloud_space_version_with_http_info(self, body: '
|
|
996
|
+
def cloud_space_service_create_cloud_space_version_with_http_info(self, body: 'CloudSpaceServiceCreateCloudSpaceVersionBody', project_id: 'str', cloud_space_id: 'str', **kwargs) -> 'V1CloudSpaceVersion': # noqa: E501
|
|
997
997
|
"""cloud_space_service_create_cloud_space_version # noqa: E501
|
|
998
998
|
|
|
999
999
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -1002,7 +1002,7 @@ class CloudSpaceServiceApi(object):
|
|
|
1002
1002
|
>>> result = thread.get()
|
|
1003
1003
|
|
|
1004
1004
|
:param async_req bool
|
|
1005
|
-
:param
|
|
1005
|
+
:param CloudSpaceServiceCreateCloudSpaceVersionBody body: (required)
|
|
1006
1006
|
:param str project_id: (required)
|
|
1007
1007
|
:param str cloud_space_id: (required)
|
|
1008
1008
|
:return: V1CloudSpaceVersion
|
|
@@ -1083,7 +1083,7 @@ class CloudSpaceServiceApi(object):
|
|
|
1083
1083
|
_request_timeout=params.get('_request_timeout'),
|
|
1084
1084
|
collection_formats=collection_formats)
|
|
1085
1085
|
|
|
1086
|
-
def cloud_space_service_create_cloud_space_version_publication(self, body: '
|
|
1086
|
+
def cloud_space_service_create_cloud_space_version_publication(self, body: 'CloudSpaceServiceCreateCloudSpaceVersionPublicationBody', project_id: 'str', cloud_space_id: 'str', **kwargs) -> 'V1CloudSpaceVersionPublication': # noqa: E501
|
|
1087
1087
|
"""cloud_space_service_create_cloud_space_version_publication # noqa: E501
|
|
1088
1088
|
|
|
1089
1089
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -1092,7 +1092,7 @@ class CloudSpaceServiceApi(object):
|
|
|
1092
1092
|
>>> result = thread.get()
|
|
1093
1093
|
|
|
1094
1094
|
:param async_req bool
|
|
1095
|
-
:param
|
|
1095
|
+
:param CloudSpaceServiceCreateCloudSpaceVersionPublicationBody body: (required)
|
|
1096
1096
|
:param str project_id: (required)
|
|
1097
1097
|
:param str cloud_space_id: (required)
|
|
1098
1098
|
:return: V1CloudSpaceVersionPublication
|
|
@@ -1106,7 +1106,7 @@ class CloudSpaceServiceApi(object):
|
|
|
1106
1106
|
(data) = self.cloud_space_service_create_cloud_space_version_publication_with_http_info(body, project_id, cloud_space_id, **kwargs) # noqa: E501
|
|
1107
1107
|
return data
|
|
1108
1108
|
|
|
1109
|
-
def cloud_space_service_create_cloud_space_version_publication_with_http_info(self, body: '
|
|
1109
|
+
def cloud_space_service_create_cloud_space_version_publication_with_http_info(self, body: 'CloudSpaceServiceCreateCloudSpaceVersionPublicationBody', project_id: 'str', cloud_space_id: 'str', **kwargs) -> 'V1CloudSpaceVersionPublication': # noqa: E501
|
|
1110
1110
|
"""cloud_space_service_create_cloud_space_version_publication # noqa: E501
|
|
1111
1111
|
|
|
1112
1112
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -1115,7 +1115,7 @@ class CloudSpaceServiceApi(object):
|
|
|
1115
1115
|
>>> result = thread.get()
|
|
1116
1116
|
|
|
1117
1117
|
:param async_req bool
|
|
1118
|
-
:param
|
|
1118
|
+
:param CloudSpaceServiceCreateCloudSpaceVersionPublicationBody body: (required)
|
|
1119
1119
|
:param str project_id: (required)
|
|
1120
1120
|
:param str cloud_space_id: (required)
|
|
1121
1121
|
:return: V1CloudSpaceVersionPublication
|
|
@@ -1196,7 +1196,7 @@ class CloudSpaceServiceApi(object):
|
|
|
1196
1196
|
_request_timeout=params.get('_request_timeout'),
|
|
1197
1197
|
collection_formats=collection_formats)
|
|
1198
1198
|
|
|
1199
|
-
def cloud_space_service_create_lightning_run(self, body: '
|
|
1199
|
+
def cloud_space_service_create_lightning_run(self, body: 'CloudSpaceServiceCreateLightningRunBody', project_id: 'str', cloudspace_id: 'str', **kwargs) -> 'V1LightningRun': # noqa: E501
|
|
1200
1200
|
"""cloud_space_service_create_lightning_run # noqa: E501
|
|
1201
1201
|
|
|
1202
1202
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -1205,7 +1205,7 @@ class CloudSpaceServiceApi(object):
|
|
|
1205
1205
|
>>> result = thread.get()
|
|
1206
1206
|
|
|
1207
1207
|
:param async_req bool
|
|
1208
|
-
:param
|
|
1208
|
+
:param CloudSpaceServiceCreateLightningRunBody body: (required)
|
|
1209
1209
|
:param str project_id: (required)
|
|
1210
1210
|
:param str cloudspace_id: (required)
|
|
1211
1211
|
:return: V1LightningRun
|
|
@@ -1219,7 +1219,7 @@ class CloudSpaceServiceApi(object):
|
|
|
1219
1219
|
(data) = self.cloud_space_service_create_lightning_run_with_http_info(body, project_id, cloudspace_id, **kwargs) # noqa: E501
|
|
1220
1220
|
return data
|
|
1221
1221
|
|
|
1222
|
-
def cloud_space_service_create_lightning_run_with_http_info(self, body: '
|
|
1222
|
+
def cloud_space_service_create_lightning_run_with_http_info(self, body: 'CloudSpaceServiceCreateLightningRunBody', project_id: 'str', cloudspace_id: 'str', **kwargs) -> 'V1LightningRun': # noqa: E501
|
|
1223
1223
|
"""cloud_space_service_create_lightning_run # noqa: E501
|
|
1224
1224
|
|
|
1225
1225
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -1228,7 +1228,7 @@ class CloudSpaceServiceApi(object):
|
|
|
1228
1228
|
>>> result = thread.get()
|
|
1229
1229
|
|
|
1230
1230
|
:param async_req bool
|
|
1231
|
-
:param
|
|
1231
|
+
:param CloudSpaceServiceCreateLightningRunBody body: (required)
|
|
1232
1232
|
:param str project_id: (required)
|
|
1233
1233
|
:param str cloudspace_id: (required)
|
|
1234
1234
|
:return: V1LightningRun
|
|
@@ -1309,7 +1309,7 @@ class CloudSpaceServiceApi(object):
|
|
|
1309
1309
|
_request_timeout=params.get('_request_timeout'),
|
|
1310
1310
|
collection_formats=collection_formats)
|
|
1311
1311
|
|
|
1312
|
-
def cloud_space_service_create_lightning_run_instance(self, body: '
|
|
1312
|
+
def cloud_space_service_create_lightning_run_instance(self, body: 'CloudSpaceServiceCreateLightningRunInstanceBody', project_id: 'str', cloudspace_id: 'str', id: 'str', **kwargs) -> 'Externalv1LightningappInstance': # noqa: E501
|
|
1313
1313
|
"""cloud_space_service_create_lightning_run_instance # noqa: E501
|
|
1314
1314
|
|
|
1315
1315
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -1318,7 +1318,7 @@ class CloudSpaceServiceApi(object):
|
|
|
1318
1318
|
>>> result = thread.get()
|
|
1319
1319
|
|
|
1320
1320
|
:param async_req bool
|
|
1321
|
-
:param
|
|
1321
|
+
:param CloudSpaceServiceCreateLightningRunInstanceBody body: (required)
|
|
1322
1322
|
:param str project_id: (required)
|
|
1323
1323
|
:param str cloudspace_id: (required)
|
|
1324
1324
|
:param str id: (required)
|
|
@@ -1333,7 +1333,7 @@ class CloudSpaceServiceApi(object):
|
|
|
1333
1333
|
(data) = self.cloud_space_service_create_lightning_run_instance_with_http_info(body, project_id, cloudspace_id, id, **kwargs) # noqa: E501
|
|
1334
1334
|
return data
|
|
1335
1335
|
|
|
1336
|
-
def cloud_space_service_create_lightning_run_instance_with_http_info(self, body: '
|
|
1336
|
+
def cloud_space_service_create_lightning_run_instance_with_http_info(self, body: 'CloudSpaceServiceCreateLightningRunInstanceBody', project_id: 'str', cloudspace_id: 'str', id: 'str', **kwargs) -> 'Externalv1LightningappInstance': # noqa: E501
|
|
1337
1337
|
"""cloud_space_service_create_lightning_run_instance # noqa: E501
|
|
1338
1338
|
|
|
1339
1339
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -1342,7 +1342,7 @@ class CloudSpaceServiceApi(object):
|
|
|
1342
1342
|
>>> result = thread.get()
|
|
1343
1343
|
|
|
1344
1344
|
:param async_req bool
|
|
1345
|
-
:param
|
|
1345
|
+
:param CloudSpaceServiceCreateLightningRunInstanceBody body: (required)
|
|
1346
1346
|
:param str project_id: (required)
|
|
1347
1347
|
:param str cloudspace_id: (required)
|
|
1348
1348
|
:param str id: (required)
|
|
@@ -2161,7 +2161,7 @@ class CloudSpaceServiceApi(object):
|
|
|
2161
2161
|
_request_timeout=params.get('_request_timeout'),
|
|
2162
2162
|
collection_formats=collection_formats)
|
|
2163
2163
|
|
|
2164
|
-
def cloud_space_service_engage_cloud_space(self, body: '
|
|
2164
|
+
def cloud_space_service_engage_cloud_space(self, body: 'CloudSpaceServiceEngageCloudSpaceBody', project_id: 'str', id: 'str', **kwargs) -> 'V1CloudSpaceEngagementResponse': # noqa: E501
|
|
2165
2165
|
"""cloud_space_service_engage_cloud_space # noqa: E501
|
|
2166
2166
|
|
|
2167
2167
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -2170,7 +2170,7 @@ class CloudSpaceServiceApi(object):
|
|
|
2170
2170
|
>>> result = thread.get()
|
|
2171
2171
|
|
|
2172
2172
|
:param async_req bool
|
|
2173
|
-
:param
|
|
2173
|
+
:param CloudSpaceServiceEngageCloudSpaceBody body: (required)
|
|
2174
2174
|
:param str project_id: (required)
|
|
2175
2175
|
:param str id: (required)
|
|
2176
2176
|
:return: V1CloudSpaceEngagementResponse
|
|
@@ -2184,7 +2184,7 @@ class CloudSpaceServiceApi(object):
|
|
|
2184
2184
|
(data) = self.cloud_space_service_engage_cloud_space_with_http_info(body, project_id, id, **kwargs) # noqa: E501
|
|
2185
2185
|
return data
|
|
2186
2186
|
|
|
2187
|
-
def cloud_space_service_engage_cloud_space_with_http_info(self, body: '
|
|
2187
|
+
def cloud_space_service_engage_cloud_space_with_http_info(self, body: 'CloudSpaceServiceEngageCloudSpaceBody', project_id: 'str', id: 'str', **kwargs) -> 'V1CloudSpaceEngagementResponse': # noqa: E501
|
|
2188
2188
|
"""cloud_space_service_engage_cloud_space # noqa: E501
|
|
2189
2189
|
|
|
2190
2190
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -2193,7 +2193,7 @@ class CloudSpaceServiceApi(object):
|
|
|
2193
2193
|
>>> result = thread.get()
|
|
2194
2194
|
|
|
2195
2195
|
:param async_req bool
|
|
2196
|
-
:param
|
|
2196
|
+
:param CloudSpaceServiceEngageCloudSpaceBody body: (required)
|
|
2197
2197
|
:param str project_id: (required)
|
|
2198
2198
|
:param str id: (required)
|
|
2199
2199
|
:return: V1CloudSpaceEngagementResponse
|
|
@@ -2274,7 +2274,7 @@ class CloudSpaceServiceApi(object):
|
|
|
2274
2274
|
_request_timeout=params.get('_request_timeout'),
|
|
2275
2275
|
collection_formats=collection_formats)
|
|
2276
2276
|
|
|
2277
|
-
def cloud_space_service_execute_command_in_cloud_space(self, body: '
|
|
2277
|
+
def cloud_space_service_execute_command_in_cloud_space(self, body: 'CloudSpaceServiceExecuteCommandInCloudSpaceBody', project_id: 'str', id: 'str', **kwargs) -> 'V1ExecuteCloudSpaceCommandResponse': # noqa: E501
|
|
2278
2278
|
"""cloud_space_service_execute_command_in_cloud_space # noqa: E501
|
|
2279
2279
|
|
|
2280
2280
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -2283,7 +2283,7 @@ class CloudSpaceServiceApi(object):
|
|
|
2283
2283
|
>>> result = thread.get()
|
|
2284
2284
|
|
|
2285
2285
|
:param async_req bool
|
|
2286
|
-
:param
|
|
2286
|
+
:param CloudSpaceServiceExecuteCommandInCloudSpaceBody body: (required)
|
|
2287
2287
|
:param str project_id: (required)
|
|
2288
2288
|
:param str id: (required)
|
|
2289
2289
|
:return: V1ExecuteCloudSpaceCommandResponse
|
|
@@ -2297,7 +2297,7 @@ class CloudSpaceServiceApi(object):
|
|
|
2297
2297
|
(data) = self.cloud_space_service_execute_command_in_cloud_space_with_http_info(body, project_id, id, **kwargs) # noqa: E501
|
|
2298
2298
|
return data
|
|
2299
2299
|
|
|
2300
|
-
def cloud_space_service_execute_command_in_cloud_space_with_http_info(self, body: '
|
|
2300
|
+
def cloud_space_service_execute_command_in_cloud_space_with_http_info(self, body: 'CloudSpaceServiceExecuteCommandInCloudSpaceBody', project_id: 'str', id: 'str', **kwargs) -> 'V1ExecuteCloudSpaceCommandResponse': # noqa: E501
|
|
2301
2301
|
"""cloud_space_service_execute_command_in_cloud_space # noqa: E501
|
|
2302
2302
|
|
|
2303
2303
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -2306,7 +2306,7 @@ class CloudSpaceServiceApi(object):
|
|
|
2306
2306
|
>>> result = thread.get()
|
|
2307
2307
|
|
|
2308
2308
|
:param async_req bool
|
|
2309
|
-
:param
|
|
2309
|
+
:param CloudSpaceServiceExecuteCommandInCloudSpaceBody body: (required)
|
|
2310
2310
|
:param str project_id: (required)
|
|
2311
2311
|
:param str id: (required)
|
|
2312
2312
|
:return: V1ExecuteCloudSpaceCommandResponse
|
|
@@ -2387,7 +2387,7 @@ class CloudSpaceServiceApi(object):
|
|
|
2387
2387
|
_request_timeout=params.get('_request_timeout'),
|
|
2388
2388
|
collection_formats=collection_formats)
|
|
2389
2389
|
|
|
2390
|
-
def cloud_space_service_execute_in_cloud_space_session(self, body: '
|
|
2390
|
+
def cloud_space_service_execute_in_cloud_space_session(self, body: 'CloudSpaceServiceExecuteInCloudSpaceSessionBody', project_id: 'str', cloudspace_id: 'str', id: 'str', **kwargs) -> 'V1ExecuteInCloudSpaceSessionResponse': # noqa: E501
|
|
2391
2391
|
"""cloud_space_service_execute_in_cloud_space_session # noqa: E501
|
|
2392
2392
|
|
|
2393
2393
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -2396,7 +2396,7 @@ class CloudSpaceServiceApi(object):
|
|
|
2396
2396
|
>>> result = thread.get()
|
|
2397
2397
|
|
|
2398
2398
|
:param async_req bool
|
|
2399
|
-
:param
|
|
2399
|
+
:param CloudSpaceServiceExecuteInCloudSpaceSessionBody body: (required)
|
|
2400
2400
|
:param str project_id: (required)
|
|
2401
2401
|
:param str cloudspace_id: (required)
|
|
2402
2402
|
:param str id: (required)
|
|
@@ -2411,7 +2411,7 @@ class CloudSpaceServiceApi(object):
|
|
|
2411
2411
|
(data) = self.cloud_space_service_execute_in_cloud_space_session_with_http_info(body, project_id, cloudspace_id, id, **kwargs) # noqa: E501
|
|
2412
2412
|
return data
|
|
2413
2413
|
|
|
2414
|
-
def cloud_space_service_execute_in_cloud_space_session_with_http_info(self, body: '
|
|
2414
|
+
def cloud_space_service_execute_in_cloud_space_session_with_http_info(self, body: 'CloudSpaceServiceExecuteInCloudSpaceSessionBody', project_id: 'str', cloudspace_id: 'str', id: 'str', **kwargs) -> 'V1ExecuteInCloudSpaceSessionResponse': # noqa: E501
|
|
2415
2415
|
"""cloud_space_service_execute_in_cloud_space_session # noqa: E501
|
|
2416
2416
|
|
|
2417
2417
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -2420,7 +2420,7 @@ class CloudSpaceServiceApi(object):
|
|
|
2420
2420
|
>>> result = thread.get()
|
|
2421
2421
|
|
|
2422
2422
|
:param async_req bool
|
|
2423
|
-
:param
|
|
2423
|
+
:param CloudSpaceServiceExecuteInCloudSpaceSessionBody body: (required)
|
|
2424
2424
|
:param str project_id: (required)
|
|
2425
2425
|
:param str cloudspace_id: (required)
|
|
2426
2426
|
:param str id: (required)
|
|
@@ -2520,6 +2520,9 @@ class CloudSpaceServiceApi(object):
|
|
|
2520
2520
|
:param str project_id: (required)
|
|
2521
2521
|
:param str id: (required)
|
|
2522
2522
|
:param str plugin_id: (required)
|
|
2523
|
+
:param str state:
|
|
2524
|
+
:param str error:
|
|
2525
|
+
:param str additional_info:
|
|
2523
2526
|
:return: V1Plugin
|
|
2524
2527
|
If the method is called asynchronously,
|
|
2525
2528
|
returns the request thread.
|
|
@@ -2543,12 +2546,15 @@ class CloudSpaceServiceApi(object):
|
|
|
2543
2546
|
:param str project_id: (required)
|
|
2544
2547
|
:param str id: (required)
|
|
2545
2548
|
:param str plugin_id: (required)
|
|
2549
|
+
:param str state:
|
|
2550
|
+
:param str error:
|
|
2551
|
+
:param str additional_info:
|
|
2546
2552
|
:return: V1Plugin
|
|
2547
2553
|
If the method is called asynchronously,
|
|
2548
2554
|
returns the request thread.
|
|
2549
2555
|
"""
|
|
2550
2556
|
|
|
2551
|
-
all_params = ['project_id', 'id', 'plugin_id'] # noqa: E501
|
|
2557
|
+
all_params = ['project_id', 'id', 'plugin_id', 'state', 'error', 'additional_info'] # noqa: E501
|
|
2552
2558
|
all_params.append('async_req')
|
|
2553
2559
|
all_params.append('_return_http_data_only')
|
|
2554
2560
|
all_params.append('_preload_content')
|
|
@@ -2587,6 +2593,12 @@ class CloudSpaceServiceApi(object):
|
|
|
2587
2593
|
path_params['pluginId'] = params['plugin_id'] # noqa: E501
|
|
2588
2594
|
|
|
2589
2595
|
query_params = []
|
|
2596
|
+
if 'state' in params:
|
|
2597
|
+
query_params.append(('state', params['state'])) # noqa: E501
|
|
2598
|
+
if 'error' in params:
|
|
2599
|
+
query_params.append(('error', params['error'])) # noqa: E501
|
|
2600
|
+
if 'additional_info' in params:
|
|
2601
|
+
query_params.append(('additionalInfo', params['additional_info'])) # noqa: E501
|
|
2590
2602
|
|
|
2591
2603
|
header_params = {}
|
|
2592
2604
|
|
|
@@ -2617,7 +2629,7 @@ class CloudSpaceServiceApi(object):
|
|
|
2617
2629
|
_request_timeout=params.get('_request_timeout'),
|
|
2618
2630
|
collection_formats=collection_formats)
|
|
2619
2631
|
|
|
2620
|
-
def cloud_space_service_fork_cloud_space(self, body: '
|
|
2632
|
+
def cloud_space_service_fork_cloud_space(self, body: 'CloudSpaceServiceForkCloudSpaceBody', project_id: 'str', id: 'str', **kwargs) -> 'V1CloudSpace': # noqa: E501
|
|
2621
2633
|
"""cloud_space_service_fork_cloud_space # noqa: E501
|
|
2622
2634
|
|
|
2623
2635
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -2626,9 +2638,9 @@ class CloudSpaceServiceApi(object):
|
|
|
2626
2638
|
>>> result = thread.get()
|
|
2627
2639
|
|
|
2628
2640
|
:param async_req bool
|
|
2629
|
-
:param
|
|
2630
|
-
:param str project_id: (required)
|
|
2631
|
-
:param str id: (required)
|
|
2641
|
+
:param CloudSpaceServiceForkCloudSpaceBody body: (required)
|
|
2642
|
+
:param str project_id: source project ID (required)
|
|
2643
|
+
:param str id: source studio ID (required)
|
|
2632
2644
|
:return: V1CloudSpace
|
|
2633
2645
|
If the method is called asynchronously,
|
|
2634
2646
|
returns the request thread.
|
|
@@ -2640,7 +2652,7 @@ class CloudSpaceServiceApi(object):
|
|
|
2640
2652
|
(data) = self.cloud_space_service_fork_cloud_space_with_http_info(body, project_id, id, **kwargs) # noqa: E501
|
|
2641
2653
|
return data
|
|
2642
2654
|
|
|
2643
|
-
def cloud_space_service_fork_cloud_space_with_http_info(self, body: '
|
|
2655
|
+
def cloud_space_service_fork_cloud_space_with_http_info(self, body: 'CloudSpaceServiceForkCloudSpaceBody', project_id: 'str', id: 'str', **kwargs) -> 'V1CloudSpace': # noqa: E501
|
|
2644
2656
|
"""cloud_space_service_fork_cloud_space # noqa: E501
|
|
2645
2657
|
|
|
2646
2658
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -2649,9 +2661,9 @@ class CloudSpaceServiceApi(object):
|
|
|
2649
2661
|
>>> result = thread.get()
|
|
2650
2662
|
|
|
2651
2663
|
:param async_req bool
|
|
2652
|
-
:param
|
|
2653
|
-
:param str project_id: (required)
|
|
2654
|
-
:param str id: (required)
|
|
2664
|
+
:param CloudSpaceServiceForkCloudSpaceBody body: (required)
|
|
2665
|
+
:param str project_id: source project ID (required)
|
|
2666
|
+
:param str id: source studio ID (required)
|
|
2655
2667
|
:return: V1CloudSpace
|
|
2656
2668
|
If the method is called asynchronously,
|
|
2657
2669
|
returns the request thread.
|
|
@@ -2730,7 +2742,7 @@ class CloudSpaceServiceApi(object):
|
|
|
2730
2742
|
_request_timeout=params.get('_request_timeout'),
|
|
2731
2743
|
collection_formats=collection_formats)
|
|
2732
2744
|
|
|
2733
|
-
def cloud_space_service_fork_cloud_space_app_instance(self, body: '
|
|
2745
|
+
def cloud_space_service_fork_cloud_space_app_instance(self, body: 'CloudSpaceServiceForkCloudSpaceAppInstanceBody', project_id: 'str', cloudspace_id: 'str', id: 'str', **kwargs) -> 'Externalv1LightningappInstance': # noqa: E501
|
|
2734
2746
|
"""cloud_space_service_fork_cloud_space_app_instance # noqa: E501
|
|
2735
2747
|
|
|
2736
2748
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -2739,7 +2751,7 @@ class CloudSpaceServiceApi(object):
|
|
|
2739
2751
|
>>> result = thread.get()
|
|
2740
2752
|
|
|
2741
2753
|
:param async_req bool
|
|
2742
|
-
:param
|
|
2754
|
+
:param CloudSpaceServiceForkCloudSpaceAppInstanceBody body: (required)
|
|
2743
2755
|
:param str project_id: (required)
|
|
2744
2756
|
:param str cloudspace_id: (required)
|
|
2745
2757
|
:param str id: (required)
|
|
@@ -2754,7 +2766,7 @@ class CloudSpaceServiceApi(object):
|
|
|
2754
2766
|
(data) = self.cloud_space_service_fork_cloud_space_app_instance_with_http_info(body, project_id, cloudspace_id, id, **kwargs) # noqa: E501
|
|
2755
2767
|
return data
|
|
2756
2768
|
|
|
2757
|
-
def cloud_space_service_fork_cloud_space_app_instance_with_http_info(self, body: '
|
|
2769
|
+
def cloud_space_service_fork_cloud_space_app_instance_with_http_info(self, body: 'CloudSpaceServiceForkCloudSpaceAppInstanceBody', project_id: 'str', cloudspace_id: 'str', id: 'str', **kwargs) -> 'Externalv1LightningappInstance': # noqa: E501
|
|
2758
2770
|
"""cloud_space_service_fork_cloud_space_app_instance # noqa: E501
|
|
2759
2771
|
|
|
2760
2772
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -2763,7 +2775,7 @@ class CloudSpaceServiceApi(object):
|
|
|
2763
2775
|
>>> result = thread.get()
|
|
2764
2776
|
|
|
2765
2777
|
:param async_req bool
|
|
2766
|
-
:param
|
|
2778
|
+
:param CloudSpaceServiceForkCloudSpaceAppInstanceBody body: (required)
|
|
2767
2779
|
:param str project_id: (required)
|
|
2768
2780
|
:param str cloudspace_id: (required)
|
|
2769
2781
|
:param str id: (required)
|
|
@@ -3060,7 +3072,7 @@ class CloudSpaceServiceApi(object):
|
|
|
3060
3072
|
:param str prefix:
|
|
3061
3073
|
:param bool include_download_url:
|
|
3062
3074
|
:param str cluster_id:
|
|
3063
|
-
:param bool local_index:
|
|
3075
|
+
:param bool local_index: if true, fetch from the local index
|
|
3064
3076
|
:return: V1GetArtifactsPageResponse
|
|
3065
3077
|
If the method is called asynchronously,
|
|
3066
3078
|
returns the request thread.
|
|
@@ -3087,7 +3099,7 @@ class CloudSpaceServiceApi(object):
|
|
|
3087
3099
|
:param str prefix:
|
|
3088
3100
|
:param bool include_download_url:
|
|
3089
3101
|
:param str cluster_id:
|
|
3090
|
-
:param bool local_index:
|
|
3102
|
+
:param bool local_index: if true, fetch from the local index
|
|
3091
3103
|
:return: V1GetArtifactsPageResponse
|
|
3092
3104
|
If the method is called asynchronously,
|
|
3093
3105
|
returns the request thread.
|
|
@@ -3482,7 +3494,7 @@ class CloudSpaceServiceApi(object):
|
|
|
3482
3494
|
:param str id: (required)
|
|
3483
3495
|
:param str prefix:
|
|
3484
3496
|
:param str cluster_id:
|
|
3485
|
-
:param bool local_index:
|
|
3497
|
+
:param bool local_index: if true, fetch from the local index
|
|
3486
3498
|
:return: V1GetFolderIndexResponse
|
|
3487
3499
|
If the method is called asynchronously,
|
|
3488
3500
|
returns the request thread.
|
|
@@ -3507,7 +3519,7 @@ class CloudSpaceServiceApi(object):
|
|
|
3507
3519
|
:param str id: (required)
|
|
3508
3520
|
:param str prefix:
|
|
3509
3521
|
:param str cluster_id:
|
|
3510
|
-
:param bool local_index:
|
|
3522
|
+
:param bool local_index: if true, fetch from the local index
|
|
3511
3523
|
:return: V1GetFolderIndexResponse
|
|
3512
3524
|
If the method is called asynchronously,
|
|
3513
3525
|
returns the request thread.
|
|
@@ -5298,6 +5310,9 @@ class CloudSpaceServiceApi(object):
|
|
|
5298
5310
|
:param str project_id: (required)
|
|
5299
5311
|
:param str id: (required)
|
|
5300
5312
|
:param str plugin_id: (required)
|
|
5313
|
+
:param str state:
|
|
5314
|
+
:param str error:
|
|
5315
|
+
:param str additional_info:
|
|
5301
5316
|
:return: V1Plugin
|
|
5302
5317
|
If the method is called asynchronously,
|
|
5303
5318
|
returns the request thread.
|
|
@@ -5321,12 +5336,15 @@ class CloudSpaceServiceApi(object):
|
|
|
5321
5336
|
:param str project_id: (required)
|
|
5322
5337
|
:param str id: (required)
|
|
5323
5338
|
:param str plugin_id: (required)
|
|
5339
|
+
:param str state:
|
|
5340
|
+
:param str error:
|
|
5341
|
+
:param str additional_info:
|
|
5324
5342
|
:return: V1Plugin
|
|
5325
5343
|
If the method is called asynchronously,
|
|
5326
5344
|
returns the request thread.
|
|
5327
5345
|
"""
|
|
5328
5346
|
|
|
5329
|
-
all_params = ['project_id', 'id', 'plugin_id'] # noqa: E501
|
|
5347
|
+
all_params = ['project_id', 'id', 'plugin_id', 'state', 'error', 'additional_info'] # noqa: E501
|
|
5330
5348
|
all_params.append('async_req')
|
|
5331
5349
|
all_params.append('_return_http_data_only')
|
|
5332
5350
|
all_params.append('_preload_content')
|
|
@@ -5365,6 +5383,12 @@ class CloudSpaceServiceApi(object):
|
|
|
5365
5383
|
path_params['pluginId'] = params['plugin_id'] # noqa: E501
|
|
5366
5384
|
|
|
5367
5385
|
query_params = []
|
|
5386
|
+
if 'state' in params:
|
|
5387
|
+
query_params.append(('state', params['state'])) # noqa: E501
|
|
5388
|
+
if 'error' in params:
|
|
5389
|
+
query_params.append(('error', params['error'])) # noqa: E501
|
|
5390
|
+
if 'additional_info' in params:
|
|
5391
|
+
query_params.append(('additionalInfo', params['additional_info'])) # noqa: E501
|
|
5368
5392
|
|
|
5369
5393
|
header_params = {}
|
|
5370
5394
|
|
|
@@ -5496,7 +5520,7 @@ class CloudSpaceServiceApi(object):
|
|
|
5496
5520
|
_request_timeout=params.get('_request_timeout'),
|
|
5497
5521
|
collection_formats=collection_formats)
|
|
5498
5522
|
|
|
5499
|
-
def cloud_space_service_keep_alive_cloud_space_instance(self, body: '
|
|
5523
|
+
def cloud_space_service_keep_alive_cloud_space_instance(self, body: 'CloudSpaceServiceKeepAliveCloudSpaceInstanceBody', project_id: 'str', id: 'str', **kwargs) -> 'V1KeepAliveCloudSpaceInstanceResponse': # noqa: E501
|
|
5500
5524
|
"""cloud_space_service_keep_alive_cloud_space_instance # noqa: E501
|
|
5501
5525
|
|
|
5502
5526
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -5505,7 +5529,7 @@ class CloudSpaceServiceApi(object):
|
|
|
5505
5529
|
>>> result = thread.get()
|
|
5506
5530
|
|
|
5507
5531
|
:param async_req bool
|
|
5508
|
-
:param
|
|
5532
|
+
:param CloudSpaceServiceKeepAliveCloudSpaceInstanceBody body: (required)
|
|
5509
5533
|
:param str project_id: (required)
|
|
5510
5534
|
:param str id: (required)
|
|
5511
5535
|
:return: V1KeepAliveCloudSpaceInstanceResponse
|
|
@@ -5519,7 +5543,7 @@ class CloudSpaceServiceApi(object):
|
|
|
5519
5543
|
(data) = self.cloud_space_service_keep_alive_cloud_space_instance_with_http_info(body, project_id, id, **kwargs) # noqa: E501
|
|
5520
5544
|
return data
|
|
5521
5545
|
|
|
5522
|
-
def cloud_space_service_keep_alive_cloud_space_instance_with_http_info(self, body: '
|
|
5546
|
+
def cloud_space_service_keep_alive_cloud_space_instance_with_http_info(self, body: 'CloudSpaceServiceKeepAliveCloudSpaceInstanceBody', project_id: 'str', id: 'str', **kwargs) -> 'V1KeepAliveCloudSpaceInstanceResponse': # noqa: E501
|
|
5523
5547
|
"""cloud_space_service_keep_alive_cloud_space_instance # noqa: E501
|
|
5524
5548
|
|
|
5525
5549
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -5528,7 +5552,7 @@ class CloudSpaceServiceApi(object):
|
|
|
5528
5552
|
>>> result = thread.get()
|
|
5529
5553
|
|
|
5530
5554
|
:param async_req bool
|
|
5531
|
-
:param
|
|
5555
|
+
:param CloudSpaceServiceKeepAliveCloudSpaceInstanceBody body: (required)
|
|
5532
5556
|
:param str project_id: (required)
|
|
5533
5557
|
:param str id: (required)
|
|
5534
5558
|
:return: V1KeepAliveCloudSpaceInstanceResponse
|
|
@@ -5905,7 +5929,7 @@ class CloudSpaceServiceApi(object):
|
|
|
5905
5929
|
:param str org_id:
|
|
5906
5930
|
:param str project_id:
|
|
5907
5931
|
:param str cluster_id:
|
|
5908
|
-
:param str page_token:
|
|
5932
|
+
:param str page_token: Pagination
|
|
5909
5933
|
:param str limit:
|
|
5910
5934
|
:return: V1ListCloudSpaceInstancesResponse
|
|
5911
5935
|
If the method is called asynchronously,
|
|
@@ -5931,7 +5955,7 @@ class CloudSpaceServiceApi(object):
|
|
|
5931
5955
|
:param str org_id:
|
|
5932
5956
|
:param str project_id:
|
|
5933
5957
|
:param str cluster_id:
|
|
5934
|
-
:param str page_token:
|
|
5958
|
+
:param str page_token: Pagination
|
|
5935
5959
|
:param str limit:
|
|
5936
5960
|
:return: V1ListCloudSpaceInstancesResponse
|
|
5937
5961
|
If the method is called asynchronously,
|
|
@@ -6614,13 +6638,14 @@ class CloudSpaceServiceApi(object):
|
|
|
6614
6638
|
:param async_req bool
|
|
6615
6639
|
:param str project_id: (required)
|
|
6616
6640
|
:param str cluster_id:
|
|
6617
|
-
:param str page_token:
|
|
6641
|
+
:param str page_token: Pagination
|
|
6618
6642
|
:param str limit:
|
|
6619
|
-
:param str name:
|
|
6620
|
-
:param str user_id:
|
|
6621
|
-
:param bool active_only:
|
|
6622
|
-
:param bool is_favorite:
|
|
6623
|
-
:param bool is_locked:
|
|
6643
|
+
:param str name: Filters
|
|
6644
|
+
:param str user_id: Filters
|
|
6645
|
+
:param bool active_only: If set, returns only active CloudSpaces (at least one CloudSpace instance exists for them)
|
|
6646
|
+
:param bool is_favorite: Filters
|
|
6647
|
+
:param bool is_locked: Filters
|
|
6648
|
+
:param list[str] ids: list by cloudspace ids
|
|
6624
6649
|
:return: V1ListCloudSpacesResponse
|
|
6625
6650
|
If the method is called asynchronously,
|
|
6626
6651
|
returns the request thread.
|
|
@@ -6643,19 +6668,20 @@ class CloudSpaceServiceApi(object):
|
|
|
6643
6668
|
:param async_req bool
|
|
6644
6669
|
:param str project_id: (required)
|
|
6645
6670
|
:param str cluster_id:
|
|
6646
|
-
:param str page_token:
|
|
6671
|
+
:param str page_token: Pagination
|
|
6647
6672
|
:param str limit:
|
|
6648
|
-
:param str name:
|
|
6649
|
-
:param str user_id:
|
|
6650
|
-
:param bool active_only:
|
|
6651
|
-
:param bool is_favorite:
|
|
6652
|
-
:param bool is_locked:
|
|
6673
|
+
:param str name: Filters
|
|
6674
|
+
:param str user_id: Filters
|
|
6675
|
+
:param bool active_only: If set, returns only active CloudSpaces (at least one CloudSpace instance exists for them)
|
|
6676
|
+
:param bool is_favorite: Filters
|
|
6677
|
+
:param bool is_locked: Filters
|
|
6678
|
+
:param list[str] ids: list by cloudspace ids
|
|
6653
6679
|
:return: V1ListCloudSpacesResponse
|
|
6654
6680
|
If the method is called asynchronously,
|
|
6655
6681
|
returns the request thread.
|
|
6656
6682
|
"""
|
|
6657
6683
|
|
|
6658
|
-
all_params = ['project_id', 'cluster_id', 'page_token', 'limit', 'name', 'user_id', 'active_only', 'is_favorite', 'is_locked'] # noqa: E501
|
|
6684
|
+
all_params = ['project_id', 'cluster_id', 'page_token', 'limit', 'name', 'user_id', 'active_only', 'is_favorite', 'is_locked', 'ids'] # noqa: E501
|
|
6659
6685
|
all_params.append('async_req')
|
|
6660
6686
|
all_params.append('_return_http_data_only')
|
|
6661
6687
|
all_params.append('_preload_content')
|
|
@@ -6698,6 +6724,9 @@ class CloudSpaceServiceApi(object):
|
|
|
6698
6724
|
query_params.append(('isFavorite', params['is_favorite'])) # noqa: E501
|
|
6699
6725
|
if 'is_locked' in params:
|
|
6700
6726
|
query_params.append(('isLocked', params['is_locked'])) # noqa: E501
|
|
6727
|
+
if 'ids' in params:
|
|
6728
|
+
query_params.append(('ids', params['ids'])) # noqa: E501
|
|
6729
|
+
collection_formats['ids'] = 'multi' # noqa: E501
|
|
6701
6730
|
|
|
6702
6731
|
header_params = {}
|
|
6703
6732
|
|
|
@@ -6739,13 +6768,14 @@ class CloudSpaceServiceApi(object):
|
|
|
6739
6768
|
:param async_req bool
|
|
6740
6769
|
:param str project_id:
|
|
6741
6770
|
:param str cluster_id:
|
|
6742
|
-
:param str page_token:
|
|
6771
|
+
:param str page_token: Pagination
|
|
6743
6772
|
:param str limit:
|
|
6744
|
-
:param str name:
|
|
6745
|
-
:param str user_id:
|
|
6746
|
-
:param bool active_only:
|
|
6747
|
-
:param bool is_favorite:
|
|
6748
|
-
:param bool is_locked:
|
|
6773
|
+
:param str name: Filters
|
|
6774
|
+
:param str user_id: Filters
|
|
6775
|
+
:param bool active_only: If set, returns only active CloudSpaces (at least one CloudSpace instance exists for them)
|
|
6776
|
+
:param bool is_favorite: Filters
|
|
6777
|
+
:param bool is_locked: Filters
|
|
6778
|
+
:param list[str] ids: list by cloudspace ids
|
|
6749
6779
|
:return: V1ListCloudSpacesResponse
|
|
6750
6780
|
If the method is called asynchronously,
|
|
6751
6781
|
returns the request thread.
|
|
@@ -6768,19 +6798,20 @@ class CloudSpaceServiceApi(object):
|
|
|
6768
6798
|
:param async_req bool
|
|
6769
6799
|
:param str project_id:
|
|
6770
6800
|
:param str cluster_id:
|
|
6771
|
-
:param str page_token:
|
|
6801
|
+
:param str page_token: Pagination
|
|
6772
6802
|
:param str limit:
|
|
6773
|
-
:param str name:
|
|
6774
|
-
:param str user_id:
|
|
6775
|
-
:param bool active_only:
|
|
6776
|
-
:param bool is_favorite:
|
|
6777
|
-
:param bool is_locked:
|
|
6803
|
+
:param str name: Filters
|
|
6804
|
+
:param str user_id: Filters
|
|
6805
|
+
:param bool active_only: If set, returns only active CloudSpaces (at least one CloudSpace instance exists for them)
|
|
6806
|
+
:param bool is_favorite: Filters
|
|
6807
|
+
:param bool is_locked: Filters
|
|
6808
|
+
:param list[str] ids: list by cloudspace ids
|
|
6778
6809
|
:return: V1ListCloudSpacesResponse
|
|
6779
6810
|
If the method is called asynchronously,
|
|
6780
6811
|
returns the request thread.
|
|
6781
6812
|
"""
|
|
6782
6813
|
|
|
6783
|
-
all_params = ['project_id', 'cluster_id', 'page_token', 'limit', 'name', 'user_id', 'active_only', 'is_favorite', 'is_locked'] # noqa: E501
|
|
6814
|
+
all_params = ['project_id', 'cluster_id', 'page_token', 'limit', 'name', 'user_id', 'active_only', 'is_favorite', 'is_locked', 'ids'] # noqa: E501
|
|
6784
6815
|
all_params.append('async_req')
|
|
6785
6816
|
all_params.append('_return_http_data_only')
|
|
6786
6817
|
all_params.append('_preload_content')
|
|
@@ -6819,6 +6850,9 @@ class CloudSpaceServiceApi(object):
|
|
|
6819
6850
|
query_params.append(('isFavorite', params['is_favorite'])) # noqa: E501
|
|
6820
6851
|
if 'is_locked' in params:
|
|
6821
6852
|
query_params.append(('isLocked', params['is_locked'])) # noqa: E501
|
|
6853
|
+
if 'ids' in params:
|
|
6854
|
+
query_params.append(('ids', params['ids'])) # noqa: E501
|
|
6855
|
+
collection_formats['ids'] = 'multi' # noqa: E501
|
|
6822
6856
|
|
|
6823
6857
|
header_params = {}
|
|
6824
6858
|
|
|
@@ -7062,12 +7096,12 @@ class CloudSpaceServiceApi(object):
|
|
|
7062
7096
|
:param async_req bool
|
|
7063
7097
|
:param str username:
|
|
7064
7098
|
:param str search_query:
|
|
7065
|
-
:param str page_token:
|
|
7099
|
+
:param str page_token: Pagination
|
|
7066
7100
|
:param str limit:
|
|
7067
7101
|
:param str sort_by:
|
|
7068
7102
|
:param str org_id:
|
|
7069
7103
|
:param str tag:
|
|
7070
|
-
:param str internal_name:
|
|
7104
|
+
:param str internal_name: name for studios use internally
|
|
7071
7105
|
:param list[str] cloud_space_ids:
|
|
7072
7106
|
:return: V1ListPublishedCloudSpacesResponse
|
|
7073
7107
|
If the method is called asynchronously,
|
|
@@ -7091,12 +7125,12 @@ class CloudSpaceServiceApi(object):
|
|
|
7091
7125
|
:param async_req bool
|
|
7092
7126
|
:param str username:
|
|
7093
7127
|
:param str search_query:
|
|
7094
|
-
:param str page_token:
|
|
7128
|
+
:param str page_token: Pagination
|
|
7095
7129
|
:param str limit:
|
|
7096
7130
|
:param str sort_by:
|
|
7097
7131
|
:param str org_id:
|
|
7098
7132
|
:param str tag:
|
|
7099
|
-
:param str internal_name:
|
|
7133
|
+
:param str internal_name: name for studios use internally
|
|
7100
7134
|
:param list[str] cloud_space_ids:
|
|
7101
7135
|
:return: V1ListPublishedCloudSpacesResponse
|
|
7102
7136
|
If the method is called asynchronously,
|
|
@@ -7173,7 +7207,7 @@ class CloudSpaceServiceApi(object):
|
|
|
7173
7207
|
_request_timeout=params.get('_request_timeout'),
|
|
7174
7208
|
collection_formats=collection_formats)
|
|
7175
7209
|
|
|
7176
|
-
def cloud_space_service_publish_cloud_space(self, body: '
|
|
7210
|
+
def cloud_space_service_publish_cloud_space(self, body: 'CloudSpaceServicePublishCloudSpaceBody', project_id: 'str', id: 'str', **kwargs) -> 'V1PublishCloudSpaceResponse': # noqa: E501
|
|
7177
7211
|
"""TODO(yurij/karolis): update these methods to allow publishing globally in addition to orgs and remove the \"is_published\" field from CloudSpace proto # noqa: E501
|
|
7178
7212
|
|
|
7179
7213
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -7182,7 +7216,7 @@ class CloudSpaceServiceApi(object):
|
|
|
7182
7216
|
>>> result = thread.get()
|
|
7183
7217
|
|
|
7184
7218
|
:param async_req bool
|
|
7185
|
-
:param
|
|
7219
|
+
:param CloudSpaceServicePublishCloudSpaceBody body: (required)
|
|
7186
7220
|
:param str project_id: (required)
|
|
7187
7221
|
:param str id: (required)
|
|
7188
7222
|
:return: V1PublishCloudSpaceResponse
|
|
@@ -7196,7 +7230,7 @@ class CloudSpaceServiceApi(object):
|
|
|
7196
7230
|
(data) = self.cloud_space_service_publish_cloud_space_with_http_info(body, project_id, id, **kwargs) # noqa: E501
|
|
7197
7231
|
return data
|
|
7198
7232
|
|
|
7199
|
-
def cloud_space_service_publish_cloud_space_with_http_info(self, body: '
|
|
7233
|
+
def cloud_space_service_publish_cloud_space_with_http_info(self, body: 'CloudSpaceServicePublishCloudSpaceBody', project_id: 'str', id: 'str', **kwargs) -> 'V1PublishCloudSpaceResponse': # noqa: E501
|
|
7200
7234
|
"""TODO(yurij/karolis): update these methods to allow publishing globally in addition to orgs and remove the \"is_published\" field from CloudSpace proto # noqa: E501
|
|
7201
7235
|
|
|
7202
7236
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -7205,7 +7239,7 @@ class CloudSpaceServiceApi(object):
|
|
|
7205
7239
|
>>> result = thread.get()
|
|
7206
7240
|
|
|
7207
7241
|
:param async_req bool
|
|
7208
|
-
:param
|
|
7242
|
+
:param CloudSpaceServicePublishCloudSpaceBody body: (required)
|
|
7209
7243
|
:param str project_id: (required)
|
|
7210
7244
|
:param str id: (required)
|
|
7211
7245
|
:return: V1PublishCloudSpaceResponse
|
|
@@ -7286,7 +7320,7 @@ class CloudSpaceServiceApi(object):
|
|
|
7286
7320
|
_request_timeout=params.get('_request_timeout'),
|
|
7287
7321
|
collection_formats=collection_formats)
|
|
7288
7322
|
|
|
7289
|
-
def cloud_space_service_refresh_cloud_space_index(self, body: '
|
|
7323
|
+
def cloud_space_service_refresh_cloud_space_index(self, body: 'CloudSpaceServiceRefreshCloudSpaceIndexBody', project_id: 'str', id: 'str', **kwargs) -> 'V1RefreshIndexResponse': # noqa: E501
|
|
7290
7324
|
"""cloud_space_service_refresh_cloud_space_index # noqa: E501
|
|
7291
7325
|
|
|
7292
7326
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -7295,7 +7329,7 @@ class CloudSpaceServiceApi(object):
|
|
|
7295
7329
|
>>> result = thread.get()
|
|
7296
7330
|
|
|
7297
7331
|
:param async_req bool
|
|
7298
|
-
:param
|
|
7332
|
+
:param CloudSpaceServiceRefreshCloudSpaceIndexBody body: (required)
|
|
7299
7333
|
:param str project_id: (required)
|
|
7300
7334
|
:param str id: (required)
|
|
7301
7335
|
:return: V1RefreshIndexResponse
|
|
@@ -7309,7 +7343,7 @@ class CloudSpaceServiceApi(object):
|
|
|
7309
7343
|
(data) = self.cloud_space_service_refresh_cloud_space_index_with_http_info(body, project_id, id, **kwargs) # noqa: E501
|
|
7310
7344
|
return data
|
|
7311
7345
|
|
|
7312
|
-
def cloud_space_service_refresh_cloud_space_index_with_http_info(self, body: '
|
|
7346
|
+
def cloud_space_service_refresh_cloud_space_index_with_http_info(self, body: 'CloudSpaceServiceRefreshCloudSpaceIndexBody', project_id: 'str', id: 'str', **kwargs) -> 'V1RefreshIndexResponse': # noqa: E501
|
|
7313
7347
|
"""cloud_space_service_refresh_cloud_space_index # noqa: E501
|
|
7314
7348
|
|
|
7315
7349
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -7318,7 +7352,7 @@ class CloudSpaceServiceApi(object):
|
|
|
7318
7352
|
>>> result = thread.get()
|
|
7319
7353
|
|
|
7320
7354
|
:param async_req bool
|
|
7321
|
-
:param
|
|
7355
|
+
:param CloudSpaceServiceRefreshCloudSpaceIndexBody body: (required)
|
|
7322
7356
|
:param str project_id: (required)
|
|
7323
7357
|
:param str id: (required)
|
|
7324
7358
|
:return: V1RefreshIndexResponse
|
|
@@ -7410,6 +7444,7 @@ class CloudSpaceServiceApi(object):
|
|
|
7410
7444
|
:param async_req bool
|
|
7411
7445
|
:param str project_id: (required)
|
|
7412
7446
|
:param str id: (required)
|
|
7447
|
+
:param str path:
|
|
7413
7448
|
:return: V1RefreshPathResponse
|
|
7414
7449
|
If the method is called asynchronously,
|
|
7415
7450
|
returns the request thread.
|
|
@@ -7432,12 +7467,13 @@ class CloudSpaceServiceApi(object):
|
|
|
7432
7467
|
:param async_req bool
|
|
7433
7468
|
:param str project_id: (required)
|
|
7434
7469
|
:param str id: (required)
|
|
7470
|
+
:param str path:
|
|
7435
7471
|
:return: V1RefreshPathResponse
|
|
7436
7472
|
If the method is called asynchronously,
|
|
7437
7473
|
returns the request thread.
|
|
7438
7474
|
"""
|
|
7439
7475
|
|
|
7440
|
-
all_params = ['project_id', 'id'] # noqa: E501
|
|
7476
|
+
all_params = ['project_id', 'id', 'path'] # noqa: E501
|
|
7441
7477
|
all_params.append('async_req')
|
|
7442
7478
|
all_params.append('_return_http_data_only')
|
|
7443
7479
|
all_params.append('_preload_content')
|
|
@@ -7470,6 +7506,8 @@ class CloudSpaceServiceApi(object):
|
|
|
7470
7506
|
path_params['id'] = params['id'] # noqa: E501
|
|
7471
7507
|
|
|
7472
7508
|
query_params = []
|
|
7509
|
+
if 'path' in params:
|
|
7510
|
+
query_params.append(('path', params['path'])) # noqa: E501
|
|
7473
7511
|
|
|
7474
7512
|
header_params = {}
|
|
7475
7513
|
|
|
@@ -7609,7 +7647,7 @@ class CloudSpaceServiceApi(object):
|
|
|
7609
7647
|
_request_timeout=params.get('_request_timeout'),
|
|
7610
7648
|
collection_formats=collection_formats)
|
|
7611
7649
|
|
|
7612
|
-
def cloud_space_service_report_cloud_space_instance_system_metrics(self, body: '
|
|
7650
|
+
def cloud_space_service_report_cloud_space_instance_system_metrics(self, body: 'CloudSpaceServiceReportCloudSpaceInstanceSystemMetricsBody', project_id: 'str', cloudspace_id: 'str', **kwargs) -> 'V1ReportCloudSpaceInstanceSystemMetricsResponse': # noqa: E501
|
|
7613
7651
|
"""cloud_space_service_report_cloud_space_instance_system_metrics # noqa: E501
|
|
7614
7652
|
|
|
7615
7653
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -7618,7 +7656,7 @@ class CloudSpaceServiceApi(object):
|
|
|
7618
7656
|
>>> result = thread.get()
|
|
7619
7657
|
|
|
7620
7658
|
:param async_req bool
|
|
7621
|
-
:param
|
|
7659
|
+
:param CloudSpaceServiceReportCloudSpaceInstanceSystemMetricsBody body: (required)
|
|
7622
7660
|
:param str project_id: (required)
|
|
7623
7661
|
:param str cloudspace_id: (required)
|
|
7624
7662
|
:return: V1ReportCloudSpaceInstanceSystemMetricsResponse
|
|
@@ -7632,7 +7670,7 @@ class CloudSpaceServiceApi(object):
|
|
|
7632
7670
|
(data) = self.cloud_space_service_report_cloud_space_instance_system_metrics_with_http_info(body, project_id, cloudspace_id, **kwargs) # noqa: E501
|
|
7633
7671
|
return data
|
|
7634
7672
|
|
|
7635
|
-
def cloud_space_service_report_cloud_space_instance_system_metrics_with_http_info(self, body: '
|
|
7673
|
+
def cloud_space_service_report_cloud_space_instance_system_metrics_with_http_info(self, body: 'CloudSpaceServiceReportCloudSpaceInstanceSystemMetricsBody', project_id: 'str', cloudspace_id: 'str', **kwargs) -> 'V1ReportCloudSpaceInstanceSystemMetricsResponse': # noqa: E501
|
|
7636
7674
|
"""cloud_space_service_report_cloud_space_instance_system_metrics # noqa: E501
|
|
7637
7675
|
|
|
7638
7676
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -7641,7 +7679,7 @@ class CloudSpaceServiceApi(object):
|
|
|
7641
7679
|
>>> result = thread.get()
|
|
7642
7680
|
|
|
7643
7681
|
:param async_req bool
|
|
7644
|
-
:param
|
|
7682
|
+
:param CloudSpaceServiceReportCloudSpaceInstanceSystemMetricsBody body: (required)
|
|
7645
7683
|
:param str project_id: (required)
|
|
7646
7684
|
:param str cloudspace_id: (required)
|
|
7647
7685
|
:return: V1ReportCloudSpaceInstanceSystemMetricsResponse
|
|
@@ -7722,7 +7760,7 @@ class CloudSpaceServiceApi(object):
|
|
|
7722
7760
|
_request_timeout=params.get('_request_timeout'),
|
|
7723
7761
|
collection_formats=collection_formats)
|
|
7724
7762
|
|
|
7725
|
-
def cloud_space_service_request_cloud_space_access(self, body: '
|
|
7763
|
+
def cloud_space_service_request_cloud_space_access(self, body: 'CloudSpaceServiceRequestCloudSpaceAccessBody', user_name: 'str', project_name: 'str', cloudspace_name: 'str', **kwargs) -> 'V1RequestCloudSpaceAccessResponse': # noqa: E501
|
|
7726
7764
|
"""RequestCloudSpaceAccess # noqa: E501
|
|
7727
7765
|
|
|
7728
7766
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -7731,7 +7769,7 @@ class CloudSpaceServiceApi(object):
|
|
|
7731
7769
|
>>> result = thread.get()
|
|
7732
7770
|
|
|
7733
7771
|
:param async_req bool
|
|
7734
|
-
:param
|
|
7772
|
+
:param CloudSpaceServiceRequestCloudSpaceAccessBody body: (required)
|
|
7735
7773
|
:param str user_name: (required)
|
|
7736
7774
|
:param str project_name: (required)
|
|
7737
7775
|
:param str cloudspace_name: (required)
|
|
@@ -7746,7 +7784,7 @@ class CloudSpaceServiceApi(object):
|
|
|
7746
7784
|
(data) = self.cloud_space_service_request_cloud_space_access_with_http_info(body, user_name, project_name, cloudspace_name, **kwargs) # noqa: E501
|
|
7747
7785
|
return data
|
|
7748
7786
|
|
|
7749
|
-
def cloud_space_service_request_cloud_space_access_with_http_info(self, body: '
|
|
7787
|
+
def cloud_space_service_request_cloud_space_access_with_http_info(self, body: 'CloudSpaceServiceRequestCloudSpaceAccessBody', user_name: 'str', project_name: 'str', cloudspace_name: 'str', **kwargs) -> 'V1RequestCloudSpaceAccessResponse': # noqa: E501
|
|
7750
7788
|
"""RequestCloudSpaceAccess # noqa: E501
|
|
7751
7789
|
|
|
7752
7790
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -7755,7 +7793,7 @@ class CloudSpaceServiceApi(object):
|
|
|
7755
7793
|
>>> result = thread.get()
|
|
7756
7794
|
|
|
7757
7795
|
:param async_req bool
|
|
7758
|
-
:param
|
|
7796
|
+
:param CloudSpaceServiceRequestCloudSpaceAccessBody body: (required)
|
|
7759
7797
|
:param str user_name: (required)
|
|
7760
7798
|
:param str project_name: (required)
|
|
7761
7799
|
:param str cloudspace_name: (required)
|
|
@@ -7854,6 +7892,7 @@ class CloudSpaceServiceApi(object):
|
|
|
7854
7892
|
:param async_req bool
|
|
7855
7893
|
:param str project_id: (required)
|
|
7856
7894
|
:param str id: (required)
|
|
7895
|
+
:param bool force:
|
|
7857
7896
|
:return: V1RestartCloudSpaceInstanceResponse
|
|
7858
7897
|
If the method is called asynchronously,
|
|
7859
7898
|
returns the request thread.
|
|
@@ -7876,12 +7915,13 @@ class CloudSpaceServiceApi(object):
|
|
|
7876
7915
|
:param async_req bool
|
|
7877
7916
|
:param str project_id: (required)
|
|
7878
7917
|
:param str id: (required)
|
|
7918
|
+
:param bool force:
|
|
7879
7919
|
:return: V1RestartCloudSpaceInstanceResponse
|
|
7880
7920
|
If the method is called asynchronously,
|
|
7881
7921
|
returns the request thread.
|
|
7882
7922
|
"""
|
|
7883
7923
|
|
|
7884
|
-
all_params = ['project_id', 'id'] # noqa: E501
|
|
7924
|
+
all_params = ['project_id', 'id', 'force'] # noqa: E501
|
|
7885
7925
|
all_params.append('async_req')
|
|
7886
7926
|
all_params.append('_return_http_data_only')
|
|
7887
7927
|
all_params.append('_preload_content')
|
|
@@ -7914,6 +7954,8 @@ class CloudSpaceServiceApi(object):
|
|
|
7914
7954
|
path_params['id'] = params['id'] # noqa: E501
|
|
7915
7955
|
|
|
7916
7956
|
query_params = []
|
|
7957
|
+
if 'force' in params:
|
|
7958
|
+
query_params.append(('force', params['force'])) # noqa: E501
|
|
7917
7959
|
|
|
7918
7960
|
header_params = {}
|
|
7919
7961
|
|
|
@@ -8049,7 +8091,7 @@ class CloudSpaceServiceApi(object):
|
|
|
8049
8091
|
_request_timeout=params.get('_request_timeout'),
|
|
8050
8092
|
collection_formats=collection_formats)
|
|
8051
8093
|
|
|
8052
|
-
def cloud_space_service_start_cloud_space_instance(self, body: '
|
|
8094
|
+
def cloud_space_service_start_cloud_space_instance(self, body: 'CloudSpaceServiceStartCloudSpaceInstanceBody', project_id: 'str', id: 'str', **kwargs) -> 'V1StartCloudSpaceInstanceResponse': # noqa: E501
|
|
8053
8095
|
"""cloud_space_service_start_cloud_space_instance # noqa: E501
|
|
8054
8096
|
|
|
8055
8097
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -8058,7 +8100,7 @@ class CloudSpaceServiceApi(object):
|
|
|
8058
8100
|
>>> result = thread.get()
|
|
8059
8101
|
|
|
8060
8102
|
:param async_req bool
|
|
8061
|
-
:param
|
|
8103
|
+
:param CloudSpaceServiceStartCloudSpaceInstanceBody body: (required)
|
|
8062
8104
|
:param str project_id: (required)
|
|
8063
8105
|
:param str id: (required)
|
|
8064
8106
|
:return: V1StartCloudSpaceInstanceResponse
|
|
@@ -8072,7 +8114,7 @@ class CloudSpaceServiceApi(object):
|
|
|
8072
8114
|
(data) = self.cloud_space_service_start_cloud_space_instance_with_http_info(body, project_id, id, **kwargs) # noqa: E501
|
|
8073
8115
|
return data
|
|
8074
8116
|
|
|
8075
|
-
def cloud_space_service_start_cloud_space_instance_with_http_info(self, body: '
|
|
8117
|
+
def cloud_space_service_start_cloud_space_instance_with_http_info(self, body: 'CloudSpaceServiceStartCloudSpaceInstanceBody', project_id: 'str', id: 'str', **kwargs) -> 'V1StartCloudSpaceInstanceResponse': # noqa: E501
|
|
8076
8118
|
"""cloud_space_service_start_cloud_space_instance # noqa: E501
|
|
8077
8119
|
|
|
8078
8120
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -8081,7 +8123,7 @@ class CloudSpaceServiceApi(object):
|
|
|
8081
8123
|
>>> result = thread.get()
|
|
8082
8124
|
|
|
8083
8125
|
:param async_req bool
|
|
8084
|
-
:param
|
|
8126
|
+
:param CloudSpaceServiceStartCloudSpaceInstanceBody body: (required)
|
|
8085
8127
|
:param str project_id: (required)
|
|
8086
8128
|
:param str id: (required)
|
|
8087
8129
|
:return: V1StartCloudSpaceInstanceResponse
|
|
@@ -8173,6 +8215,7 @@ class CloudSpaceServiceApi(object):
|
|
|
8173
8215
|
:param async_req bool
|
|
8174
8216
|
:param str project_id: (required)
|
|
8175
8217
|
:param str id: (required)
|
|
8218
|
+
:param bool force:
|
|
8176
8219
|
:return: V1StopCloudSpaceInstanceResponse
|
|
8177
8220
|
If the method is called asynchronously,
|
|
8178
8221
|
returns the request thread.
|
|
@@ -8195,12 +8238,13 @@ class CloudSpaceServiceApi(object):
|
|
|
8195
8238
|
:param async_req bool
|
|
8196
8239
|
:param str project_id: (required)
|
|
8197
8240
|
:param str id: (required)
|
|
8241
|
+
:param bool force:
|
|
8198
8242
|
:return: V1StopCloudSpaceInstanceResponse
|
|
8199
8243
|
If the method is called asynchronously,
|
|
8200
8244
|
returns the request thread.
|
|
8201
8245
|
"""
|
|
8202
8246
|
|
|
8203
|
-
all_params = ['project_id', 'id'] # noqa: E501
|
|
8247
|
+
all_params = ['project_id', 'id', 'force'] # noqa: E501
|
|
8204
8248
|
all_params.append('async_req')
|
|
8205
8249
|
all_params.append('_return_http_data_only')
|
|
8206
8250
|
all_params.append('_preload_content')
|
|
@@ -8233,6 +8277,8 @@ class CloudSpaceServiceApi(object):
|
|
|
8233
8277
|
path_params['id'] = params['id'] # noqa: E501
|
|
8234
8278
|
|
|
8235
8279
|
query_params = []
|
|
8280
|
+
if 'force' in params:
|
|
8281
|
+
query_params.append(('force', params['force'])) # noqa: E501
|
|
8236
8282
|
|
|
8237
8283
|
header_params = {}
|
|
8238
8284
|
|
|
@@ -8274,6 +8320,7 @@ class CloudSpaceServiceApi(object):
|
|
|
8274
8320
|
:param async_req bool
|
|
8275
8321
|
:param str project_id: (required)
|
|
8276
8322
|
:param str id: (required)
|
|
8323
|
+
:param bool skip_running_check: If true, the switch will be performed even if the instance is not running
|
|
8277
8324
|
:return: V1SwitchCloudSpaceInstanceResponse
|
|
8278
8325
|
If the method is called asynchronously,
|
|
8279
8326
|
returns the request thread.
|
|
@@ -8296,12 +8343,13 @@ class CloudSpaceServiceApi(object):
|
|
|
8296
8343
|
:param async_req bool
|
|
8297
8344
|
:param str project_id: (required)
|
|
8298
8345
|
:param str id: (required)
|
|
8346
|
+
:param bool skip_running_check: If true, the switch will be performed even if the instance is not running
|
|
8299
8347
|
:return: V1SwitchCloudSpaceInstanceResponse
|
|
8300
8348
|
If the method is called asynchronously,
|
|
8301
8349
|
returns the request thread.
|
|
8302
8350
|
"""
|
|
8303
8351
|
|
|
8304
|
-
all_params = ['project_id', 'id'] # noqa: E501
|
|
8352
|
+
all_params = ['project_id', 'id', 'skip_running_check'] # noqa: E501
|
|
8305
8353
|
all_params.append('async_req')
|
|
8306
8354
|
all_params.append('_return_http_data_only')
|
|
8307
8355
|
all_params.append('_preload_content')
|
|
@@ -8334,6 +8382,8 @@ class CloudSpaceServiceApi(object):
|
|
|
8334
8382
|
path_params['id'] = params['id'] # noqa: E501
|
|
8335
8383
|
|
|
8336
8384
|
query_params = []
|
|
8385
|
+
if 'skip_running_check' in params:
|
|
8386
|
+
query_params.append(('skipRunningCheck', params['skip_running_check'])) # noqa: E501
|
|
8337
8387
|
|
|
8338
8388
|
header_params = {}
|
|
8339
8389
|
|
|
@@ -8364,7 +8414,7 @@ class CloudSpaceServiceApi(object):
|
|
|
8364
8414
|
_request_timeout=params.get('_request_timeout'),
|
|
8365
8415
|
collection_formats=collection_formats)
|
|
8366
8416
|
|
|
8367
|
-
def cloud_space_service_transfer_cloud_space(self, body: '
|
|
8417
|
+
def cloud_space_service_transfer_cloud_space(self, body: 'CloudSpaceServiceTransferCloudSpaceBody', project_id: 'str', id: 'str', **kwargs) -> 'V1TransferCloudSpaceResponse': # noqa: E501
|
|
8368
8418
|
"""cloud_space_service_transfer_cloud_space # noqa: E501
|
|
8369
8419
|
|
|
8370
8420
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -8373,7 +8423,7 @@ class CloudSpaceServiceApi(object):
|
|
|
8373
8423
|
>>> result = thread.get()
|
|
8374
8424
|
|
|
8375
8425
|
:param async_req bool
|
|
8376
|
-
:param
|
|
8426
|
+
:param CloudSpaceServiceTransferCloudSpaceBody body: (required)
|
|
8377
8427
|
:param str project_id: (required)
|
|
8378
8428
|
:param str id: (required)
|
|
8379
8429
|
:return: V1TransferCloudSpaceResponse
|
|
@@ -8387,7 +8437,7 @@ class CloudSpaceServiceApi(object):
|
|
|
8387
8437
|
(data) = self.cloud_space_service_transfer_cloud_space_with_http_info(body, project_id, id, **kwargs) # noqa: E501
|
|
8388
8438
|
return data
|
|
8389
8439
|
|
|
8390
|
-
def cloud_space_service_transfer_cloud_space_with_http_info(self, body: '
|
|
8440
|
+
def cloud_space_service_transfer_cloud_space_with_http_info(self, body: 'CloudSpaceServiceTransferCloudSpaceBody', project_id: 'str', id: 'str', **kwargs) -> 'V1TransferCloudSpaceResponse': # noqa: E501
|
|
8391
8441
|
"""cloud_space_service_transfer_cloud_space # noqa: E501
|
|
8392
8442
|
|
|
8393
8443
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -8396,7 +8446,7 @@ class CloudSpaceServiceApi(object):
|
|
|
8396
8446
|
>>> result = thread.get()
|
|
8397
8447
|
|
|
8398
8448
|
:param async_req bool
|
|
8399
|
-
:param
|
|
8449
|
+
:param CloudSpaceServiceTransferCloudSpaceBody body: (required)
|
|
8400
8450
|
:param str project_id: (required)
|
|
8401
8451
|
:param str id: (required)
|
|
8402
8452
|
:return: V1TransferCloudSpaceResponse
|
|
@@ -8703,7 +8753,7 @@ class CloudSpaceServiceApi(object):
|
|
|
8703
8753
|
_request_timeout=params.get('_request_timeout'),
|
|
8704
8754
|
collection_formats=collection_formats)
|
|
8705
8755
|
|
|
8706
|
-
def cloud_space_service_update_cloud_space(self, body: '
|
|
8756
|
+
def cloud_space_service_update_cloud_space(self, body: 'CloudSpaceServiceUpdateCloudSpaceBody', project_id: 'str', id: 'str', **kwargs) -> 'V1CloudSpace': # noqa: E501
|
|
8707
8757
|
"""cloud_space_service_update_cloud_space # noqa: E501
|
|
8708
8758
|
|
|
8709
8759
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -8712,7 +8762,7 @@ class CloudSpaceServiceApi(object):
|
|
|
8712
8762
|
>>> result = thread.get()
|
|
8713
8763
|
|
|
8714
8764
|
:param async_req bool
|
|
8715
|
-
:param
|
|
8765
|
+
:param CloudSpaceServiceUpdateCloudSpaceBody body: (required)
|
|
8716
8766
|
:param str project_id: (required)
|
|
8717
8767
|
:param str id: (required)
|
|
8718
8768
|
:return: V1CloudSpace
|
|
@@ -8726,7 +8776,7 @@ class CloudSpaceServiceApi(object):
|
|
|
8726
8776
|
(data) = self.cloud_space_service_update_cloud_space_with_http_info(body, project_id, id, **kwargs) # noqa: E501
|
|
8727
8777
|
return data
|
|
8728
8778
|
|
|
8729
|
-
def cloud_space_service_update_cloud_space_with_http_info(self, body: '
|
|
8779
|
+
def cloud_space_service_update_cloud_space_with_http_info(self, body: 'CloudSpaceServiceUpdateCloudSpaceBody', project_id: 'str', id: 'str', **kwargs) -> 'V1CloudSpace': # noqa: E501
|
|
8730
8780
|
"""cloud_space_service_update_cloud_space # noqa: E501
|
|
8731
8781
|
|
|
8732
8782
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -8735,7 +8785,7 @@ class CloudSpaceServiceApi(object):
|
|
|
8735
8785
|
>>> result = thread.get()
|
|
8736
8786
|
|
|
8737
8787
|
:param async_req bool
|
|
8738
|
-
:param
|
|
8788
|
+
:param CloudSpaceServiceUpdateCloudSpaceBody body: (required)
|
|
8739
8789
|
:param str project_id: (required)
|
|
8740
8790
|
:param str id: (required)
|
|
8741
8791
|
:return: V1CloudSpace
|
|
@@ -8816,7 +8866,7 @@ class CloudSpaceServiceApi(object):
|
|
|
8816
8866
|
_request_timeout=params.get('_request_timeout'),
|
|
8817
8867
|
collection_formats=collection_formats)
|
|
8818
8868
|
|
|
8819
|
-
def cloud_space_service_update_cloud_space_app(self, body: '
|
|
8869
|
+
def cloud_space_service_update_cloud_space_app(self, body: 'CloudSpaceServiceUpdateCloudSpaceAppBody', id: 'str', **kwargs) -> 'V1CloudSpaceApp': # noqa: E501
|
|
8820
8870
|
"""cloud_space_service_update_cloud_space_app # noqa: E501
|
|
8821
8871
|
|
|
8822
8872
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -8825,7 +8875,7 @@ class CloudSpaceServiceApi(object):
|
|
|
8825
8875
|
>>> result = thread.get()
|
|
8826
8876
|
|
|
8827
8877
|
:param async_req bool
|
|
8828
|
-
:param
|
|
8878
|
+
:param CloudSpaceServiceUpdateCloudSpaceAppBody body: (required)
|
|
8829
8879
|
:param str id: (required)
|
|
8830
8880
|
:return: V1CloudSpaceApp
|
|
8831
8881
|
If the method is called asynchronously,
|
|
@@ -8838,7 +8888,7 @@ class CloudSpaceServiceApi(object):
|
|
|
8838
8888
|
(data) = self.cloud_space_service_update_cloud_space_app_with_http_info(body, id, **kwargs) # noqa: E501
|
|
8839
8889
|
return data
|
|
8840
8890
|
|
|
8841
|
-
def cloud_space_service_update_cloud_space_app_with_http_info(self, body: '
|
|
8891
|
+
def cloud_space_service_update_cloud_space_app_with_http_info(self, body: 'CloudSpaceServiceUpdateCloudSpaceAppBody', id: 'str', **kwargs) -> 'V1CloudSpaceApp': # noqa: E501
|
|
8842
8892
|
"""cloud_space_service_update_cloud_space_app # noqa: E501
|
|
8843
8893
|
|
|
8844
8894
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -8847,7 +8897,7 @@ class CloudSpaceServiceApi(object):
|
|
|
8847
8897
|
>>> result = thread.get()
|
|
8848
8898
|
|
|
8849
8899
|
:param async_req bool
|
|
8850
|
-
:param
|
|
8900
|
+
:param CloudSpaceServiceUpdateCloudSpaceAppBody body: (required)
|
|
8851
8901
|
:param str id: (required)
|
|
8852
8902
|
:return: V1CloudSpaceApp
|
|
8853
8903
|
If the method is called asynchronously,
|
|
@@ -8921,7 +8971,7 @@ class CloudSpaceServiceApi(object):
|
|
|
8921
8971
|
_request_timeout=params.get('_request_timeout'),
|
|
8922
8972
|
collection_formats=collection_formats)
|
|
8923
8973
|
|
|
8924
|
-
def cloud_space_service_update_cloud_space_collab(self, body: '
|
|
8974
|
+
def cloud_space_service_update_cloud_space_collab(self, body: 'CloudSpaceServiceUpdateCloudSpaceCollabBody', project_id: 'str', id: 'str', **kwargs) -> 'V1UpdateCloudSpaceCollabResponse': # noqa: E501
|
|
8925
8975
|
"""cloud_space_service_update_cloud_space_collab # noqa: E501
|
|
8926
8976
|
|
|
8927
8977
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -8930,7 +8980,7 @@ class CloudSpaceServiceApi(object):
|
|
|
8930
8980
|
>>> result = thread.get()
|
|
8931
8981
|
|
|
8932
8982
|
:param async_req bool
|
|
8933
|
-
:param
|
|
8983
|
+
:param CloudSpaceServiceUpdateCloudSpaceCollabBody body: (required)
|
|
8934
8984
|
:param str project_id: (required)
|
|
8935
8985
|
:param str id: (required)
|
|
8936
8986
|
:return: V1UpdateCloudSpaceCollabResponse
|
|
@@ -8944,7 +8994,7 @@ class CloudSpaceServiceApi(object):
|
|
|
8944
8994
|
(data) = self.cloud_space_service_update_cloud_space_collab_with_http_info(body, project_id, id, **kwargs) # noqa: E501
|
|
8945
8995
|
return data
|
|
8946
8996
|
|
|
8947
|
-
def cloud_space_service_update_cloud_space_collab_with_http_info(self, body: '
|
|
8997
|
+
def cloud_space_service_update_cloud_space_collab_with_http_info(self, body: 'CloudSpaceServiceUpdateCloudSpaceCollabBody', project_id: 'str', id: 'str', **kwargs) -> 'V1UpdateCloudSpaceCollabResponse': # noqa: E501
|
|
8948
8998
|
"""cloud_space_service_update_cloud_space_collab # noqa: E501
|
|
8949
8999
|
|
|
8950
9000
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -8953,7 +9003,7 @@ class CloudSpaceServiceApi(object):
|
|
|
8953
9003
|
>>> result = thread.get()
|
|
8954
9004
|
|
|
8955
9005
|
:param async_req bool
|
|
8956
|
-
:param
|
|
9006
|
+
:param CloudSpaceServiceUpdateCloudSpaceCollabBody body: (required)
|
|
8957
9007
|
:param str project_id: (required)
|
|
8958
9008
|
:param str id: (required)
|
|
8959
9009
|
:return: V1UpdateCloudSpaceCollabResponse
|
|
@@ -9034,7 +9084,120 @@ class CloudSpaceServiceApi(object):
|
|
|
9034
9084
|
_request_timeout=params.get('_request_timeout'),
|
|
9035
9085
|
collection_formats=collection_formats)
|
|
9036
9086
|
|
|
9037
|
-
def
|
|
9087
|
+
def cloud_space_service_update_cloud_space_ide(self, body: 'CloudSpaceServiceUpdateCloudSpaceIdeBody', project_id: 'str', id: 'str', **kwargs) -> 'V1CloudSpaceInstanceConfig': # noqa: E501
|
|
9088
|
+
"""cloud_space_service_update_cloud_space_ide # noqa: E501
|
|
9089
|
+
|
|
9090
|
+
This method makes a synchronous HTTP request by default. To make an
|
|
9091
|
+
asynchronous HTTP request, please pass async_req=True
|
|
9092
|
+
>>> thread = api.cloud_space_service_update_cloud_space_ide(body, project_id, id, async_req=True)
|
|
9093
|
+
>>> result = thread.get()
|
|
9094
|
+
|
|
9095
|
+
:param async_req bool
|
|
9096
|
+
:param CloudSpaceServiceUpdateCloudSpaceIdeBody body: (required)
|
|
9097
|
+
:param str project_id: (required)
|
|
9098
|
+
:param str id: (required)
|
|
9099
|
+
:return: V1CloudSpaceInstanceConfig
|
|
9100
|
+
If the method is called asynchronously,
|
|
9101
|
+
returns the request thread.
|
|
9102
|
+
"""
|
|
9103
|
+
kwargs['_return_http_data_only'] = True
|
|
9104
|
+
if kwargs.get('async_req'):
|
|
9105
|
+
return self.cloud_space_service_update_cloud_space_ide_with_http_info(body, project_id, id, **kwargs) # noqa: E501
|
|
9106
|
+
else:
|
|
9107
|
+
(data) = self.cloud_space_service_update_cloud_space_ide_with_http_info(body, project_id, id, **kwargs) # noqa: E501
|
|
9108
|
+
return data
|
|
9109
|
+
|
|
9110
|
+
def cloud_space_service_update_cloud_space_ide_with_http_info(self, body: 'CloudSpaceServiceUpdateCloudSpaceIdeBody', project_id: 'str', id: 'str', **kwargs) -> 'V1CloudSpaceInstanceConfig': # noqa: E501
|
|
9111
|
+
"""cloud_space_service_update_cloud_space_ide # noqa: E501
|
|
9112
|
+
|
|
9113
|
+
This method makes a synchronous HTTP request by default. To make an
|
|
9114
|
+
asynchronous HTTP request, please pass async_req=True
|
|
9115
|
+
>>> thread = api.cloud_space_service_update_cloud_space_ide_with_http_info(body, project_id, id, async_req=True)
|
|
9116
|
+
>>> result = thread.get()
|
|
9117
|
+
|
|
9118
|
+
:param async_req bool
|
|
9119
|
+
:param CloudSpaceServiceUpdateCloudSpaceIdeBody body: (required)
|
|
9120
|
+
:param str project_id: (required)
|
|
9121
|
+
:param str id: (required)
|
|
9122
|
+
:return: V1CloudSpaceInstanceConfig
|
|
9123
|
+
If the method is called asynchronously,
|
|
9124
|
+
returns the request thread.
|
|
9125
|
+
"""
|
|
9126
|
+
|
|
9127
|
+
all_params = ['body', 'project_id', 'id'] # noqa: E501
|
|
9128
|
+
all_params.append('async_req')
|
|
9129
|
+
all_params.append('_return_http_data_only')
|
|
9130
|
+
all_params.append('_preload_content')
|
|
9131
|
+
all_params.append('_request_timeout')
|
|
9132
|
+
|
|
9133
|
+
params = locals()
|
|
9134
|
+
for key, val in six.iteritems(params['kwargs']):
|
|
9135
|
+
if key not in all_params:
|
|
9136
|
+
raise TypeError(
|
|
9137
|
+
"Got an unexpected keyword argument '%s'"
|
|
9138
|
+
" to method cloud_space_service_update_cloud_space_ide" % key
|
|
9139
|
+
)
|
|
9140
|
+
params[key] = val
|
|
9141
|
+
del params['kwargs']
|
|
9142
|
+
# verify the required parameter 'body' is set
|
|
9143
|
+
if ('body' not in params or
|
|
9144
|
+
params['body'] is None):
|
|
9145
|
+
raise ValueError("Missing the required parameter `body` when calling `cloud_space_service_update_cloud_space_ide`") # noqa: E501
|
|
9146
|
+
# verify the required parameter 'project_id' is set
|
|
9147
|
+
if ('project_id' not in params or
|
|
9148
|
+
params['project_id'] is None):
|
|
9149
|
+
raise ValueError("Missing the required parameter `project_id` when calling `cloud_space_service_update_cloud_space_ide`") # noqa: E501
|
|
9150
|
+
# verify the required parameter 'id' is set
|
|
9151
|
+
if ('id' not in params or
|
|
9152
|
+
params['id'] is None):
|
|
9153
|
+
raise ValueError("Missing the required parameter `id` when calling `cloud_space_service_update_cloud_space_ide`") # noqa: E501
|
|
9154
|
+
|
|
9155
|
+
collection_formats = {}
|
|
9156
|
+
|
|
9157
|
+
path_params = {}
|
|
9158
|
+
if 'project_id' in params:
|
|
9159
|
+
path_params['projectId'] = params['project_id'] # noqa: E501
|
|
9160
|
+
if 'id' in params:
|
|
9161
|
+
path_params['id'] = params['id'] # noqa: E501
|
|
9162
|
+
|
|
9163
|
+
query_params = []
|
|
9164
|
+
|
|
9165
|
+
header_params = {}
|
|
9166
|
+
|
|
9167
|
+
form_params = []
|
|
9168
|
+
local_var_files = {}
|
|
9169
|
+
|
|
9170
|
+
body_params = None
|
|
9171
|
+
if 'body' in params:
|
|
9172
|
+
body_params = params['body']
|
|
9173
|
+
# HTTP header `Accept`
|
|
9174
|
+
header_params['Accept'] = self.api_client.select_header_accept(
|
|
9175
|
+
['application/json']) # noqa: E501
|
|
9176
|
+
|
|
9177
|
+
# HTTP header `Content-Type`
|
|
9178
|
+
header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
|
|
9179
|
+
['application/json']) # noqa: E501
|
|
9180
|
+
|
|
9181
|
+
# Authentication setting
|
|
9182
|
+
auth_settings = [] # noqa: E501
|
|
9183
|
+
|
|
9184
|
+
return self.api_client.call_api(
|
|
9185
|
+
'/v1/projects/{projectId}/cloudspaces/{id}/ide', 'PUT',
|
|
9186
|
+
path_params,
|
|
9187
|
+
query_params,
|
|
9188
|
+
header_params,
|
|
9189
|
+
body=body_params,
|
|
9190
|
+
post_params=form_params,
|
|
9191
|
+
files=local_var_files,
|
|
9192
|
+
response_type='V1CloudSpaceInstanceConfig', # noqa: E501
|
|
9193
|
+
auth_settings=auth_settings,
|
|
9194
|
+
async_req=params.get('async_req'),
|
|
9195
|
+
_return_http_data_only=params.get('_return_http_data_only'),
|
|
9196
|
+
_preload_content=params.get('_preload_content', True),
|
|
9197
|
+
_request_timeout=params.get('_request_timeout'),
|
|
9198
|
+
collection_formats=collection_formats)
|
|
9199
|
+
|
|
9200
|
+
def cloud_space_service_update_cloud_space_index(self, body: 'CloudSpaceServiceUpdateCloudSpaceIndexBody', project_id: 'str', id: 'str', **kwargs) -> 'V1UpdateIndexResponse': # noqa: E501
|
|
9038
9201
|
"""cloud_space_service_update_cloud_space_index # noqa: E501
|
|
9039
9202
|
|
|
9040
9203
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -9043,7 +9206,7 @@ class CloudSpaceServiceApi(object):
|
|
|
9043
9206
|
>>> result = thread.get()
|
|
9044
9207
|
|
|
9045
9208
|
:param async_req bool
|
|
9046
|
-
:param
|
|
9209
|
+
:param CloudSpaceServiceUpdateCloudSpaceIndexBody body: (required)
|
|
9047
9210
|
:param str project_id: (required)
|
|
9048
9211
|
:param str id: (required)
|
|
9049
9212
|
:return: V1UpdateIndexResponse
|
|
@@ -9057,7 +9220,7 @@ class CloudSpaceServiceApi(object):
|
|
|
9057
9220
|
(data) = self.cloud_space_service_update_cloud_space_index_with_http_info(body, project_id, id, **kwargs) # noqa: E501
|
|
9058
9221
|
return data
|
|
9059
9222
|
|
|
9060
|
-
def cloud_space_service_update_cloud_space_index_with_http_info(self, body: '
|
|
9223
|
+
def cloud_space_service_update_cloud_space_index_with_http_info(self, body: 'CloudSpaceServiceUpdateCloudSpaceIndexBody', project_id: 'str', id: 'str', **kwargs) -> 'V1UpdateIndexResponse': # noqa: E501
|
|
9061
9224
|
"""cloud_space_service_update_cloud_space_index # noqa: E501
|
|
9062
9225
|
|
|
9063
9226
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -9066,7 +9229,7 @@ class CloudSpaceServiceApi(object):
|
|
|
9066
9229
|
>>> result = thread.get()
|
|
9067
9230
|
|
|
9068
9231
|
:param async_req bool
|
|
9069
|
-
:param
|
|
9232
|
+
:param CloudSpaceServiceUpdateCloudSpaceIndexBody body: (required)
|
|
9070
9233
|
:param str project_id: (required)
|
|
9071
9234
|
:param str id: (required)
|
|
9072
9235
|
:return: V1UpdateIndexResponse
|
|
@@ -9147,7 +9310,7 @@ class CloudSpaceServiceApi(object):
|
|
|
9147
9310
|
_request_timeout=params.get('_request_timeout'),
|
|
9148
9311
|
collection_formats=collection_formats)
|
|
9149
9312
|
|
|
9150
|
-
def cloud_space_service_update_cloud_space_instance_config(self, body: '
|
|
9313
|
+
def cloud_space_service_update_cloud_space_instance_config(self, body: 'CloudSpaceServiceUpdateCloudSpaceInstanceConfigBody', project_id: 'str', id: 'str', **kwargs) -> 'V1CloudSpaceInstanceConfig': # noqa: E501
|
|
9151
9314
|
"""cloud_space_service_update_cloud_space_instance_config # noqa: E501
|
|
9152
9315
|
|
|
9153
9316
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -9156,7 +9319,7 @@ class CloudSpaceServiceApi(object):
|
|
|
9156
9319
|
>>> result = thread.get()
|
|
9157
9320
|
|
|
9158
9321
|
:param async_req bool
|
|
9159
|
-
:param
|
|
9322
|
+
:param CloudSpaceServiceUpdateCloudSpaceInstanceConfigBody body: (required)
|
|
9160
9323
|
:param str project_id: (required)
|
|
9161
9324
|
:param str id: (required)
|
|
9162
9325
|
:return: V1CloudSpaceInstanceConfig
|
|
@@ -9170,7 +9333,7 @@ class CloudSpaceServiceApi(object):
|
|
|
9170
9333
|
(data) = self.cloud_space_service_update_cloud_space_instance_config_with_http_info(body, project_id, id, **kwargs) # noqa: E501
|
|
9171
9334
|
return data
|
|
9172
9335
|
|
|
9173
|
-
def cloud_space_service_update_cloud_space_instance_config_with_http_info(self, body: '
|
|
9336
|
+
def cloud_space_service_update_cloud_space_instance_config_with_http_info(self, body: 'CloudSpaceServiceUpdateCloudSpaceInstanceConfigBody', project_id: 'str', id: 'str', **kwargs) -> 'V1CloudSpaceInstanceConfig': # noqa: E501
|
|
9174
9337
|
"""cloud_space_service_update_cloud_space_instance_config # noqa: E501
|
|
9175
9338
|
|
|
9176
9339
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -9179,7 +9342,7 @@ class CloudSpaceServiceApi(object):
|
|
|
9179
9342
|
>>> result = thread.get()
|
|
9180
9343
|
|
|
9181
9344
|
:param async_req bool
|
|
9182
|
-
:param
|
|
9345
|
+
:param CloudSpaceServiceUpdateCloudSpaceInstanceConfigBody body: (required)
|
|
9183
9346
|
:param str project_id: (required)
|
|
9184
9347
|
:param str id: (required)
|
|
9185
9348
|
:return: V1CloudSpaceInstanceConfig
|
|
@@ -9260,7 +9423,7 @@ class CloudSpaceServiceApi(object):
|
|
|
9260
9423
|
_request_timeout=params.get('_request_timeout'),
|
|
9261
9424
|
collection_formats=collection_formats)
|
|
9262
9425
|
|
|
9263
|
-
def cloud_space_service_update_cloud_space_publication(self, body: '
|
|
9426
|
+
def cloud_space_service_update_cloud_space_publication(self, body: 'CloudSpaceServiceUpdateCloudSpacePublicationBody', project_id: 'str', id: 'str', **kwargs) -> 'V1UpdateCloudSpacePublicationResponse': # noqa: E501
|
|
9264
9427
|
"""cloud_space_service_update_cloud_space_publication # noqa: E501
|
|
9265
9428
|
|
|
9266
9429
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -9269,7 +9432,7 @@ class CloudSpaceServiceApi(object):
|
|
|
9269
9432
|
>>> result = thread.get()
|
|
9270
9433
|
|
|
9271
9434
|
:param async_req bool
|
|
9272
|
-
:param
|
|
9435
|
+
:param CloudSpaceServiceUpdateCloudSpacePublicationBody body: (required)
|
|
9273
9436
|
:param str project_id: (required)
|
|
9274
9437
|
:param str id: (required)
|
|
9275
9438
|
:return: V1UpdateCloudSpacePublicationResponse
|
|
@@ -9283,7 +9446,7 @@ class CloudSpaceServiceApi(object):
|
|
|
9283
9446
|
(data) = self.cloud_space_service_update_cloud_space_publication_with_http_info(body, project_id, id, **kwargs) # noqa: E501
|
|
9284
9447
|
return data
|
|
9285
9448
|
|
|
9286
|
-
def cloud_space_service_update_cloud_space_publication_with_http_info(self, body: '
|
|
9449
|
+
def cloud_space_service_update_cloud_space_publication_with_http_info(self, body: 'CloudSpaceServiceUpdateCloudSpacePublicationBody', project_id: 'str', id: 'str', **kwargs) -> 'V1UpdateCloudSpacePublicationResponse': # noqa: E501
|
|
9287
9450
|
"""cloud_space_service_update_cloud_space_publication # noqa: E501
|
|
9288
9451
|
|
|
9289
9452
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -9292,7 +9455,7 @@ class CloudSpaceServiceApi(object):
|
|
|
9292
9455
|
>>> result = thread.get()
|
|
9293
9456
|
|
|
9294
9457
|
:param async_req bool
|
|
9295
|
-
:param
|
|
9458
|
+
:param CloudSpaceServiceUpdateCloudSpacePublicationBody body: (required)
|
|
9296
9459
|
:param str project_id: (required)
|
|
9297
9460
|
:param str id: (required)
|
|
9298
9461
|
:return: V1UpdateCloudSpacePublicationResponse
|
|
@@ -9373,7 +9536,7 @@ class CloudSpaceServiceApi(object):
|
|
|
9373
9536
|
_request_timeout=params.get('_request_timeout'),
|
|
9374
9537
|
collection_formats=collection_formats)
|
|
9375
9538
|
|
|
9376
|
-
def cloud_space_service_update_cloud_space_sleep_config(self, body: '
|
|
9539
|
+
def cloud_space_service_update_cloud_space_sleep_config(self, body: 'CloudSpaceServiceUpdateCloudSpaceSleepConfigBody', project_id: 'str', id: 'str', **kwargs) -> 'V1CloudSpaceInstanceConfig': # noqa: E501
|
|
9377
9540
|
"""cloud_space_service_update_cloud_space_sleep_config # noqa: E501
|
|
9378
9541
|
|
|
9379
9542
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -9382,7 +9545,7 @@ class CloudSpaceServiceApi(object):
|
|
|
9382
9545
|
>>> result = thread.get()
|
|
9383
9546
|
|
|
9384
9547
|
:param async_req bool
|
|
9385
|
-
:param
|
|
9548
|
+
:param CloudSpaceServiceUpdateCloudSpaceSleepConfigBody body: (required)
|
|
9386
9549
|
:param str project_id: (required)
|
|
9387
9550
|
:param str id: (required)
|
|
9388
9551
|
:return: V1CloudSpaceInstanceConfig
|
|
@@ -9396,7 +9559,7 @@ class CloudSpaceServiceApi(object):
|
|
|
9396
9559
|
(data) = self.cloud_space_service_update_cloud_space_sleep_config_with_http_info(body, project_id, id, **kwargs) # noqa: E501
|
|
9397
9560
|
return data
|
|
9398
9561
|
|
|
9399
|
-
def cloud_space_service_update_cloud_space_sleep_config_with_http_info(self, body: '
|
|
9562
|
+
def cloud_space_service_update_cloud_space_sleep_config_with_http_info(self, body: 'CloudSpaceServiceUpdateCloudSpaceSleepConfigBody', project_id: 'str', id: 'str', **kwargs) -> 'V1CloudSpaceInstanceConfig': # noqa: E501
|
|
9400
9563
|
"""cloud_space_service_update_cloud_space_sleep_config # noqa: E501
|
|
9401
9564
|
|
|
9402
9565
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -9405,7 +9568,7 @@ class CloudSpaceServiceApi(object):
|
|
|
9405
9568
|
>>> result = thread.get()
|
|
9406
9569
|
|
|
9407
9570
|
:param async_req bool
|
|
9408
|
-
:param
|
|
9571
|
+
:param CloudSpaceServiceUpdateCloudSpaceSleepConfigBody body: (required)
|
|
9409
9572
|
:param str project_id: (required)
|
|
9410
9573
|
:param str id: (required)
|
|
9411
9574
|
:return: V1CloudSpaceInstanceConfig
|
|
@@ -9486,7 +9649,7 @@ class CloudSpaceServiceApi(object):
|
|
|
9486
9649
|
_request_timeout=params.get('_request_timeout'),
|
|
9487
9650
|
collection_formats=collection_formats)
|
|
9488
9651
|
|
|
9489
|
-
def cloud_space_service_update_cloud_space_version(self, body: '
|
|
9652
|
+
def cloud_space_service_update_cloud_space_version(self, body: 'CloudSpaceServiceUpdateCloudSpaceVersionBody', project_id: 'str', cloud_space_id: 'str', id: 'str', **kwargs) -> 'V1CloudSpaceVersion': # noqa: E501
|
|
9490
9653
|
"""cloud_space_service_update_cloud_space_version # noqa: E501
|
|
9491
9654
|
|
|
9492
9655
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -9495,7 +9658,7 @@ class CloudSpaceServiceApi(object):
|
|
|
9495
9658
|
>>> result = thread.get()
|
|
9496
9659
|
|
|
9497
9660
|
:param async_req bool
|
|
9498
|
-
:param
|
|
9661
|
+
:param CloudSpaceServiceUpdateCloudSpaceVersionBody body: (required)
|
|
9499
9662
|
:param str project_id: (required)
|
|
9500
9663
|
:param str cloud_space_id: (required)
|
|
9501
9664
|
:param str id: (required)
|
|
@@ -9510,7 +9673,7 @@ class CloudSpaceServiceApi(object):
|
|
|
9510
9673
|
(data) = self.cloud_space_service_update_cloud_space_version_with_http_info(body, project_id, cloud_space_id, id, **kwargs) # noqa: E501
|
|
9511
9674
|
return data
|
|
9512
9675
|
|
|
9513
|
-
def cloud_space_service_update_cloud_space_version_with_http_info(self, body: '
|
|
9676
|
+
def cloud_space_service_update_cloud_space_version_with_http_info(self, body: 'CloudSpaceServiceUpdateCloudSpaceVersionBody', project_id: 'str', cloud_space_id: 'str', id: 'str', **kwargs) -> 'V1CloudSpaceVersion': # noqa: E501
|
|
9514
9677
|
"""cloud_space_service_update_cloud_space_version # noqa: E501
|
|
9515
9678
|
|
|
9516
9679
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -9519,7 +9682,7 @@ class CloudSpaceServiceApi(object):
|
|
|
9519
9682
|
>>> result = thread.get()
|
|
9520
9683
|
|
|
9521
9684
|
:param async_req bool
|
|
9522
|
-
:param
|
|
9685
|
+
:param CloudSpaceServiceUpdateCloudSpaceVersionBody body: (required)
|
|
9523
9686
|
:param str project_id: (required)
|
|
9524
9687
|
:param str cloud_space_id: (required)
|
|
9525
9688
|
:param str id: (required)
|
|
@@ -9607,7 +9770,7 @@ class CloudSpaceServiceApi(object):
|
|
|
9607
9770
|
_request_timeout=params.get('_request_timeout'),
|
|
9608
9771
|
collection_formats=collection_formats)
|
|
9609
9772
|
|
|
9610
|
-
def cloud_space_service_update_cloud_space_version_publication(self, body: '
|
|
9773
|
+
def cloud_space_service_update_cloud_space_version_publication(self, body: 'CloudSpaceServiceUpdateCloudSpaceVersionPublicationBody', project_id: 'str', cloud_space_id: 'str', **kwargs) -> 'V1CloudSpaceVersionPublication': # noqa: E501
|
|
9611
9774
|
"""cloud_space_service_update_cloud_space_version_publication # noqa: E501
|
|
9612
9775
|
|
|
9613
9776
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -9616,7 +9779,7 @@ class CloudSpaceServiceApi(object):
|
|
|
9616
9779
|
>>> result = thread.get()
|
|
9617
9780
|
|
|
9618
9781
|
:param async_req bool
|
|
9619
|
-
:param
|
|
9782
|
+
:param CloudSpaceServiceUpdateCloudSpaceVersionPublicationBody body: (required)
|
|
9620
9783
|
:param str project_id: (required)
|
|
9621
9784
|
:param str cloud_space_id: (required)
|
|
9622
9785
|
:return: V1CloudSpaceVersionPublication
|
|
@@ -9630,7 +9793,7 @@ class CloudSpaceServiceApi(object):
|
|
|
9630
9793
|
(data) = self.cloud_space_service_update_cloud_space_version_publication_with_http_info(body, project_id, cloud_space_id, **kwargs) # noqa: E501
|
|
9631
9794
|
return data
|
|
9632
9795
|
|
|
9633
|
-
def cloud_space_service_update_cloud_space_version_publication_with_http_info(self, body: '
|
|
9796
|
+
def cloud_space_service_update_cloud_space_version_publication_with_http_info(self, body: 'CloudSpaceServiceUpdateCloudSpaceVersionPublicationBody', project_id: 'str', cloud_space_id: 'str', **kwargs) -> 'V1CloudSpaceVersionPublication': # noqa: E501
|
|
9634
9797
|
"""cloud_space_service_update_cloud_space_version_publication # noqa: E501
|
|
9635
9798
|
|
|
9636
9799
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -9639,7 +9802,7 @@ class CloudSpaceServiceApi(object):
|
|
|
9639
9802
|
>>> result = thread.get()
|
|
9640
9803
|
|
|
9641
9804
|
:param async_req bool
|
|
9642
|
-
:param
|
|
9805
|
+
:param CloudSpaceServiceUpdateCloudSpaceVersionPublicationBody body: (required)
|
|
9643
9806
|
:param str project_id: (required)
|
|
9644
9807
|
:param str cloud_space_id: (required)
|
|
9645
9808
|
:return: V1CloudSpaceVersionPublication
|
|
@@ -9720,7 +9883,7 @@ class CloudSpaceServiceApi(object):
|
|
|
9720
9883
|
_request_timeout=params.get('_request_timeout'),
|
|
9721
9884
|
collection_formats=collection_formats)
|
|
9722
9885
|
|
|
9723
|
-
def cloud_space_service_update_cloud_space_visibility(self, body: '
|
|
9886
|
+
def cloud_space_service_update_cloud_space_visibility(self, body: 'CloudSpaceServiceUpdateCloudSpaceVisibilityBody', project_id: 'str', cloudspace_id: 'str', **kwargs) -> 'V1UpdateCloudSpaceVisibilityResponse': # noqa: E501
|
|
9724
9887
|
"""UpdateJobVisibility updates the jobs visibility, mainly switch between public and private # noqa: E501
|
|
9725
9888
|
|
|
9726
9889
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -9729,7 +9892,7 @@ class CloudSpaceServiceApi(object):
|
|
|
9729
9892
|
>>> result = thread.get()
|
|
9730
9893
|
|
|
9731
9894
|
:param async_req bool
|
|
9732
|
-
:param
|
|
9895
|
+
:param CloudSpaceServiceUpdateCloudSpaceVisibilityBody body: (required)
|
|
9733
9896
|
:param str project_id: (required)
|
|
9734
9897
|
:param str cloudspace_id: (required)
|
|
9735
9898
|
:return: V1UpdateCloudSpaceVisibilityResponse
|
|
@@ -9743,7 +9906,7 @@ class CloudSpaceServiceApi(object):
|
|
|
9743
9906
|
(data) = self.cloud_space_service_update_cloud_space_visibility_with_http_info(body, project_id, cloudspace_id, **kwargs) # noqa: E501
|
|
9744
9907
|
return data
|
|
9745
9908
|
|
|
9746
|
-
def cloud_space_service_update_cloud_space_visibility_with_http_info(self, body: '
|
|
9909
|
+
def cloud_space_service_update_cloud_space_visibility_with_http_info(self, body: 'CloudSpaceServiceUpdateCloudSpaceVisibilityBody', project_id: 'str', cloudspace_id: 'str', **kwargs) -> 'V1UpdateCloudSpaceVisibilityResponse': # noqa: E501
|
|
9747
9910
|
"""UpdateJobVisibility updates the jobs visibility, mainly switch between public and private # noqa: E501
|
|
9748
9911
|
|
|
9749
9912
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -9752,7 +9915,7 @@ class CloudSpaceServiceApi(object):
|
|
|
9752
9915
|
>>> result = thread.get()
|
|
9753
9916
|
|
|
9754
9917
|
:param async_req bool
|
|
9755
|
-
:param
|
|
9918
|
+
:param CloudSpaceServiceUpdateCloudSpaceVisibilityBody body: (required)
|
|
9756
9919
|
:param str project_id: (required)
|
|
9757
9920
|
:param str cloudspace_id: (required)
|
|
9758
9921
|
:return: V1UpdateCloudSpaceVisibilityResponse
|