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
|
@@ -43,7 +43,7 @@ class SchedulesServiceApi(object):
|
|
|
43
43
|
api_client = ApiClient()
|
|
44
44
|
self.api_client = api_client
|
|
45
45
|
|
|
46
|
-
def schedules_service_create_schedule(self, body: '
|
|
46
|
+
def schedules_service_create_schedule(self, body: 'SchedulesServiceCreateScheduleBody', project_id: 'str', **kwargs) -> 'V1Schedule': # noqa: E501
|
|
47
47
|
"""schedules_service_create_schedule # noqa: E501
|
|
48
48
|
|
|
49
49
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -52,8 +52,8 @@ class SchedulesServiceApi(object):
|
|
|
52
52
|
>>> result = thread.get()
|
|
53
53
|
|
|
54
54
|
:param async_req bool
|
|
55
|
-
:param
|
|
56
|
-
:param str project_id: (required)
|
|
55
|
+
:param SchedulesServiceCreateScheduleBody body: (required)
|
|
56
|
+
:param str project_id: Required (required)
|
|
57
57
|
:return: V1Schedule
|
|
58
58
|
If the method is called asynchronously,
|
|
59
59
|
returns the request thread.
|
|
@@ -65,7 +65,7 @@ class SchedulesServiceApi(object):
|
|
|
65
65
|
(data) = self.schedules_service_create_schedule_with_http_info(body, project_id, **kwargs) # noqa: E501
|
|
66
66
|
return data
|
|
67
67
|
|
|
68
|
-
def schedules_service_create_schedule_with_http_info(self, body: '
|
|
68
|
+
def schedules_service_create_schedule_with_http_info(self, body: 'SchedulesServiceCreateScheduleBody', project_id: 'str', **kwargs) -> 'V1Schedule': # noqa: E501
|
|
69
69
|
"""schedules_service_create_schedule # noqa: E501
|
|
70
70
|
|
|
71
71
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -74,8 +74,8 @@ class SchedulesServiceApi(object):
|
|
|
74
74
|
>>> result = thread.get()
|
|
75
75
|
|
|
76
76
|
:param async_req bool
|
|
77
|
-
:param
|
|
78
|
-
:param str project_id: (required)
|
|
77
|
+
:param SchedulesServiceCreateScheduleBody body: (required)
|
|
78
|
+
:param str project_id: Required (required)
|
|
79
79
|
:return: V1Schedule
|
|
80
80
|
If the method is called asynchronously,
|
|
81
81
|
returns the request thread.
|
|
@@ -148,7 +148,7 @@ class SchedulesServiceApi(object):
|
|
|
148
148
|
_request_timeout=params.get('_request_timeout'),
|
|
149
149
|
collection_formats=collection_formats)
|
|
150
150
|
|
|
151
|
-
def schedules_service_create_schedule_run(self, body: '
|
|
151
|
+
def schedules_service_create_schedule_run(self, body: 'SchedulesServiceCreateScheduleRunBody', project_id: 'str', cloudspace_id: 'str', schedule_id: 'str', **kwargs) -> 'V1ScheduleRun': # noqa: E501
|
|
152
152
|
"""schedules_service_create_schedule_run # noqa: E501
|
|
153
153
|
|
|
154
154
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -157,10 +157,10 @@ class SchedulesServiceApi(object):
|
|
|
157
157
|
>>> result = thread.get()
|
|
158
158
|
|
|
159
159
|
:param async_req bool
|
|
160
|
-
:param
|
|
161
|
-
:param str project_id: (required)
|
|
162
|
-
:param str cloudspace_id: (required)
|
|
163
|
-
:param str schedule_id: (required)
|
|
160
|
+
:param SchedulesServiceCreateScheduleRunBody body: (required)
|
|
161
|
+
:param str project_id: Required (required)
|
|
162
|
+
:param str cloudspace_id: Required (required)
|
|
163
|
+
:param str schedule_id: Required (required)
|
|
164
164
|
:return: V1ScheduleRun
|
|
165
165
|
If the method is called asynchronously,
|
|
166
166
|
returns the request thread.
|
|
@@ -172,7 +172,7 @@ class SchedulesServiceApi(object):
|
|
|
172
172
|
(data) = self.schedules_service_create_schedule_run_with_http_info(body, project_id, cloudspace_id, schedule_id, **kwargs) # noqa: E501
|
|
173
173
|
return data
|
|
174
174
|
|
|
175
|
-
def schedules_service_create_schedule_run_with_http_info(self, body: '
|
|
175
|
+
def schedules_service_create_schedule_run_with_http_info(self, body: 'SchedulesServiceCreateScheduleRunBody', project_id: 'str', cloudspace_id: 'str', schedule_id: 'str', **kwargs) -> 'V1ScheduleRun': # noqa: E501
|
|
176
176
|
"""schedules_service_create_schedule_run # noqa: E501
|
|
177
177
|
|
|
178
178
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -181,10 +181,10 @@ class SchedulesServiceApi(object):
|
|
|
181
181
|
>>> result = thread.get()
|
|
182
182
|
|
|
183
183
|
:param async_req bool
|
|
184
|
-
:param
|
|
185
|
-
:param str project_id: (required)
|
|
186
|
-
:param str cloudspace_id: (required)
|
|
187
|
-
:param str schedule_id: (required)
|
|
184
|
+
:param SchedulesServiceCreateScheduleRunBody body: (required)
|
|
185
|
+
:param str project_id: Required (required)
|
|
186
|
+
:param str cloudspace_id: Required (required)
|
|
187
|
+
:param str schedule_id: Required (required)
|
|
188
188
|
:return: V1ScheduleRun
|
|
189
189
|
If the method is called asynchronously,
|
|
190
190
|
returns the request thread.
|
|
@@ -278,8 +278,8 @@ class SchedulesServiceApi(object):
|
|
|
278
278
|
>>> result = thread.get()
|
|
279
279
|
|
|
280
280
|
:param async_req bool
|
|
281
|
-
:param str project_id: (required)
|
|
282
|
-
:param str id: (required)
|
|
281
|
+
:param str project_id: Required (required)
|
|
282
|
+
:param str id: Required (required)
|
|
283
283
|
:return: V1DeleteScheduleResponse
|
|
284
284
|
If the method is called asynchronously,
|
|
285
285
|
returns the request thread.
|
|
@@ -300,8 +300,8 @@ class SchedulesServiceApi(object):
|
|
|
300
300
|
>>> result = thread.get()
|
|
301
301
|
|
|
302
302
|
:param async_req bool
|
|
303
|
-
:param str project_id: (required)
|
|
304
|
-
:param str id: (required)
|
|
303
|
+
:param str project_id: Required (required)
|
|
304
|
+
:param str id: Required (required)
|
|
305
305
|
:return: V1DeleteScheduleResponse
|
|
306
306
|
If the method is called asynchronously,
|
|
307
307
|
returns the request thread.
|
|
@@ -379,8 +379,8 @@ class SchedulesServiceApi(object):
|
|
|
379
379
|
>>> result = thread.get()
|
|
380
380
|
|
|
381
381
|
:param async_req bool
|
|
382
|
-
:param str project_id: (required)
|
|
383
|
-
:param str id: (required)
|
|
382
|
+
:param str project_id: Required (required)
|
|
383
|
+
:param str id: Required (required)
|
|
384
384
|
:return: V1Schedule
|
|
385
385
|
If the method is called asynchronously,
|
|
386
386
|
returns the request thread.
|
|
@@ -401,8 +401,8 @@ class SchedulesServiceApi(object):
|
|
|
401
401
|
>>> result = thread.get()
|
|
402
402
|
|
|
403
403
|
:param async_req bool
|
|
404
|
-
:param str project_id: (required)
|
|
405
|
-
:param str id: (required)
|
|
404
|
+
:param str project_id: Required (required)
|
|
405
|
+
:param str id: Required (required)
|
|
406
406
|
:return: V1Schedule
|
|
407
407
|
If the method is called asynchronously,
|
|
408
408
|
returns the request thread.
|
|
@@ -480,10 +480,10 @@ class SchedulesServiceApi(object):
|
|
|
480
480
|
>>> result = thread.get()
|
|
481
481
|
|
|
482
482
|
:param async_req bool
|
|
483
|
-
:param str project_id: (required)
|
|
484
|
-
:param str cloudspace_id: (required)
|
|
485
|
-
:param str schedule_id: (required)
|
|
486
|
-
:param str run_id: (required)
|
|
483
|
+
:param str project_id: Required (required)
|
|
484
|
+
:param str cloudspace_id: Required (required)
|
|
485
|
+
:param str schedule_id: Required (required)
|
|
486
|
+
:param str run_id: Required (required)
|
|
487
487
|
:return: V1ScheduleRun
|
|
488
488
|
If the method is called asynchronously,
|
|
489
489
|
returns the request thread.
|
|
@@ -504,10 +504,10 @@ class SchedulesServiceApi(object):
|
|
|
504
504
|
>>> result = thread.get()
|
|
505
505
|
|
|
506
506
|
:param async_req bool
|
|
507
|
-
:param str project_id: (required)
|
|
508
|
-
:param str cloudspace_id: (required)
|
|
509
|
-
:param str schedule_id: (required)
|
|
510
|
-
:param str run_id: (required)
|
|
507
|
+
:param str project_id: Required (required)
|
|
508
|
+
:param str cloudspace_id: Required (required)
|
|
509
|
+
:param str schedule_id: Required (required)
|
|
510
|
+
:param str run_id: Required (required)
|
|
511
511
|
:return: V1ScheduleRun
|
|
512
512
|
If the method is called asynchronously,
|
|
513
513
|
returns the request thread.
|
|
@@ -597,9 +597,9 @@ class SchedulesServiceApi(object):
|
|
|
597
597
|
>>> result = thread.get()
|
|
598
598
|
|
|
599
599
|
:param async_req bool
|
|
600
|
-
:param str project_id: (required)
|
|
601
|
-
:param str cloudspace_id: (required)
|
|
602
|
-
:param str schedule_id: (required)
|
|
600
|
+
:param str project_id: Required (required)
|
|
601
|
+
:param str cloudspace_id: Required (required)
|
|
602
|
+
:param str schedule_id: Required (required)
|
|
603
603
|
:return: V1ListScheduleRunsResponse
|
|
604
604
|
If the method is called asynchronously,
|
|
605
605
|
returns the request thread.
|
|
@@ -620,9 +620,9 @@ class SchedulesServiceApi(object):
|
|
|
620
620
|
>>> result = thread.get()
|
|
621
621
|
|
|
622
622
|
:param async_req bool
|
|
623
|
-
:param str project_id: (required)
|
|
624
|
-
:param str cloudspace_id: (required)
|
|
625
|
-
:param str schedule_id: (required)
|
|
623
|
+
:param str project_id: Required (required)
|
|
624
|
+
:param str cloudspace_id: Required (required)
|
|
625
|
+
:param str schedule_id: Required (required)
|
|
626
626
|
:return: V1ListScheduleRunsResponse
|
|
627
627
|
If the method is called asynchronously,
|
|
628
628
|
returns the request thread.
|
|
@@ -706,11 +706,11 @@ class SchedulesServiceApi(object):
|
|
|
706
706
|
>>> result = thread.get()
|
|
707
707
|
|
|
708
708
|
:param async_req bool
|
|
709
|
-
:param str project_id: (required)
|
|
709
|
+
:param str project_id: Required (required)
|
|
710
710
|
:param str resource_id:
|
|
711
711
|
:param str page_token:
|
|
712
712
|
:param int limit:
|
|
713
|
-
:param str state:
|
|
713
|
+
:param str state: For example, running, stopped, completed, failed
|
|
714
714
|
:param str parent_resource_id:
|
|
715
715
|
:return: V1ListSchedulesResponse
|
|
716
716
|
If the method is called asynchronously,
|
|
@@ -732,11 +732,11 @@ class SchedulesServiceApi(object):
|
|
|
732
732
|
>>> result = thread.get()
|
|
733
733
|
|
|
734
734
|
:param async_req bool
|
|
735
|
-
:param str project_id: (required)
|
|
735
|
+
:param str project_id: Required (required)
|
|
736
736
|
:param str resource_id:
|
|
737
737
|
:param str page_token:
|
|
738
738
|
:param int limit:
|
|
739
|
-
:param str state:
|
|
739
|
+
:param str state: For example, running, stopped, completed, failed
|
|
740
740
|
:param str parent_resource_id:
|
|
741
741
|
:return: V1ListSchedulesResponse
|
|
742
742
|
If the method is called asynchronously,
|
|
@@ -810,7 +810,7 @@ class SchedulesServiceApi(object):
|
|
|
810
810
|
_request_timeout=params.get('_request_timeout'),
|
|
811
811
|
collection_formats=collection_formats)
|
|
812
812
|
|
|
813
|
-
def schedules_service_update_schedule(self, body: '
|
|
813
|
+
def schedules_service_update_schedule(self, body: 'SchedulesServiceUpdateScheduleBody', project_id: 'str', id: 'str', **kwargs) -> 'V1Schedule': # noqa: E501
|
|
814
814
|
"""schedules_service_update_schedule # noqa: E501
|
|
815
815
|
|
|
816
816
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -819,9 +819,9 @@ class SchedulesServiceApi(object):
|
|
|
819
819
|
>>> result = thread.get()
|
|
820
820
|
|
|
821
821
|
:param async_req bool
|
|
822
|
-
:param
|
|
822
|
+
:param SchedulesServiceUpdateScheduleBody body: (required)
|
|
823
823
|
:param str project_id: (required)
|
|
824
|
-
:param str id: (required)
|
|
824
|
+
:param str id: Read only (required)
|
|
825
825
|
:return: V1Schedule
|
|
826
826
|
If the method is called asynchronously,
|
|
827
827
|
returns the request thread.
|
|
@@ -833,7 +833,7 @@ class SchedulesServiceApi(object):
|
|
|
833
833
|
(data) = self.schedules_service_update_schedule_with_http_info(body, project_id, id, **kwargs) # noqa: E501
|
|
834
834
|
return data
|
|
835
835
|
|
|
836
|
-
def schedules_service_update_schedule_with_http_info(self, body: '
|
|
836
|
+
def schedules_service_update_schedule_with_http_info(self, body: 'SchedulesServiceUpdateScheduleBody', project_id: 'str', id: 'str', **kwargs) -> 'V1Schedule': # noqa: E501
|
|
837
837
|
"""schedules_service_update_schedule # noqa: E501
|
|
838
838
|
|
|
839
839
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -842,9 +842,9 @@ class SchedulesServiceApi(object):
|
|
|
842
842
|
>>> result = thread.get()
|
|
843
843
|
|
|
844
844
|
:param async_req bool
|
|
845
|
-
:param
|
|
845
|
+
:param SchedulesServiceUpdateScheduleBody body: (required)
|
|
846
846
|
:param str project_id: (required)
|
|
847
|
-
:param str id: (required)
|
|
847
|
+
:param str id: Read only (required)
|
|
848
848
|
:return: V1Schedule
|
|
849
849
|
If the method is called asynchronously,
|
|
850
850
|
returns the request thread.
|
|
@@ -43,7 +43,7 @@ class SecretServiceApi(object):
|
|
|
43
43
|
api_client = ApiClient()
|
|
44
44
|
self.api_client = api_client
|
|
45
45
|
|
|
46
|
-
def secret_service_create_secret(self, body: '
|
|
46
|
+
def secret_service_create_secret(self, body: 'SecretServiceCreateSecretBody', project_id: 'str', **kwargs) -> 'V1Secret': # noqa: E501
|
|
47
47
|
"""secret_service_create_secret # noqa: E501
|
|
48
48
|
|
|
49
49
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -52,7 +52,7 @@ class SecretServiceApi(object):
|
|
|
52
52
|
>>> result = thread.get()
|
|
53
53
|
|
|
54
54
|
:param async_req bool
|
|
55
|
-
:param
|
|
55
|
+
:param SecretServiceCreateSecretBody body: (required)
|
|
56
56
|
:param str project_id: (required)
|
|
57
57
|
:return: V1Secret
|
|
58
58
|
If the method is called asynchronously,
|
|
@@ -65,7 +65,7 @@ class SecretServiceApi(object):
|
|
|
65
65
|
(data) = self.secret_service_create_secret_with_http_info(body, project_id, **kwargs) # noqa: E501
|
|
66
66
|
return data
|
|
67
67
|
|
|
68
|
-
def secret_service_create_secret_with_http_info(self, body: '
|
|
68
|
+
def secret_service_create_secret_with_http_info(self, body: 'SecretServiceCreateSecretBody', project_id: 'str', **kwargs) -> 'V1Secret': # noqa: E501
|
|
69
69
|
"""secret_service_create_secret # noqa: E501
|
|
70
70
|
|
|
71
71
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -74,7 +74,7 @@ class SecretServiceApi(object):
|
|
|
74
74
|
>>> result = thread.get()
|
|
75
75
|
|
|
76
76
|
:param async_req bool
|
|
77
|
-
:param
|
|
77
|
+
:param SecretServiceCreateSecretBody body: (required)
|
|
78
78
|
:param str project_id: (required)
|
|
79
79
|
:return: V1Secret
|
|
80
80
|
If the method is called asynchronously,
|
|
@@ -815,7 +815,7 @@ class SecretServiceApi(object):
|
|
|
815
815
|
_request_timeout=params.get('_request_timeout'),
|
|
816
816
|
collection_formats=collection_formats)
|
|
817
817
|
|
|
818
|
-
def secret_service_update_secret(self, body: '
|
|
818
|
+
def secret_service_update_secret(self, body: 'SecretServiceUpdateSecretBody', project_id: 'str', id: 'str', **kwargs) -> 'V1Secret': # noqa: E501
|
|
819
819
|
"""secret_service_update_secret # noqa: E501
|
|
820
820
|
|
|
821
821
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -824,7 +824,7 @@ class SecretServiceApi(object):
|
|
|
824
824
|
>>> result = thread.get()
|
|
825
825
|
|
|
826
826
|
:param async_req bool
|
|
827
|
-
:param
|
|
827
|
+
:param SecretServiceUpdateSecretBody body: (required)
|
|
828
828
|
:param str project_id: (required)
|
|
829
829
|
:param str id: (required)
|
|
830
830
|
:return: V1Secret
|
|
@@ -838,7 +838,7 @@ class SecretServiceApi(object):
|
|
|
838
838
|
(data) = self.secret_service_update_secret_with_http_info(body, project_id, id, **kwargs) # noqa: E501
|
|
839
839
|
return data
|
|
840
840
|
|
|
841
|
-
def secret_service_update_secret_with_http_info(self, body: '
|
|
841
|
+
def secret_service_update_secret_with_http_info(self, body: 'SecretServiceUpdateSecretBody', project_id: 'str', id: 'str', **kwargs) -> 'V1Secret': # noqa: E501
|
|
842
842
|
"""secret_service_update_secret # noqa: E501
|
|
843
843
|
|
|
844
844
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -847,7 +847,7 @@ class SecretServiceApi(object):
|
|
|
847
847
|
>>> result = thread.get()
|
|
848
848
|
|
|
849
849
|
:param async_req bool
|
|
850
|
-
:param
|
|
850
|
+
:param SecretServiceUpdateSecretBody body: (required)
|
|
851
851
|
:param str project_id: (required)
|
|
852
852
|
:param str id: (required)
|
|
853
853
|
:return: V1Secret
|
|
@@ -928,7 +928,7 @@ class SecretServiceApi(object):
|
|
|
928
928
|
_request_timeout=params.get('_request_timeout'),
|
|
929
929
|
collection_formats=collection_formats)
|
|
930
930
|
|
|
931
|
-
def secret_service_update_user_secret(self, body: '
|
|
931
|
+
def secret_service_update_user_secret(self, body: 'SecretServiceUpdateUserSecretBody', id: 'str', **kwargs) -> 'V1Secret': # noqa: E501
|
|
932
932
|
"""secret_service_update_user_secret # noqa: E501
|
|
933
933
|
|
|
934
934
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -937,7 +937,7 @@ class SecretServiceApi(object):
|
|
|
937
937
|
>>> result = thread.get()
|
|
938
938
|
|
|
939
939
|
:param async_req bool
|
|
940
|
-
:param
|
|
940
|
+
:param SecretServiceUpdateUserSecretBody body: (required)
|
|
941
941
|
:param str id: (required)
|
|
942
942
|
:return: V1Secret
|
|
943
943
|
If the method is called asynchronously,
|
|
@@ -950,7 +950,7 @@ class SecretServiceApi(object):
|
|
|
950
950
|
(data) = self.secret_service_update_user_secret_with_http_info(body, id, **kwargs) # noqa: E501
|
|
951
951
|
return data
|
|
952
952
|
|
|
953
|
-
def secret_service_update_user_secret_with_http_info(self, body: '
|
|
953
|
+
def secret_service_update_user_secret_with_http_info(self, body: 'SecretServiceUpdateUserSecretBody', id: 'str', **kwargs) -> 'V1Secret': # noqa: E501
|
|
954
954
|
"""secret_service_update_user_secret # noqa: E501
|
|
955
955
|
|
|
956
956
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -959,7 +959,7 @@ class SecretServiceApi(object):
|
|
|
959
959
|
>>> result = thread.get()
|
|
960
960
|
|
|
961
961
|
:param async_req bool
|
|
962
|
-
:param
|
|
962
|
+
:param SecretServiceUpdateUserSecretBody body: (required)
|
|
963
963
|
:param str id: (required)
|
|
964
964
|
:return: V1Secret
|
|
965
965
|
If the method is called asynchronously,
|
|
@@ -43,7 +43,7 @@ class SlurmJobsUserServiceApi(object):
|
|
|
43
43
|
api_client = ApiClient()
|
|
44
44
|
self.api_client = api_client
|
|
45
45
|
|
|
46
|
-
def slurm_jobs_user_service_create_slurm_cluster_user(self, body: '
|
|
46
|
+
def slurm_jobs_user_service_create_slurm_cluster_user(self, body: 'SlurmJobsUserServiceCreateSLURMClusterUserBody', cluster_id: 'str', **kwargs) -> 'V1SlurmClusterUser': # noqa: E501
|
|
47
47
|
"""CreateSLURMClusterUser is used to create a new user on a SLURM cluster. # noqa: E501
|
|
48
48
|
|
|
49
49
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -52,7 +52,7 @@ class SlurmJobsUserServiceApi(object):
|
|
|
52
52
|
>>> result = thread.get()
|
|
53
53
|
|
|
54
54
|
:param async_req bool
|
|
55
|
-
:param
|
|
55
|
+
:param SlurmJobsUserServiceCreateSLURMClusterUserBody body: (required)
|
|
56
56
|
:param str cluster_id: (required)
|
|
57
57
|
:return: V1SlurmClusterUser
|
|
58
58
|
If the method is called asynchronously,
|
|
@@ -65,7 +65,7 @@ class SlurmJobsUserServiceApi(object):
|
|
|
65
65
|
(data) = self.slurm_jobs_user_service_create_slurm_cluster_user_with_http_info(body, cluster_id, **kwargs) # noqa: E501
|
|
66
66
|
return data
|
|
67
67
|
|
|
68
|
-
def slurm_jobs_user_service_create_slurm_cluster_user_with_http_info(self, body: '
|
|
68
|
+
def slurm_jobs_user_service_create_slurm_cluster_user_with_http_info(self, body: 'SlurmJobsUserServiceCreateSLURMClusterUserBody', cluster_id: 'str', **kwargs) -> 'V1SlurmClusterUser': # noqa: E501
|
|
69
69
|
"""CreateSLURMClusterUser is used to create a new user on a SLURM cluster. # noqa: E501
|
|
70
70
|
|
|
71
71
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -74,7 +74,7 @@ class SlurmJobsUserServiceApi(object):
|
|
|
74
74
|
>>> result = thread.get()
|
|
75
75
|
|
|
76
76
|
:param async_req bool
|
|
77
|
-
:param
|
|
77
|
+
:param SlurmJobsUserServiceCreateSLURMClusterUserBody body: (required)
|
|
78
78
|
:param str cluster_id: (required)
|
|
79
79
|
:return: V1SlurmClusterUser
|
|
80
80
|
If the method is called asynchronously,
|
|
@@ -148,7 +148,7 @@ class SlurmJobsUserServiceApi(object):
|
|
|
148
148
|
_request_timeout=params.get('_request_timeout'),
|
|
149
149
|
collection_formats=collection_formats)
|
|
150
150
|
|
|
151
|
-
def slurm_jobs_user_service_create_user_slurm_job(self, body: '
|
|
151
|
+
def slurm_jobs_user_service_create_user_slurm_job(self, body: 'SlurmJobsUserServiceCreateUserSLURMJobBody', project_id: 'str', **kwargs) -> 'V1SLURMJob': # noqa: E501
|
|
152
152
|
"""CreateUserSLURMJob is used to create a new SLURM job for an authenticated user. For creating SLURM Jobs from an agent, please use the SLURMJobsAgentService. # noqa: E501
|
|
153
153
|
|
|
154
154
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -157,7 +157,7 @@ class SlurmJobsUserServiceApi(object):
|
|
|
157
157
|
>>> result = thread.get()
|
|
158
158
|
|
|
159
159
|
:param async_req bool
|
|
160
|
-
:param
|
|
160
|
+
:param SlurmJobsUserServiceCreateUserSLURMJobBody body: (required)
|
|
161
161
|
:param str project_id: (required)
|
|
162
162
|
:return: V1SLURMJob
|
|
163
163
|
If the method is called asynchronously,
|
|
@@ -170,7 +170,7 @@ class SlurmJobsUserServiceApi(object):
|
|
|
170
170
|
(data) = self.slurm_jobs_user_service_create_user_slurm_job_with_http_info(body, project_id, **kwargs) # noqa: E501
|
|
171
171
|
return data
|
|
172
172
|
|
|
173
|
-
def slurm_jobs_user_service_create_user_slurm_job_with_http_info(self, body: '
|
|
173
|
+
def slurm_jobs_user_service_create_user_slurm_job_with_http_info(self, body: 'SlurmJobsUserServiceCreateUserSLURMJobBody', project_id: 'str', **kwargs) -> 'V1SLURMJob': # noqa: E501
|
|
174
174
|
"""CreateUserSLURMJob is used to create a new SLURM job for an authenticated user. For creating SLURM Jobs from an agent, please use the SLURMJobsAgentService. # noqa: E501
|
|
175
175
|
|
|
176
176
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -179,7 +179,7 @@ class SlurmJobsUserServiceApi(object):
|
|
|
179
179
|
>>> result = thread.get()
|
|
180
180
|
|
|
181
181
|
:param async_req bool
|
|
182
|
-
:param
|
|
182
|
+
:param SlurmJobsUserServiceCreateUserSLURMJobBody body: (required)
|
|
183
183
|
:param str project_id: (required)
|
|
184
184
|
:return: V1SLURMJob
|
|
185
185
|
If the method is called asynchronously,
|
|
@@ -778,7 +778,7 @@ class SlurmJobsUserServiceApi(object):
|
|
|
778
778
|
_request_timeout=params.get('_request_timeout'),
|
|
779
779
|
collection_formats=collection_formats)
|
|
780
780
|
|
|
781
|
-
def slurm_jobs_user_service_update_user_slurm_job(self, body: '
|
|
781
|
+
def slurm_jobs_user_service_update_user_slurm_job(self, body: 'SlurmJobsUserServiceUpdateUserSLURMJobBody', project_id: 'str', id: 'str', **kwargs) -> 'V1SLURMJob': # noqa: E501
|
|
782
782
|
"""UpdateUserSLURMJob is used to update a specific SLURM job for an authenticated user. For updating SLURM Jobs from an agent, please use the SLURMJobsAgentService. # noqa: E501
|
|
783
783
|
|
|
784
784
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -787,7 +787,7 @@ class SlurmJobsUserServiceApi(object):
|
|
|
787
787
|
>>> result = thread.get()
|
|
788
788
|
|
|
789
789
|
:param async_req bool
|
|
790
|
-
:param
|
|
790
|
+
:param SlurmJobsUserServiceUpdateUserSLURMJobBody body: (required)
|
|
791
791
|
:param str project_id: (required)
|
|
792
792
|
:param str id: (required)
|
|
793
793
|
:return: V1SLURMJob
|
|
@@ -801,7 +801,7 @@ class SlurmJobsUserServiceApi(object):
|
|
|
801
801
|
(data) = self.slurm_jobs_user_service_update_user_slurm_job_with_http_info(body, project_id, id, **kwargs) # noqa: E501
|
|
802
802
|
return data
|
|
803
803
|
|
|
804
|
-
def slurm_jobs_user_service_update_user_slurm_job_with_http_info(self, body: '
|
|
804
|
+
def slurm_jobs_user_service_update_user_slurm_job_with_http_info(self, body: 'SlurmJobsUserServiceUpdateUserSLURMJobBody', project_id: 'str', id: 'str', **kwargs) -> 'V1SLURMJob': # noqa: E501
|
|
805
805
|
"""UpdateUserSLURMJob is used to update a specific SLURM job for an authenticated user. For updating SLURM Jobs from an agent, please use the SLURMJobsAgentService. # noqa: E501
|
|
806
806
|
|
|
807
807
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -810,7 +810,7 @@ class SlurmJobsUserServiceApi(object):
|
|
|
810
810
|
>>> result = thread.get()
|
|
811
811
|
|
|
812
812
|
:param async_req bool
|
|
813
|
-
:param
|
|
813
|
+
:param SlurmJobsUserServiceUpdateUserSLURMJobBody body: (required)
|
|
814
814
|
:param str project_id: (required)
|
|
815
815
|
:param str id: (required)
|
|
816
816
|
:return: V1SLURMJob
|
|
@@ -891,7 +891,7 @@ class SlurmJobsUserServiceApi(object):
|
|
|
891
891
|
_request_timeout=params.get('_request_timeout'),
|
|
892
892
|
collection_formats=collection_formats)
|
|
893
893
|
|
|
894
|
-
def slurm_jobs_user_service_user_slurm_job_action(self, body: '
|
|
894
|
+
def slurm_jobs_user_service_user_slurm_job_action(self, body: 'SlurmJobsUserServiceUserSLURMJobActionBody', project_id: 'str', id: 'str', **kwargs) -> 'V1UserSLURMJobActionResponse': # noqa: E501
|
|
895
895
|
"""UserSLURMJobAction can be used to call an action on a specific SLURM job. For example cancel the job. # noqa: E501
|
|
896
896
|
|
|
897
897
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -900,7 +900,7 @@ class SlurmJobsUserServiceApi(object):
|
|
|
900
900
|
>>> result = thread.get()
|
|
901
901
|
|
|
902
902
|
:param async_req bool
|
|
903
|
-
:param
|
|
903
|
+
:param SlurmJobsUserServiceUserSLURMJobActionBody body: (required)
|
|
904
904
|
:param str project_id: (required)
|
|
905
905
|
:param str id: (required)
|
|
906
906
|
:return: V1UserSLURMJobActionResponse
|
|
@@ -914,7 +914,7 @@ class SlurmJobsUserServiceApi(object):
|
|
|
914
914
|
(data) = self.slurm_jobs_user_service_user_slurm_job_action_with_http_info(body, project_id, id, **kwargs) # noqa: E501
|
|
915
915
|
return data
|
|
916
916
|
|
|
917
|
-
def slurm_jobs_user_service_user_slurm_job_action_with_http_info(self, body: '
|
|
917
|
+
def slurm_jobs_user_service_user_slurm_job_action_with_http_info(self, body: 'SlurmJobsUserServiceUserSLURMJobActionBody', project_id: 'str', id: 'str', **kwargs) -> 'V1UserSLURMJobActionResponse': # noqa: E501
|
|
918
918
|
"""UserSLURMJobAction can be used to call an action on a specific SLURM job. For example cancel the job. # noqa: E501
|
|
919
919
|
|
|
920
920
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -923,7 +923,7 @@ class SlurmJobsUserServiceApi(object):
|
|
|
923
923
|
>>> result = thread.get()
|
|
924
924
|
|
|
925
925
|
:param async_req bool
|
|
926
|
-
:param
|
|
926
|
+
:param SlurmJobsUserServiceUserSLURMJobActionBody body: (required)
|
|
927
927
|
:param str project_id: (required)
|
|
928
928
|
:param str id: (required)
|
|
929
929
|
:return: V1UserSLURMJobActionResponse
|
|
@@ -156,7 +156,7 @@ class SnowflakeServiceApi(object):
|
|
|
156
156
|
_request_timeout=params.get('_request_timeout'),
|
|
157
157
|
collection_formats=collection_formats)
|
|
158
158
|
|
|
159
|
-
def snowflake_service_create_snowflake_connection(self, body: '
|
|
159
|
+
def snowflake_service_create_snowflake_connection(self, body: 'SnowflakeServiceCreateSnowflakeConnectionBody', project_id: 'str', **kwargs) -> 'V1CreateSnowflakeConnectionResponse': # noqa: E501
|
|
160
160
|
"""snowflake_service_create_snowflake_connection # noqa: E501
|
|
161
161
|
|
|
162
162
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -165,7 +165,7 @@ class SnowflakeServiceApi(object):
|
|
|
165
165
|
>>> result = thread.get()
|
|
166
166
|
|
|
167
167
|
:param async_req bool
|
|
168
|
-
:param
|
|
168
|
+
:param SnowflakeServiceCreateSnowflakeConnectionBody body: (required)
|
|
169
169
|
:param str project_id: (required)
|
|
170
170
|
:return: V1CreateSnowflakeConnectionResponse
|
|
171
171
|
If the method is called asynchronously,
|
|
@@ -178,7 +178,7 @@ class SnowflakeServiceApi(object):
|
|
|
178
178
|
(data) = self.snowflake_service_create_snowflake_connection_with_http_info(body, project_id, **kwargs) # noqa: E501
|
|
179
179
|
return data
|
|
180
180
|
|
|
181
|
-
def snowflake_service_create_snowflake_connection_with_http_info(self, body: '
|
|
181
|
+
def snowflake_service_create_snowflake_connection_with_http_info(self, body: 'SnowflakeServiceCreateSnowflakeConnectionBody', project_id: 'str', **kwargs) -> 'V1CreateSnowflakeConnectionResponse': # noqa: E501
|
|
182
182
|
"""snowflake_service_create_snowflake_connection # noqa: E501
|
|
183
183
|
|
|
184
184
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -187,7 +187,7 @@ class SnowflakeServiceApi(object):
|
|
|
187
187
|
>>> result = thread.get()
|
|
188
188
|
|
|
189
189
|
:param async_req bool
|
|
190
|
-
:param
|
|
190
|
+
:param SnowflakeServiceCreateSnowflakeConnectionBody body: (required)
|
|
191
191
|
:param str project_id: (required)
|
|
192
192
|
:return: V1CreateSnowflakeConnectionResponse
|
|
193
193
|
If the method is called asynchronously,
|
|
@@ -261,7 +261,7 @@ class SnowflakeServiceApi(object):
|
|
|
261
261
|
_request_timeout=params.get('_request_timeout'),
|
|
262
262
|
collection_formats=collection_formats)
|
|
263
263
|
|
|
264
|
-
def snowflake_service_execute_snowflake_query(self, body: '
|
|
264
|
+
def snowflake_service_execute_snowflake_query(self, body: 'SnowflakeServiceExecuteSnowflakeQueryBody', project_id: 'str', **kwargs) -> 'V1ExecuteSnowflakeQueryResponse': # noqa: E501
|
|
265
265
|
"""snowflake_service_execute_snowflake_query # noqa: E501
|
|
266
266
|
|
|
267
267
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -270,7 +270,7 @@ class SnowflakeServiceApi(object):
|
|
|
270
270
|
>>> result = thread.get()
|
|
271
271
|
|
|
272
272
|
:param async_req bool
|
|
273
|
-
:param
|
|
273
|
+
:param SnowflakeServiceExecuteSnowflakeQueryBody body: (required)
|
|
274
274
|
:param str project_id: (required)
|
|
275
275
|
:return: V1ExecuteSnowflakeQueryResponse
|
|
276
276
|
If the method is called asynchronously,
|
|
@@ -283,7 +283,7 @@ class SnowflakeServiceApi(object):
|
|
|
283
283
|
(data) = self.snowflake_service_execute_snowflake_query_with_http_info(body, project_id, **kwargs) # noqa: E501
|
|
284
284
|
return data
|
|
285
285
|
|
|
286
|
-
def snowflake_service_execute_snowflake_query_with_http_info(self, body: '
|
|
286
|
+
def snowflake_service_execute_snowflake_query_with_http_info(self, body: 'SnowflakeServiceExecuteSnowflakeQueryBody', project_id: 'str', **kwargs) -> 'V1ExecuteSnowflakeQueryResponse': # noqa: E501
|
|
287
287
|
"""snowflake_service_execute_snowflake_query # noqa: E501
|
|
288
288
|
|
|
289
289
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -292,7 +292,7 @@ class SnowflakeServiceApi(object):
|
|
|
292
292
|
>>> result = thread.get()
|
|
293
293
|
|
|
294
294
|
:param async_req bool
|
|
295
|
-
:param
|
|
295
|
+
:param SnowflakeServiceExecuteSnowflakeQueryBody body: (required)
|
|
296
296
|
:param str project_id: (required)
|
|
297
297
|
:return: V1ExecuteSnowflakeQueryResponse
|
|
298
298
|
If the method is called asynchronously,
|
|
@@ -366,7 +366,7 @@ class SnowflakeServiceApi(object):
|
|
|
366
366
|
_request_timeout=params.get('_request_timeout'),
|
|
367
367
|
collection_formats=collection_formats)
|
|
368
368
|
|
|
369
|
-
def snowflake_service_export_snowflake_query(self, body: '
|
|
369
|
+
def snowflake_service_export_snowflake_query(self, body: 'SnowflakeServiceExportSnowflakeQueryBody', project_id: 'str', **kwargs) -> 'V1ExportSnowflakeQueryResponse': # noqa: E501
|
|
370
370
|
"""snowflake_service_export_snowflake_query # noqa: E501
|
|
371
371
|
|
|
372
372
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -375,7 +375,7 @@ class SnowflakeServiceApi(object):
|
|
|
375
375
|
>>> result = thread.get()
|
|
376
376
|
|
|
377
377
|
:param async_req bool
|
|
378
|
-
:param
|
|
378
|
+
:param SnowflakeServiceExportSnowflakeQueryBody body: (required)
|
|
379
379
|
:param str project_id: (required)
|
|
380
380
|
:return: V1ExportSnowflakeQueryResponse
|
|
381
381
|
If the method is called asynchronously,
|
|
@@ -388,7 +388,7 @@ class SnowflakeServiceApi(object):
|
|
|
388
388
|
(data) = self.snowflake_service_export_snowflake_query_with_http_info(body, project_id, **kwargs) # noqa: E501
|
|
389
389
|
return data
|
|
390
390
|
|
|
391
|
-
def snowflake_service_export_snowflake_query_with_http_info(self, body: '
|
|
391
|
+
def snowflake_service_export_snowflake_query_with_http_info(self, body: 'SnowflakeServiceExportSnowflakeQueryBody', project_id: 'str', **kwargs) -> 'V1ExportSnowflakeQueryResponse': # noqa: E501
|
|
392
392
|
"""snowflake_service_export_snowflake_query # noqa: E501
|
|
393
393
|
|
|
394
394
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -397,7 +397,7 @@ class SnowflakeServiceApi(object):
|
|
|
397
397
|
>>> result = thread.get()
|
|
398
398
|
|
|
399
399
|
:param async_req bool
|
|
400
|
-
:param
|
|
400
|
+
:param SnowflakeServiceExportSnowflakeQueryBody body: (required)
|
|
401
401
|
:param str project_id: (required)
|
|
402
402
|
:return: V1ExportSnowflakeQueryResponse
|
|
403
403
|
If the method is called asynchronously,
|
|
@@ -572,7 +572,7 @@ class SnowflakeServiceApi(object):
|
|
|
572
572
|
_request_timeout=params.get('_request_timeout'),
|
|
573
573
|
collection_formats=collection_formats)
|
|
574
574
|
|
|
575
|
-
def snowflake_service_update_snowflake_query(self, body: '
|
|
575
|
+
def snowflake_service_update_snowflake_query(self, body: 'SnowflakeServiceUpdateSnowflakeQueryBody', project_id: 'str', query_id: 'str', **kwargs) -> 'V1UpdateSnowflakeQueryResponse': # noqa: E501
|
|
576
576
|
"""snowflake_service_update_snowflake_query # noqa: E501
|
|
577
577
|
|
|
578
578
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -581,7 +581,7 @@ class SnowflakeServiceApi(object):
|
|
|
581
581
|
>>> result = thread.get()
|
|
582
582
|
|
|
583
583
|
:param async_req bool
|
|
584
|
-
:param
|
|
584
|
+
:param SnowflakeServiceUpdateSnowflakeQueryBody body: (required)
|
|
585
585
|
:param str project_id: (required)
|
|
586
586
|
:param str query_id: (required)
|
|
587
587
|
:return: V1UpdateSnowflakeQueryResponse
|
|
@@ -595,7 +595,7 @@ class SnowflakeServiceApi(object):
|
|
|
595
595
|
(data) = self.snowflake_service_update_snowflake_query_with_http_info(body, project_id, query_id, **kwargs) # noqa: E501
|
|
596
596
|
return data
|
|
597
597
|
|
|
598
|
-
def snowflake_service_update_snowflake_query_with_http_info(self, body: '
|
|
598
|
+
def snowflake_service_update_snowflake_query_with_http_info(self, body: 'SnowflakeServiceUpdateSnowflakeQueryBody', project_id: 'str', query_id: 'str', **kwargs) -> 'V1UpdateSnowflakeQueryResponse': # noqa: E501
|
|
599
599
|
"""snowflake_service_update_snowflake_query # noqa: E501
|
|
600
600
|
|
|
601
601
|
This method makes a synchronous HTTP request by default. To make an
|
|
@@ -604,7 +604,7 @@ class SnowflakeServiceApi(object):
|
|
|
604
604
|
>>> result = thread.get()
|
|
605
605
|
|
|
606
606
|
:param async_req bool
|
|
607
|
-
:param
|
|
607
|
+
:param SnowflakeServiceUpdateSnowflakeQueryBody body: (required)
|
|
608
608
|
:param str project_id: (required)
|
|
609
609
|
:param str query_id: (required)
|
|
610
610
|
:return: V1UpdateSnowflakeQueryResponse
|