anyscale 0.5.121__tar.gz → 0.5.123__tar.gz
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.
- {anyscale-0.5.121/anyscale.egg-info → anyscale-0.5.123}/PKG-INFO +1 -1
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/README.md +1 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/api/default_api.py +131 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/decorated_interactive_session.py +27 -1
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/decorated_job.py +27 -1
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/mini_job_run.py +27 -1
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/commands/cloud_commands.py +32 -1
- anyscale-0.5.121/anyscale/commands/cluster_compute_commands.py → anyscale-0.5.123/anyscale/commands/compute_config_commands.py +12 -12
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/controllers/cloud_controller.py +82 -5
- anyscale-0.5.123/anyscale/controllers/cloud_functional_verification_controller.py +223 -0
- anyscale-0.5.121/anyscale/controllers/cluster_compute_controller.py → anyscale-0.5.123/anyscale/controllers/compute_config_controller.py +1 -1
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/scripts.py +5 -3
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/util.py +4 -0
- anyscale-0.5.123/anyscale/utils/cli_version_check_util.py +61 -0
- anyscale-0.5.123/anyscale/version.py +1 -0
- {anyscale-0.5.121 → anyscale-0.5.123/anyscale.egg-info}/PKG-INFO +1 -1
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale.egg-info/SOURCES.txt +9 -13
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale.egg-info/requires.txt +0 -1
- {anyscale-0.5.121 → anyscale-0.5.123}/requirements.in +0 -1
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/commands/test_cloud_command.py +1 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/controllers/test_cloud_controller.py +41 -1
- anyscale-0.5.123/tests/controllers/test_cloud_functional_verification_controller.py +250 -0
- anyscale-0.5.121/tests/controllers/test_cluster_compute_controller.py → anyscale-0.5.123/tests/controllers/test_compute_config_controller.py +38 -38
- anyscale-0.5.123/tests/utils/BUILD.bazel +24 -0
- anyscale-0.5.123/tests/utils/test_cli_version_check_util.py +23 -0
- anyscale-0.5.121/anyscale/autoscaler/aws/node_provider.py +0 -208
- anyscale-0.5.121/anyscale/autoscaler/gcp/node_provider.py +0 -219
- anyscale-0.5.121/anyscale/autoscaler/node_provided_cache.py +0 -68
- anyscale-0.5.121/anyscale/autoscaler/node_provider.py +0 -618
- anyscale-0.5.121/anyscale/version.py +0 -1
- anyscale-0.5.121/tests/__init__.py +0 -0
- anyscale-0.5.121/tests/api_utils/__init__.py +0 -0
- anyscale-0.5.121/tests/autoscaler/BUILD.bazel +0 -28
- anyscale-0.5.121/tests/autoscaler/test_node_provider.py +0 -79
- anyscale-0.5.121/tests/controllers/__init__.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/.covrc +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/BUILD.bazel +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/README.md +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/ProjectConfig.json +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/__init__.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/anyscale-cloud-setup-gcp.yaml +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/anyscale-cloud-setup.yaml +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/anyscale_schema.json +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/api.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/api_utils/README.md +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/api_utils/__init__.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/api_utils/cloud_util.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/api_utils/exceptions/__init__.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/api_utils/exceptions/job_errors.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/api_utils/exceptions/log_retrieval_errors.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/api_utils/job_logs_util.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/api_utils/job_util.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/api_utils/logs_util.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/authenticate.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/aws_iam_policies.py +0 -0
- {anyscale-0.5.121/anyscale/autoscaler → anyscale-0.5.123/anyscale/background}/__init__.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/background/job_runner.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/cli_logger.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/.gitignore +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/.openapi-generator/VERSION +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/.openapi-generator-ignore +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/git_push.sh +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/__init__.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/api/__init__.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/api_client.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/configuration.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/exceptions.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/__init__.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/add_instance_pool_member.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/anyscale_aws_account.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/anyscale_version_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/anyscaleawsaccount_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/anyscaled_config.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/anyscaled_credential_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/anyscaled_dataplane_config.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/anyscaledconfig_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/anyscaledcredentialresponse_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/anyscaleddataplaneconfig_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/anyscaleversionresponse_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/api_key_parameters.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/app_config.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/app_config_config_schema.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/appconfig_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/applied_snapshot.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/apply_production_service_v2_model.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/apply_service_config.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/archive_status.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/archived_logs_info.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/archivedlogsinfo_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/autoscaler_credentials.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/autoscaler_report.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/autoscaler_status.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/autoscalercredentials_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/autosync_session_id.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/autosyncsessionid_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/autosyncsessionid_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/aws_node_options.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/aws_region_and_zones.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/aws_region_info.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/aws_tag.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/aws_tag_specification.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/awsregionandzones_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/bank_account_information.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/base_job_status.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/baseimagesenum.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/batch_response_batched_result_organization_invitation_base.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/batched_result_organization_invitation_base.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/billing_information.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/block_device_mapping.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/build.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/build_log_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/build_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/build_status.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/buildlogresponse_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/card.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/card_id.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/card_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/change_password_params.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/clone_experimental_workspace.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/cloud.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/cloud_collaborator.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/cloud_collaborator_value.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/cloud_collaborators_query.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/cloud_config.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/cloud_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/cloud_name_options.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/cloud_project_collaborator.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/cloud_project_collaborator_value.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/cloud_provider.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/cloud_providers.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/cloud_region_and_zones.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/cloud_region_info.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/cloud_resource.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/cloud_resource_gcp.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/cloud_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/cloud_state.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/cloud_status.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/cloud_types.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/cloud_version.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/cloud_with_cloud_resource.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/cloud_with_cloud_resource_gcp.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/cloudcollaborator_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/cloudregionandzones_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/cloudwithcloudresource_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/cloudwithcloudresourcegcp_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/cluster_auth_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/cluster_config.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/cluster_config_with_session_idle_timeout.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/cluster_features.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/cluster_management_stack_versions.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/cluster_monitor_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/cluster_startup.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/cluster_status.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/clusterauthresponse_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/clusterconfig_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/clusterconfigwithsessionidletimeout_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/clusterfeatures_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/clustermonitorresponse_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/clusterstatus_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/compute_node_type.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/compute_template.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/compute_template_config.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/compute_template_query.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/computetemplate_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/computetemplateconfig_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/create_app_config.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/create_app_config_configuration_schema.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/create_build.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/create_byod_app_config.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/create_byod_app_config_configuration_schema.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/create_byod_build.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/create_cloud_collaborator.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/create_cloud_resource.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/create_cloud_resource_gcp.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/create_cloud_with_cloud_resource.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/create_cluster_compute_config.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/create_compute_template.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/create_compute_template_config.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/create_experimental_workspace.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/create_experimental_workspace_from_job.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/create_internal_production_job.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/create_nodes_options.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/create_organization_invitation.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/create_otp_return_api_model.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/create_production_job_config.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/create_production_service.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/create_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/create_schedule.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/create_session_from_snapshot_options.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/create_session_in_db.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/create_session_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/create_structured_output.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/create_user.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/create_user_project_collaborator.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/create_user_project_collaborator_value.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/create_workspace_from_template.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/createotpreturnapimodel_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/createsessionresponse_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/credit_card_information.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/dataplane_services.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/decorated_application_template.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/decorated_build.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/decorated_compute_template.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/decorated_compute_template_config.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/decorated_job_submission.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/decorated_list_service_api_model.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/decorated_production_job.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/decorated_production_job_state_transition.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/decorated_production_service_v2_api_model.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/decorated_production_service_v2_version_api_model.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/decorated_runtime_env.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/decorated_schedule.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/decorated_serve_deployment.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/decorated_service_event_api_model.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/decorated_session.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/decorated_support_request.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/decorated_unified_job.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/decoratedapplicationtemplate_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/decoratedapplicationtemplate_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/decoratedbuild_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/decoratedbuild_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/decoratedcomputetemplate_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/decoratedcomputetemplate_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/decoratedinteractivesession_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/decoratedinteractivesession_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/decoratedjob_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/decoratedjob_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/decoratedjobsubmission_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/decoratedjobsubmission_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/decoratedlistserviceapimodel_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/decoratedproductionjob_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/decoratedproductionjob_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/decoratedproductionjobstatetransition_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/decoratedproductionservicev2_apimodel_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/decoratedruntimeenv_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/decoratedruntimeenv_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/decoratedschedule_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/decoratedschedule_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/decoratedservedeployment_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/decoratedservedeployment_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/decoratedserviceeventapimodel_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/decoratedsession_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/decoratedsession_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/decoratedsupportrequest_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/decoratedsupportrequest_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/decoratedunifiedjob_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/decoratedunifiedjob_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/deployment_status.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/dismissal_type.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/ebs_block_device.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/error.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/execute_command_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/execute_interactive_command_options.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/execute_shell_command_options.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/executecommandresponse_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/experimental_workspace.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/experimentalworkspace_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/experimentalworkspace_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/external_service_status.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/external_service_status_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/external_terminal_command.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/externalservicestatusresponse_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/feature_compatibility.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/feature_flag_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/featureflagresponse_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/gcp_file_store_config.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/gcp_node_disk.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/gcp_node_options.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/ha_job_goal_states.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/ha_job_states.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/ha_job_type.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/ha_jobs_sort_field.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/head_ip.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/headip_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/historical_cost_granularity.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/historical_costs.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/historicalcosts_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/http_validation_error.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/iam_instance_profile_specification.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/idle_termination_status.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/instance.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/instance_external_ip.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/instance_id.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/instance_internal_ip.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/instance_is_running.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/instance_is_terminated.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/instance_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/instance_pool_member.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/instance_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/instance_status.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/instanceexternalip_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/instanceid_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/instanceinternalip_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/instanceisrunning_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/instanceisterminated_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/instancepoolmember_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/integration_details.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/interactive_session_logs.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/interactivesessionlogs_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/internal_production_job.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/internalproductionjob_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/invoice.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/invoice_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/invoice_status.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/invoices_query.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/job_access.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/job_run_type.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/job_state_log_level_types.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/job_status.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/job_submissions_sort_field.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/jobs_logs.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/jobs_logs_query_info.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/jobs_sort_field.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/jobslogs_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/jobslogsqueryinfo_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/json_patch_operation.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/list_response_metadata.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/log_detail.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/log_details.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/log_download_config.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/log_download_request.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/log_download_result.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/log_file_chunk.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/log_filter.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/log_level_types.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/log_stream.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/logdetails_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/logdownloadresult_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/login_user_params.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/logs_output.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/logsoutput_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/logstream_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/mini_build.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/mini_cloud.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/mini_cluster.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/mini_compute_template.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/mini_namespace.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/mini_organization.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/mini_production_job.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/mini_project.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/mini_runtime_environment.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/mini_schedule.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/mini_user.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/minibuild_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/minicomputetemplate_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/miniproject_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/monitor_logs_extension.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/network_interface.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/node_registration.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/node_registration_aws.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/node_registration_gcp.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/node_registration_v2.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/node_type.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/nodes_options.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/non_terminated_nodes_options.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/onboarding_user_cards_query.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/organization.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/organization_availability.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/organization_collaborator.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/organization_invitation.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/organization_invitation_base.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/organization_permission_level.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/organization_project_collaborator.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/organization_project_collaborator_value.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/organization_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/organizationavailability_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/organizationcollaborator_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/organizationinvitation_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/organizationinvitation_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/organizationinvitationbase_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/organizationprojectcollaborator_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/page_query.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/pause_schedule.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/permission_level.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/pool_config_info.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/pool_instance.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/poolconfiginfo_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/poolinstance_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/product_type.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/production_job.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/production_job_config.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/production_job_state_transition.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/productionjob_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/project.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/project_base.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/project_collaborator.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/project_collaborator_value.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/project_collaborators_put_message.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/project_create_message.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/project_default_session_name.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/project_delete_message.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/project_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/project_patch_message.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/project_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/projectbase_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/projectcollaborator_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/projectdefaultsessionname_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/projects_sort_field.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/provider_metadata.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/providermetadata_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/python_modules.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/query_pool_size.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/ray_gcs_external_storage_config.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/ray_runtime_env_config.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/request_instance_pool_member.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/request_otp_return_api_model.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/request_password_reset_params.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/requestotpreturnapimodel_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/reset_password_params.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/resource_historical_costs.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/resources.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/rollout_strategy.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/s3_download_location.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/schedule_config.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/serve_deployment_grafana_dashboard_status.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/serve_deployment_logs.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/servedeploymentlogs_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/server_session_token.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/serversessiontoken_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/service_account.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/service_event_current_state.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/service_event_level.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/service_event_origin.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/service_event_type.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/service_goal_states.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/service_observability_urls.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/service_sort_field.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/service_type.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/service_usage.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/session.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/session_access.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/session_autosync_sessions_update_message.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/session_command.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/session_command_finish_options.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/session_command_id.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/session_command_types.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/session_create_message.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/session_delete_message.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/session_describe.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/session_details.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/session_event.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/session_event_cause.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/session_event_types.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/session_execute_message.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/session_finish_command_message.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/session_history_item.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/session_kill_command_message.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/session_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/session_patch_message.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/session_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/session_ssh_key.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/session_starting_up_data.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/session_state.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/session_state_change_message.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/session_state_data.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/session_stopping_data.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/sessioncommand_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/sessioncommandid_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/sessiondescribe_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/sessiondetails_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/sessionevent_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/sessionhistoryitem_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/sessions_sort_field.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/sessionsshkey_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/set_node_tags_options.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/setup_initialize_session_options.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/show_otp_source_return_api_model.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/showotpsourcereturnapimodel_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/snapshot_create_message.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/snapshot_delete_message.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/snapshot_patch_message.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/socket_message_schemas.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/socket_message_types.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/socketmessageschemas_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/socketmessagetypes_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/sort_order.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/sso_login_info.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/ssologininfo_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/start_session_options.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/stop_session_options.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/stream_publish_request.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/structured_output.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/structuredoutput_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/subnet_id_with_availability_zone_aws.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/support_requests_query.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/supportedbaseimagesenum.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/text_query.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/timestamped_logs_output.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/timestampedlogsoutput_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/tool.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/unified_job_sort_field.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/unified_job_status.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/unified_job_type.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/update_cloud_with_cloud_resource.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/update_cloud_with_cloud_resource_gcp.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/update_cluster_dns.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/update_compute_template.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/update_compute_template_config.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/update_organization_collaborator.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/update_project_collaborator.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/upload_session_command_logs_locations.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/uploadsessioncommandlogslocations_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/user_info.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/user_resend_email_options.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/user_service_access_types.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/userinfo_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/validate_otp_params_api_model.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/validation_error.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/visibility.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/wait_until_stopped_options.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/wand_b_run_details.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/web_terminal.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/webterminal_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/webterminal_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/worker_node_type.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/workspace_readme.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/workspace_template.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/workspacereadme_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/workspacetemplate_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/write_cloud.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/write_cluster_config.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/write_project.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/write_session.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/write_support_request.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/rest.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/requirements.txt +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/setup.cfg +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/setup.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/test-requirements.txt +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/tox.ini +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/cloud.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/cloud_resource.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/cluster.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/cluster_compute.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/cluster_config.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/cluster_env.py +0 -0
- {anyscale-0.5.121/anyscale/autoscaler/aws → anyscale-0.5.123/anyscale/commands}/__init__.py +0 -0
- {anyscale-0.5.121/anyscale/autoscaler/gcp → anyscale-0.5.123/anyscale/commands/anyscale_api}/__init__.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/commands/anyscale_api/api_commands.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/commands/anyscale_api/session_commands_commands.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/commands/anyscale_api/session_operations_commands.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/commands/anyscale_api/sessions_commands.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/commands/auth_commands.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/commands/cluster_commands.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/commands/cluster_env_commands.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/commands/config_commands.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/commands/exec_commands.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/commands/experimental_integrations_commands.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/commands/job_commands.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/commands/list_commands.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/commands/login_commands.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/commands/logs_commands.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/commands/migrate_commands.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/commands/project_commands.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/commands/schedule_commands.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/commands/service_commands.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/commands/session_commands_hidden.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/commands/util.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/commands/workspace_commands.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/component_activity_util.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/conf.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/connect.py +0 -0
- {anyscale-0.5.121/anyscale/background → anyscale-0.5.123/anyscale/connect_utils}/__init__.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/connect_utils/prepare_cluster.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/connect_utils/project.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/connect_utils/start_interactive_session.py +0 -0
- {anyscale-0.5.121/anyscale/commands → anyscale-0.5.123/anyscale/controllers}/__init__.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/controllers/auth_controller.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/controllers/base_controller.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/controllers/cluster_controller.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/controllers/cluster_env_controller.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/controllers/config_controller.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/controllers/exec_controller.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/controllers/experimental_integrations_controller.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/controllers/job_controller.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/controllers/jobs_bg_controller.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/controllers/list_controller.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/controllers/logs_controller.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/controllers/project_controller.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/controllers/schedule_controller.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/controllers/service_controller.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/controllers/session_controller.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/controllers/workspace_controller.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/feature_flags.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/fingerprint.py +0 -0
- {anyscale-0.5.121/anyscale/commands/anyscale_api → anyscale-0.5.123/anyscale/formatters}/__init__.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/formatters/clouds_formatter.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/formatters/common_formatter.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/formatters/service_formatter.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/gcp_verification.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/integrations.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/job.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/links.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/models/job_model.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/models/service_model.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/project.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/__init__.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/api/__init__.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/api/default_api.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/api_client.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/configuration.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/exceptions.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/__init__.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/app_config.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/app_config_config_schema.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/appconfig_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/appconfig_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/apply_production_service_v2_model.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/archive_status.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/aws_node_options.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/aws_tag.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/aws_tag_specification.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/base_job_status.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/baseimagesenum.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/block_device_mapping.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/build.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/build_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/build_log_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/build_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/build_status.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/buildlogresponse_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/cloud.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/cloud_config.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/cloud_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/cloud_providers.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/cloud_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/cloud_state.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/cloud_status.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/cloud_types.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/cloud_version.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/clouds_query.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/cluster.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/cluster_compute.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/cluster_compute_config.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/cluster_computes_query.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/cluster_environment.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/cluster_environment_build.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/cluster_environment_build_log_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/cluster_environment_build_operation.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/cluster_environment_build_status.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/cluster_environments_query.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/cluster_head_node_info.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/cluster_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/cluster_management_stack_versions.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/cluster_operation.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/cluster_operation_type.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/cluster_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/cluster_services_urls.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/cluster_state.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/clustercompute_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/clustercompute_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/clusterenvironment_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/clusterenvironment_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/clusterenvironmentbuild_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/clusterenvironmentbuild_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/clusterenvironmentbuildlogresponse_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/clusterenvironmentbuildoperation_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/clusteroperation_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/clusters_query.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/compute_node_type.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/compute_template.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/compute_template_config.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/compute_template_query.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/computetemplate_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/computetemplate_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/computetemplateconfig_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/create_app_config.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/create_app_config_configuration_schema.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/create_build.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/create_byod_app_config_configuration_schema.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/create_byod_cluster_environment.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/create_byod_cluster_environment_build.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/create_byod_cluster_environment_configuration_schema.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/create_cloud.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/create_cluster.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/create_cluster_compute.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/create_cluster_compute_config.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/create_cluster_environment.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/create_cluster_environment_build.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/create_cluster_environment_configuration_schema.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/create_compute_template.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/create_compute_template_config.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/create_production_job.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/create_production_job_config.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/create_production_service.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/create_project.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/create_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/create_schedule.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/create_session.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/create_session_command.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/create_sso_config.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/ebs_block_device.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/gcp_node_disk.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/gcp_node_options.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/ha_job_goal_states.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/ha_job_states.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/http_validation_error.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/iam_instance_profile_specification.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/idle_termination_status.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/job.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/job_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/job_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/job_run_type.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/job_status.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/jobs_logs.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/jobs_query.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/jobs_sort_field.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/jobslogs_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/list_response_metadata.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/list_service_model.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/listservicemodel_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/log_download_result.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/log_file_chunk.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/log_level_types.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/log_stream.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/logdownloadresult_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/logstream_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/network_interface.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/node_type.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/object_storage_config.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/object_storage_config_s3.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/objectstorageconfig_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/operation_error.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/operation_progress.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/operation_result.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/organization.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/organization_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/page_query.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/pause_schedule.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/production_job.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/production_job_config.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/production_job_state_transition.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/production_service.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/production_service_v2_model.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/production_service_v2_version_model.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/productionjob_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/productionjob_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/productionservice_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/productionservice_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/productionservicev2_model_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/project.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/project_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/project_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/projects_query.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/python_modules.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/python_version.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/ray_gcs_external_storage_config.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/ray_runtime_env_config.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/resources.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/rollout_strategy.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/runtime_environment.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/runtimeenvironment_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/schedule_api_model.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/schedule_config.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/scheduleapimodel_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/scheduleapimodel_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/service_account.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/service_event_current_state.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/service_goal_states.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/service_observability_urls.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/service_sort_field.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/service_type.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/session.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/session_command.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/session_command_types.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/session_event.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/session_event_cause.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/session_event_types.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/session_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/session_operation.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/session_operation_type.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/session_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/session_starting_up_data.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/session_state.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/session_state_data.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/session_stopping_data.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/sessioncommand_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/sessioncommand_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/sessionevent_list_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/sessionoperation_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/sessions_query.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/sort_by_clause_jobs_sort_field.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/sort_order.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/sso_config.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/sso_mode.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/ssoconfig_response.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/start_cluster_options.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/start_session_options.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/static_sso_config.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/supportedbaseimagesenum.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/terminate_cluster_options.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/terminate_session_options.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/text_query.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/update_app_config.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/update_cloud.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/update_cluster.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/update_compute_template.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/update_compute_template_config.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/update_organization.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/update_project.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/update_session.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/user_service_access_types.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/validation_error.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/models/worker_node_type.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/rest.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/sdk/anyscale_client/sdk.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/shared_anyscale_utils/__init__.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/shared_anyscale_utils/aws.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/shared_anyscale_utils/conf.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/shared_anyscale_utils/default_anyscale_aws.yaml +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/shared_anyscale_utils/default_anyscale_gcp.yaml +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/shared_anyscale_utils/headers.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/shared_anyscale_utils/project.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/shared_anyscale_utils/test_util.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/shared_anyscale_utils/util.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/shared_anyscale_utils/utils/__init__.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/shared_anyscale_utils/utils/asyncio.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/shared_anyscale_utils/utils/byod.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/shared_anyscale_utils/utils/id_gen.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/shared_anyscale_utils/utils/protected_string.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/shared_anyscale_utils/utils/ray_semver.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/snapshot.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/snapshot_util.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/tables.py +0 -0
- {anyscale-0.5.121/anyscale/connect_utils → anyscale-0.5.123/anyscale/utils}/__init__.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/utils/aws_credentials_util.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/utils/cloud_utils.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/utils/connect_helpers.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/utils/deprecation_util.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/utils/entity_arg_utils.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/utils/env_utils.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/utils/gcp_managed_setup_utils.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/utils/gcp_utils.py +0 -0
- {anyscale-0.5.121/anyscale/controllers → anyscale-0.5.123/anyscale/utils/imports}/__init__.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/utils/imports/all.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/utils/imports/gcp.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/utils/logs_utils.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/utils/name_utils.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/utils/network_verification.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/utils/ray_utils.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/utils/ray_version_checker.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/utils/runtime_env.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/utils/s3.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/utils/workload_types.py +0 -0
- {anyscale-0.5.121/anyscale/formatters → anyscale-0.5.123/anyscale/webterminal}/__init__.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/webterminal/bash-preexec.sh +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/webterminal/command_persister.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/webterminal/utils.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/webterminal/webterminal.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale/workspace.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale.egg-info/dependency_links.txt +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale.egg-info/entry_points.txt +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale.egg-info/not-zip-safe +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/anyscale.egg-info/top_level.txt +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/setup.cfg +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/setup.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/BUILD.bazel +0 -0
- {anyscale-0.5.121/anyscale/utils → anyscale-0.5.123/tests}/__init__.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/api_utils/BUILD.bazel +0 -0
- {anyscale-0.5.121/anyscale/utils/imports → anyscale-0.5.123/tests/api_utils}/__init__.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/api_utils/conftest.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/api_utils/test_job_logs_util.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/api_utils/test_job_util.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/api_utils/test_logs_util.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/clientLibraryConfig-aws-pool.json +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/cloud_formation_template.txt +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/commands/BUILD.bazel +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/commands/test_login_commands.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/commands/test_service_commands.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/conftest.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/connect_utils/BUILD.bazel +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/connect_utils/test_prepare_cluster.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/connect_utils/test_project_block.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/connect_utils/test_start_interactive_session.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/controllers/BUILD.bazel +0 -0
- {anyscale-0.5.121/anyscale/webterminal → anyscale-0.5.123/tests/controllers}/__init__.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/controllers/test_auth_controller.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/controllers/test_base_controller.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/controllers/test_cluster_controller.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/controllers/test_cluster_env_controller.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/controllers/test_config_controller.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/controllers/test_exec_controller.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/controllers/test_job_controller.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/controllers/test_list_controller.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/controllers/test_logs_controller.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/controllers/test_project_controller.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/controllers/test_schedule_controller.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/controllers/test_service_controller.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/controllers/test_session_controller.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/formatters/BUILD.bazel +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/formatters/test_service_formatter.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/gcp_responses/access_service_account_permissions.json +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/gcp_responses/add_firewall_policy_rule.json +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/gcp_responses/add_firewall_policy_rule_done.json +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/gcp_responses/add_firewall_policy_rule_error.json +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/gcp_responses/associate_firewall_policy.json +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/gcp_responses/associate_firewall_policy_done.json +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/gcp_responses/create_workload_identity_pool.json +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/gcp_responses/create_workload_identity_provider.json +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/gcp_responses/dataplane_service_account.json +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/gcp_responses/delete_workload_identity_pool.json +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/gcp_responses/deployment_delete.json +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/gcp_responses/deployment_get.json +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/gcp_responses/deployment_update.json +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/gcp_responses/enable_api_operation.json +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/gcp_responses/firewall_policy_get.json +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/gcp_responses/get_service_account.json +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/gcp_responses/get_workload_identity_pool.json +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/gcp_responses/global_firewall.json +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/gcp_responses/global_firewall_wrong_vpc.json +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/gcp_responses/manifest_get.json +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/gcp_responses/networks.json +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/gcp_responses/operation_completed.json +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/gcp_responses/operation_error.json +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/gcp_responses/project_apis_enabled.json +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/gcp_responses/project_get.json +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/gcp_responses/project_get_iam_policy.json +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/gcp_responses/project_get_iam_policy_role_exists.json +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/gcp_responses/project_get_inactive.json +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/gcp_responses/project_iam_binding_access.json +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/gcp_responses/project_iam_bindings.json +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/gcp_responses/project_set_iam_policy.json +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/gcp_responses/project_set_iam_policy_role_exists.json +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/gcp_responses/regional_filestore.json +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/gcp_responses/regional_filestore_vpc_private_access.json +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/gcp_responses/regional_filestore_west_region.json +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/gcp_responses/regional_filestore_wrong_vpc.json +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/gcp_responses/regional_firewall.json +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/gcp_responses/remove_firewall_vpc_association.json +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/gcp_responses/remove_firewall_vpc_association_done.json +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/gcp_responses/remove_firewall_vpc_association_error.json +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/gcp_responses/storage_bucket.json +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/gcp_responses/storage_bucket_policy.json +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/gcp_responses/storage_dual_region.json +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/gcp_responses/storage_single_region.json +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/gcp_responses/subnetworks.json +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/gcp_responses/subnetworks_other.json +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/gcp_responses/zonal_filestore.json +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/sdk/BUILD.bazel +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/sdk/test_upload_working_dir.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/test_authenticate.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/test_cli_logger.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/test_cli_utils.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/test_cloud.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/test_cloud_resource.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/test_cluster.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/test_cluster_compute.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/test_cluster_config.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/test_cluster_env.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/test_component_activity.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/test_connect.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/test_connect_helpers.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/test_gcp_managed_setup_utils.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/test_gcp_utils.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/test_gcp_verification.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/test_imports_util.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/test_init.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/test_integrations.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/test_job_output.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/test_network_utils.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/test_project.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/test_ray_version_checker.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/test_runtime_env.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/test_s3.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/test_snapshot_util.py +0 -0
- {anyscale-0.5.121 → anyscale-0.5.123}/tests/test_util.py +0 -0
|
@@ -182,6 +182,7 @@ Class | Method | HTTP request | Description
|
|
|
182
182
|
*DefaultApi* | [**get_job_api_v2_decorated_ha_jobs_production_job_id_get**](docs/DefaultApi.md#get_job_api_v2_decorated_ha_jobs_production_job_id_get) | **GET** /api/v2/decorated_ha_jobs/{production_job_id} | Get Job
|
|
183
183
|
*DefaultApi* | [**get_job_api_v2_decorated_unified_jobs_job_id_get**](docs/DefaultApi.md#get_job_api_v2_decorated_unified_jobs_job_id_get) | **GET** /api/v2/decorated_unified_jobs/{job_id} | Get Job
|
|
184
184
|
*DefaultApi* | [**get_job_logs_download_api_v2_logs_job_logs_download_job_id_get**](docs/DefaultApi.md#get_job_logs_download_api_v2_logs_job_logs_download_job_id_get) | **GET** /api/v2/logs/job_logs_download/{job_id} | Get Job Logs Download
|
|
185
|
+
*DefaultApi* | [**get_job_logs_download_v2_api_v2_logs_job_logs_download_v2_job_id_get**](docs/DefaultApi.md#get_job_logs_download_v2_api_v2_logs_job_logs_download_v2_job_id_get) | **GET** /api/v2/logs/job_logs_download_v2/{job_id} | Get Job Logs Download V2
|
|
185
186
|
*DefaultApi* | [**get_job_logs_query_info_api_v2_decorated_ha_jobs_production_job_id_logs_query_get**](docs/DefaultApi.md#get_job_logs_query_info_api_v2_decorated_ha_jobs_production_job_id_logs_query_get) | **GET** /api/v2/decorated_ha_jobs/{production_job_id}/logs_query | Get Job Logs Query Info
|
|
186
187
|
*DefaultApi* | [**get_job_logs_stream_api_v2_logs_job_logs_stream_job_id_get**](docs/DefaultApi.md#get_job_logs_stream_api_v2_logs_job_logs_stream_job_id_get) | **GET** /api/v2/logs/job_logs_stream/{job_id} | Get Job Logs Stream
|
|
187
188
|
*DefaultApi* | [**get_log_files_api_v2_logs_get_log_files_post**](docs/DefaultApi.md#get_log_files_api_v2_logs_get_log_files_post) | **POST** /api/v2/logs/get_log_files | Get Log Files
|
|
@@ -12551,6 +12551,137 @@ class DefaultApi(object):
|
|
|
12551
12551
|
_request_timeout=local_var_params.get('_request_timeout'),
|
|
12552
12552
|
collection_formats=collection_formats)
|
|
12553
12553
|
|
|
12554
|
+
def get_job_logs_download_v2_api_v2_logs_job_logs_download_v2_job_id_get(self, job_id, **kwargs): # noqa: E501
|
|
12555
|
+
"""Get Job Logs Download V2 # noqa: E501
|
|
12556
|
+
|
|
12557
|
+
Fetches the job logs of a single job run. This is a single API that supports job logs no matter if the job is still running or not. If the job is still running, the logs will be fetched from the streaming logs s3 path. If the job is not running, the logs will be fetched from downloaded logs s3 path. If a pagination token is provided, we use the streaming logs or downloaded logs path depending on the format of the pagination token. TODO(aguo): Implement job alive or dead detection TODO(aguo): Implement pagination # noqa: E501
|
|
12558
|
+
This method makes a synchronous HTTP request by default. To make an
|
|
12559
|
+
asynchronous HTTP request, please pass async_req=True
|
|
12560
|
+
>>> thread = api.get_job_logs_download_v2_api_v2_logs_job_logs_download_v2_job_id_get(job_id, async_req=True)
|
|
12561
|
+
>>> result = thread.get()
|
|
12562
|
+
|
|
12563
|
+
:param async_req bool: execute request asynchronously
|
|
12564
|
+
:param str job_id: (required)
|
|
12565
|
+
:param int page_size: Number of chunks to fetch. Defaults to 400. Max of 1000.
|
|
12566
|
+
:param str next_token: Pagination token for getting newer logs.
|
|
12567
|
+
:param str prev_token: Pagination token for getting older logs.
|
|
12568
|
+
:param _preload_content: if False, the urllib3.HTTPResponse object will
|
|
12569
|
+
be returned without reading/decoding response
|
|
12570
|
+
data. Default is True.
|
|
12571
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
12572
|
+
number provided, it will be total request
|
|
12573
|
+
timeout. It can also be a pair (tuple) of
|
|
12574
|
+
(connection, read) timeouts.
|
|
12575
|
+
:return: LogdownloadresultResponse
|
|
12576
|
+
If the method is called asynchronously,
|
|
12577
|
+
returns the request thread.
|
|
12578
|
+
"""
|
|
12579
|
+
kwargs['_return_http_data_only'] = True
|
|
12580
|
+
return self.get_job_logs_download_v2_api_v2_logs_job_logs_download_v2_job_id_get_with_http_info(job_id, **kwargs) # noqa: E501
|
|
12581
|
+
|
|
12582
|
+
def get_job_logs_download_v2_api_v2_logs_job_logs_download_v2_job_id_get_with_http_info(self, job_id, **kwargs): # noqa: E501
|
|
12583
|
+
"""Get Job Logs Download V2 # noqa: E501
|
|
12584
|
+
|
|
12585
|
+
Fetches the job logs of a single job run. This is a single API that supports job logs no matter if the job is still running or not. If the job is still running, the logs will be fetched from the streaming logs s3 path. If the job is not running, the logs will be fetched from downloaded logs s3 path. If a pagination token is provided, we use the streaming logs or downloaded logs path depending on the format of the pagination token. TODO(aguo): Implement job alive or dead detection TODO(aguo): Implement pagination # noqa: E501
|
|
12586
|
+
This method makes a synchronous HTTP request by default. To make an
|
|
12587
|
+
asynchronous HTTP request, please pass async_req=True
|
|
12588
|
+
>>> thread = api.get_job_logs_download_v2_api_v2_logs_job_logs_download_v2_job_id_get_with_http_info(job_id, async_req=True)
|
|
12589
|
+
>>> result = thread.get()
|
|
12590
|
+
|
|
12591
|
+
:param async_req bool: execute request asynchronously
|
|
12592
|
+
:param str job_id: (required)
|
|
12593
|
+
:param int page_size: Number of chunks to fetch. Defaults to 400. Max of 1000.
|
|
12594
|
+
:param str next_token: Pagination token for getting newer logs.
|
|
12595
|
+
:param str prev_token: Pagination token for getting older logs.
|
|
12596
|
+
:param _return_http_data_only: response data without head status code
|
|
12597
|
+
and headers
|
|
12598
|
+
:param _preload_content: if False, the urllib3.HTTPResponse object will
|
|
12599
|
+
be returned without reading/decoding response
|
|
12600
|
+
data. Default is True.
|
|
12601
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
12602
|
+
number provided, it will be total request
|
|
12603
|
+
timeout. It can also be a pair (tuple) of
|
|
12604
|
+
(connection, read) timeouts.
|
|
12605
|
+
:return: tuple(LogdownloadresultResponse, status_code(int), headers(HTTPHeaderDict))
|
|
12606
|
+
If the method is called asynchronously,
|
|
12607
|
+
returns the request thread.
|
|
12608
|
+
"""
|
|
12609
|
+
|
|
12610
|
+
local_var_params = locals()
|
|
12611
|
+
|
|
12612
|
+
all_params = [
|
|
12613
|
+
'job_id',
|
|
12614
|
+
'page_size',
|
|
12615
|
+
'next_token',
|
|
12616
|
+
'prev_token'
|
|
12617
|
+
]
|
|
12618
|
+
all_params.extend(
|
|
12619
|
+
[
|
|
12620
|
+
'async_req',
|
|
12621
|
+
'_return_http_data_only',
|
|
12622
|
+
'_preload_content',
|
|
12623
|
+
'_request_timeout'
|
|
12624
|
+
]
|
|
12625
|
+
)
|
|
12626
|
+
|
|
12627
|
+
for key, val in six.iteritems(local_var_params['kwargs']):
|
|
12628
|
+
if key not in all_params:
|
|
12629
|
+
raise ApiTypeError(
|
|
12630
|
+
"Got an unexpected keyword argument '%s'"
|
|
12631
|
+
" to method get_job_logs_download_v2_api_v2_logs_job_logs_download_v2_job_id_get" % key
|
|
12632
|
+
)
|
|
12633
|
+
local_var_params[key] = val
|
|
12634
|
+
del local_var_params['kwargs']
|
|
12635
|
+
# verify the required parameter 'job_id' is set
|
|
12636
|
+
if self.api_client.client_side_validation and ('job_id' not in local_var_params or # noqa: E501
|
|
12637
|
+
local_var_params['job_id'] is None): # noqa: E501
|
|
12638
|
+
raise ApiValueError("Missing the required parameter `job_id` when calling `get_job_logs_download_v2_api_v2_logs_job_logs_download_v2_job_id_get`") # noqa: E501
|
|
12639
|
+
|
|
12640
|
+
if self.api_client.client_side_validation and 'page_size' in local_var_params and local_var_params['page_size'] > 1000: # noqa: E501
|
|
12641
|
+
raise ApiValueError("Invalid value for parameter `page_size` when calling `get_job_logs_download_v2_api_v2_logs_job_logs_download_v2_job_id_get`, must be a value less than or equal to `1000`") # noqa: E501
|
|
12642
|
+
collection_formats = {}
|
|
12643
|
+
|
|
12644
|
+
path_params = {}
|
|
12645
|
+
if 'job_id' in local_var_params:
|
|
12646
|
+
path_params['job_id'] = local_var_params['job_id'] # noqa: E501
|
|
12647
|
+
|
|
12648
|
+
query_params = []
|
|
12649
|
+
if 'page_size' in local_var_params and local_var_params['page_size'] is not None: # noqa: E501
|
|
12650
|
+
query_params.append(('page_size', local_var_params['page_size'])) # noqa: E501
|
|
12651
|
+
if 'next_token' in local_var_params and local_var_params['next_token'] is not None: # noqa: E501
|
|
12652
|
+
query_params.append(('next_token', local_var_params['next_token'])) # noqa: E501
|
|
12653
|
+
if 'prev_token' in local_var_params and local_var_params['prev_token'] is not None: # noqa: E501
|
|
12654
|
+
query_params.append(('prev_token', local_var_params['prev_token'])) # noqa: E501
|
|
12655
|
+
|
|
12656
|
+
header_params = {}
|
|
12657
|
+
|
|
12658
|
+
form_params = []
|
|
12659
|
+
local_var_files = {}
|
|
12660
|
+
|
|
12661
|
+
body_params = None
|
|
12662
|
+
# HTTP header `Accept`
|
|
12663
|
+
header_params['Accept'] = self.api_client.select_header_accept(
|
|
12664
|
+
['application/json']) # noqa: E501
|
|
12665
|
+
|
|
12666
|
+
# Authentication setting
|
|
12667
|
+
auth_settings = [] # noqa: E501
|
|
12668
|
+
|
|
12669
|
+
return self.api_client.call_api(
|
|
12670
|
+
'/api/v2/logs/job_logs_download_v2/{job_id}', 'GET',
|
|
12671
|
+
path_params,
|
|
12672
|
+
query_params,
|
|
12673
|
+
header_params,
|
|
12674
|
+
body=body_params,
|
|
12675
|
+
post_params=form_params,
|
|
12676
|
+
files=local_var_files,
|
|
12677
|
+
response_type='LogdownloadresultResponse', # noqa: E501
|
|
12678
|
+
auth_settings=auth_settings,
|
|
12679
|
+
async_req=local_var_params.get('async_req'),
|
|
12680
|
+
_return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501
|
|
12681
|
+
_preload_content=local_var_params.get('_preload_content', True),
|
|
12682
|
+
_request_timeout=local_var_params.get('_request_timeout'),
|
|
12683
|
+
collection_formats=collection_formats)
|
|
12684
|
+
|
|
12554
12685
|
def get_job_logs_query_info_api_v2_decorated_ha_jobs_production_job_id_logs_query_get(self, production_job_id, **kwargs): # noqa: E501
|
|
12555
12686
|
"""Get Job Logs Query Info # noqa: E501
|
|
12556
12687
|
|
|
@@ -49,6 +49,7 @@ class DecoratedInteractiveSession(object):
|
|
|
49
49
|
'creator_id': 'str',
|
|
50
50
|
'integration_execution_details_id': 'str',
|
|
51
51
|
'bucket_log_prefix': 'str',
|
|
52
|
+
'bucket_log_prefix_streaming': 'str',
|
|
52
53
|
'project': 'MiniProject',
|
|
53
54
|
'cluster': 'MiniCluster',
|
|
54
55
|
'creator': 'MiniUser',
|
|
@@ -77,6 +78,7 @@ class DecoratedInteractiveSession(object):
|
|
|
77
78
|
'creator_id': 'creator_id',
|
|
78
79
|
'integration_execution_details_id': 'integration_execution_details_id',
|
|
79
80
|
'bucket_log_prefix': 'bucket_log_prefix',
|
|
81
|
+
'bucket_log_prefix_streaming': 'bucket_log_prefix_streaming',
|
|
80
82
|
'project': 'project',
|
|
81
83
|
'cluster': 'cluster',
|
|
82
84
|
'creator': 'creator',
|
|
@@ -88,7 +90,7 @@ class DecoratedInteractiveSession(object):
|
|
|
88
90
|
'integration_details': 'integration_details'
|
|
89
91
|
}
|
|
90
92
|
|
|
91
|
-
def __init__(self, id=None, ray_session_name=None, ray_job_id=None, name=None, status=None, created_at=None, finished_at=None, ha_job_id=None, ray_job_submission_id=None, cluster_id=None, namespace_id='DEPRECATED_NAMESPACE_ID', environment_id=None, project_id=None, creator_id=None, integration_execution_details_id=None, bucket_log_prefix=None, project=None, cluster=None, creator=None, namespace=None, runtime_environment=None, cost_dollars=None, is_colocated=None, access=None, integration_details=None, local_vars_configuration=None): # noqa: E501
|
|
93
|
+
def __init__(self, id=None, ray_session_name=None, ray_job_id=None, name=None, status=None, created_at=None, finished_at=None, ha_job_id=None, ray_job_submission_id=None, cluster_id=None, namespace_id='DEPRECATED_NAMESPACE_ID', environment_id=None, project_id=None, creator_id=None, integration_execution_details_id=None, bucket_log_prefix=None, bucket_log_prefix_streaming=None, project=None, cluster=None, creator=None, namespace=None, runtime_environment=None, cost_dollars=None, is_colocated=None, access=None, integration_details=None, local_vars_configuration=None): # noqa: E501
|
|
92
94
|
"""DecoratedInteractiveSession - a model defined in OpenAPI""" # noqa: E501
|
|
93
95
|
if local_vars_configuration is None:
|
|
94
96
|
local_vars_configuration = Configuration()
|
|
@@ -110,6 +112,7 @@ class DecoratedInteractiveSession(object):
|
|
|
110
112
|
self._creator_id = None
|
|
111
113
|
self._integration_execution_details_id = None
|
|
112
114
|
self._bucket_log_prefix = None
|
|
115
|
+
self._bucket_log_prefix_streaming = None
|
|
113
116
|
self._project = None
|
|
114
117
|
self._cluster = None
|
|
115
118
|
self._creator = None
|
|
@@ -145,6 +148,8 @@ class DecoratedInteractiveSession(object):
|
|
|
145
148
|
self.integration_execution_details_id = integration_execution_details_id
|
|
146
149
|
if bucket_log_prefix is not None:
|
|
147
150
|
self.bucket_log_prefix = bucket_log_prefix
|
|
151
|
+
if bucket_log_prefix_streaming is not None:
|
|
152
|
+
self.bucket_log_prefix_streaming = bucket_log_prefix_streaming
|
|
148
153
|
if project is not None:
|
|
149
154
|
self.project = project
|
|
150
155
|
self.cluster = cluster
|
|
@@ -515,6 +520,27 @@ class DecoratedInteractiveSession(object):
|
|
|
515
520
|
|
|
516
521
|
self._bucket_log_prefix = bucket_log_prefix
|
|
517
522
|
|
|
523
|
+
@property
|
|
524
|
+
def bucket_log_prefix_streaming(self):
|
|
525
|
+
"""Gets the bucket_log_prefix_streaming of this DecoratedInteractiveSession. # noqa: E501
|
|
526
|
+
|
|
527
|
+
|
|
528
|
+
:return: The bucket_log_prefix_streaming of this DecoratedInteractiveSession. # noqa: E501
|
|
529
|
+
:rtype: str
|
|
530
|
+
"""
|
|
531
|
+
return self._bucket_log_prefix_streaming
|
|
532
|
+
|
|
533
|
+
@bucket_log_prefix_streaming.setter
|
|
534
|
+
def bucket_log_prefix_streaming(self, bucket_log_prefix_streaming):
|
|
535
|
+
"""Sets the bucket_log_prefix_streaming of this DecoratedInteractiveSession.
|
|
536
|
+
|
|
537
|
+
|
|
538
|
+
:param bucket_log_prefix_streaming: The bucket_log_prefix_streaming of this DecoratedInteractiveSession. # noqa: E501
|
|
539
|
+
:type: str
|
|
540
|
+
"""
|
|
541
|
+
|
|
542
|
+
self._bucket_log_prefix_streaming = bucket_log_prefix_streaming
|
|
543
|
+
|
|
518
544
|
@property
|
|
519
545
|
def project(self):
|
|
520
546
|
"""Gets the project of this DecoratedInteractiveSession. # noqa: E501
|
{anyscale-0.5.121 → anyscale-0.5.123}/anyscale/client/openapi_client/models/decorated_job.py
RENAMED
|
@@ -49,6 +49,7 @@ class DecoratedJob(object):
|
|
|
49
49
|
'creator_id': 'str',
|
|
50
50
|
'integration_execution_details_id': 'str',
|
|
51
51
|
'bucket_log_prefix': 'str',
|
|
52
|
+
'bucket_log_prefix_streaming': 'str',
|
|
52
53
|
'project': 'MiniProject',
|
|
53
54
|
'cluster': 'MiniCluster',
|
|
54
55
|
'creator': 'MiniUser',
|
|
@@ -77,6 +78,7 @@ class DecoratedJob(object):
|
|
|
77
78
|
'creator_id': 'creator_id',
|
|
78
79
|
'integration_execution_details_id': 'integration_execution_details_id',
|
|
79
80
|
'bucket_log_prefix': 'bucket_log_prefix',
|
|
81
|
+
'bucket_log_prefix_streaming': 'bucket_log_prefix_streaming',
|
|
80
82
|
'project': 'project',
|
|
81
83
|
'cluster': 'cluster',
|
|
82
84
|
'creator': 'creator',
|
|
@@ -88,7 +90,7 @@ class DecoratedJob(object):
|
|
|
88
90
|
'integration_details': 'integration_details'
|
|
89
91
|
}
|
|
90
92
|
|
|
91
|
-
def __init__(self, id=None, ray_session_name=None, ray_job_id=None, name=None, status=None, created_at=None, finished_at=None, ha_job_id=None, ray_job_submission_id=None, cluster_id=None, namespace_id='DEPRECATED_NAMESPACE_ID', environment_id=None, project_id=None, creator_id=None, integration_execution_details_id=None, bucket_log_prefix=None, project=None, cluster=None, creator=None, namespace=None, runtime_environment=None, cost_dollars=None, is_colocated=None, access=None, integration_details=None, local_vars_configuration=None): # noqa: E501
|
|
93
|
+
def __init__(self, id=None, ray_session_name=None, ray_job_id=None, name=None, status=None, created_at=None, finished_at=None, ha_job_id=None, ray_job_submission_id=None, cluster_id=None, namespace_id='DEPRECATED_NAMESPACE_ID', environment_id=None, project_id=None, creator_id=None, integration_execution_details_id=None, bucket_log_prefix=None, bucket_log_prefix_streaming=None, project=None, cluster=None, creator=None, namespace=None, runtime_environment=None, cost_dollars=None, is_colocated=None, access=None, integration_details=None, local_vars_configuration=None): # noqa: E501
|
|
92
94
|
"""DecoratedJob - a model defined in OpenAPI""" # noqa: E501
|
|
93
95
|
if local_vars_configuration is None:
|
|
94
96
|
local_vars_configuration = Configuration()
|
|
@@ -110,6 +112,7 @@ class DecoratedJob(object):
|
|
|
110
112
|
self._creator_id = None
|
|
111
113
|
self._integration_execution_details_id = None
|
|
112
114
|
self._bucket_log_prefix = None
|
|
115
|
+
self._bucket_log_prefix_streaming = None
|
|
113
116
|
self._project = None
|
|
114
117
|
self._cluster = None
|
|
115
118
|
self._creator = None
|
|
@@ -145,6 +148,8 @@ class DecoratedJob(object):
|
|
|
145
148
|
self.integration_execution_details_id = integration_execution_details_id
|
|
146
149
|
if bucket_log_prefix is not None:
|
|
147
150
|
self.bucket_log_prefix = bucket_log_prefix
|
|
151
|
+
if bucket_log_prefix_streaming is not None:
|
|
152
|
+
self.bucket_log_prefix_streaming = bucket_log_prefix_streaming
|
|
148
153
|
if project is not None:
|
|
149
154
|
self.project = project
|
|
150
155
|
self.cluster = cluster
|
|
@@ -515,6 +520,27 @@ class DecoratedJob(object):
|
|
|
515
520
|
|
|
516
521
|
self._bucket_log_prefix = bucket_log_prefix
|
|
517
522
|
|
|
523
|
+
@property
|
|
524
|
+
def bucket_log_prefix_streaming(self):
|
|
525
|
+
"""Gets the bucket_log_prefix_streaming of this DecoratedJob. # noqa: E501
|
|
526
|
+
|
|
527
|
+
|
|
528
|
+
:return: The bucket_log_prefix_streaming of this DecoratedJob. # noqa: E501
|
|
529
|
+
:rtype: str
|
|
530
|
+
"""
|
|
531
|
+
return self._bucket_log_prefix_streaming
|
|
532
|
+
|
|
533
|
+
@bucket_log_prefix_streaming.setter
|
|
534
|
+
def bucket_log_prefix_streaming(self, bucket_log_prefix_streaming):
|
|
535
|
+
"""Sets the bucket_log_prefix_streaming of this DecoratedJob.
|
|
536
|
+
|
|
537
|
+
|
|
538
|
+
:param bucket_log_prefix_streaming: The bucket_log_prefix_streaming of this DecoratedJob. # noqa: E501
|
|
539
|
+
:type: str
|
|
540
|
+
"""
|
|
541
|
+
|
|
542
|
+
self._bucket_log_prefix_streaming = bucket_log_prefix_streaming
|
|
543
|
+
|
|
518
544
|
@property
|
|
519
545
|
def project(self):
|
|
520
546
|
"""Gets the project of this DecoratedJob. # noqa: E501
|
|
@@ -49,6 +49,7 @@ class MiniJobRun(object):
|
|
|
49
49
|
'creator_id': 'str',
|
|
50
50
|
'integration_execution_details_id': 'str',
|
|
51
51
|
'bucket_log_prefix': 'str',
|
|
52
|
+
'bucket_log_prefix_streaming': 'str',
|
|
52
53
|
'cluster': 'MiniCluster',
|
|
53
54
|
'integration_details': 'IntegrationDetails'
|
|
54
55
|
}
|
|
@@ -70,11 +71,12 @@ class MiniJobRun(object):
|
|
|
70
71
|
'creator_id': 'creator_id',
|
|
71
72
|
'integration_execution_details_id': 'integration_execution_details_id',
|
|
72
73
|
'bucket_log_prefix': 'bucket_log_prefix',
|
|
74
|
+
'bucket_log_prefix_streaming': 'bucket_log_prefix_streaming',
|
|
73
75
|
'cluster': 'cluster',
|
|
74
76
|
'integration_details': 'integration_details'
|
|
75
77
|
}
|
|
76
78
|
|
|
77
|
-
def __init__(self, id=None, ray_session_name=None, ray_job_id=None, name=None, status=None, created_at=None, finished_at=None, ha_job_id=None, ray_job_submission_id=None, cluster_id=None, namespace_id='DEPRECATED_NAMESPACE_ID', environment_id=None, project_id=None, creator_id=None, integration_execution_details_id=None, bucket_log_prefix=None, cluster=None, integration_details=None, local_vars_configuration=None): # noqa: E501
|
|
79
|
+
def __init__(self, id=None, ray_session_name=None, ray_job_id=None, name=None, status=None, created_at=None, finished_at=None, ha_job_id=None, ray_job_submission_id=None, cluster_id=None, namespace_id='DEPRECATED_NAMESPACE_ID', environment_id=None, project_id=None, creator_id=None, integration_execution_details_id=None, bucket_log_prefix=None, bucket_log_prefix_streaming=None, cluster=None, integration_details=None, local_vars_configuration=None): # noqa: E501
|
|
78
80
|
"""MiniJobRun - a model defined in OpenAPI""" # noqa: E501
|
|
79
81
|
if local_vars_configuration is None:
|
|
80
82
|
local_vars_configuration = Configuration()
|
|
@@ -96,6 +98,7 @@ class MiniJobRun(object):
|
|
|
96
98
|
self._creator_id = None
|
|
97
99
|
self._integration_execution_details_id = None
|
|
98
100
|
self._bucket_log_prefix = None
|
|
101
|
+
self._bucket_log_prefix_streaming = None
|
|
99
102
|
self._cluster = None
|
|
100
103
|
self._integration_details = None
|
|
101
104
|
self.discriminator = None
|
|
@@ -124,6 +127,8 @@ class MiniJobRun(object):
|
|
|
124
127
|
self.integration_execution_details_id = integration_execution_details_id
|
|
125
128
|
if bucket_log_prefix is not None:
|
|
126
129
|
self.bucket_log_prefix = bucket_log_prefix
|
|
130
|
+
if bucket_log_prefix_streaming is not None:
|
|
131
|
+
self.bucket_log_prefix_streaming = bucket_log_prefix_streaming
|
|
127
132
|
self.cluster = cluster
|
|
128
133
|
if integration_details is not None:
|
|
129
134
|
self.integration_details = integration_details
|
|
@@ -482,6 +487,27 @@ class MiniJobRun(object):
|
|
|
482
487
|
|
|
483
488
|
self._bucket_log_prefix = bucket_log_prefix
|
|
484
489
|
|
|
490
|
+
@property
|
|
491
|
+
def bucket_log_prefix_streaming(self):
|
|
492
|
+
"""Gets the bucket_log_prefix_streaming of this MiniJobRun. # noqa: E501
|
|
493
|
+
|
|
494
|
+
|
|
495
|
+
:return: The bucket_log_prefix_streaming of this MiniJobRun. # noqa: E501
|
|
496
|
+
:rtype: str
|
|
497
|
+
"""
|
|
498
|
+
return self._bucket_log_prefix_streaming
|
|
499
|
+
|
|
500
|
+
@bucket_log_prefix_streaming.setter
|
|
501
|
+
def bucket_log_prefix_streaming(self, bucket_log_prefix_streaming):
|
|
502
|
+
"""Sets the bucket_log_prefix_streaming of this MiniJobRun.
|
|
503
|
+
|
|
504
|
+
|
|
505
|
+
:param bucket_log_prefix_streaming: The bucket_log_prefix_streaming of this MiniJobRun. # noqa: E501
|
|
506
|
+
:type: str
|
|
507
|
+
"""
|
|
508
|
+
|
|
509
|
+
self._bucket_log_prefix_streaming = bucket_log_prefix_streaming
|
|
510
|
+
|
|
485
511
|
@property
|
|
486
512
|
def cluster(self):
|
|
487
513
|
"""Gets the cluster of this MiniJobRun. # noqa: E501
|
|
@@ -101,6 +101,13 @@ def cloud_set_default(
|
|
|
101
101
|
required=False,
|
|
102
102
|
type=str,
|
|
103
103
|
)
|
|
104
|
+
@click.option(
|
|
105
|
+
"--functional-verify",
|
|
106
|
+
help="Verify the cloud is functional. This will check that the cloud can launch workspace/service.",
|
|
107
|
+
required=False,
|
|
108
|
+
is_flag=False,
|
|
109
|
+
flag_value="workspace",
|
|
110
|
+
)
|
|
104
111
|
@click.option(
|
|
105
112
|
"--anyscale-managed",
|
|
106
113
|
is_flag=True,
|
|
@@ -119,6 +126,7 @@ def setup_cloud( # noqa: PLR0913
|
|
|
119
126
|
region: str,
|
|
120
127
|
name: str,
|
|
121
128
|
project_id: str,
|
|
129
|
+
functional_verify: Optional[str],
|
|
122
130
|
anyscale_managed: bool, # noqa: ARG001
|
|
123
131
|
use_legacy_stack: bool,
|
|
124
132
|
) -> None:
|
|
@@ -133,6 +141,7 @@ def setup_cloud( # noqa: PLR0913
|
|
|
133
141
|
provider=provider,
|
|
134
142
|
region=region,
|
|
135
143
|
name=name,
|
|
144
|
+
functional_verify=functional_verify,
|
|
136
145
|
cluster_management_stack_version=cluster_management_stack_version,
|
|
137
146
|
)
|
|
138
147
|
elif provider == "gcp":
|
|
@@ -143,6 +152,7 @@ def setup_cloud( # noqa: PLR0913
|
|
|
143
152
|
region=region,
|
|
144
153
|
name=name,
|
|
145
154
|
project_id=project_id,
|
|
155
|
+
functional_verify=functional_verify,
|
|
146
156
|
cluster_management_stack_version=cluster_management_stack_version,
|
|
147
157
|
)
|
|
148
158
|
|
|
@@ -402,6 +412,13 @@ def cloud_secrets(
|
|
|
402
412
|
hidden=True,
|
|
403
413
|
help="Whether to use the legacy stack.",
|
|
404
414
|
)
|
|
415
|
+
@click.option(
|
|
416
|
+
"--functional-verify",
|
|
417
|
+
help="Verify the cloud is functional. This will check that the cloud can launch workspace/service.",
|
|
418
|
+
required=False,
|
|
419
|
+
is_flag=False,
|
|
420
|
+
flag_value="workspace",
|
|
421
|
+
)
|
|
405
422
|
@click.option(
|
|
406
423
|
"--yes", "-y", is_flag=True, default=False, help="Skip asking for confirmation."
|
|
407
424
|
)
|
|
@@ -426,6 +443,7 @@ def register_cloud( # noqa: PLR0913
|
|
|
426
443
|
provider_name: str,
|
|
427
444
|
firewall_policy_names: str,
|
|
428
445
|
cloud_storage_bucket_name: str,
|
|
446
|
+
functional_verify: Optional[str],
|
|
429
447
|
private_network: bool,
|
|
430
448
|
use_legacy_stack: bool,
|
|
431
449
|
yes: bool,
|
|
@@ -457,6 +475,7 @@ def register_cloud( # noqa: PLR0913
|
|
|
457
475
|
instance_iam_role_id=instance_iam_role_id,
|
|
458
476
|
security_group_ids=security_group_ids.split(","),
|
|
459
477
|
s3_bucket_id=s3_bucket_id,
|
|
478
|
+
functional_verify=functional_verify,
|
|
460
479
|
private_network=private_network,
|
|
461
480
|
cluster_management_stack_version=ClusterManagementStackVersions.V1
|
|
462
481
|
if use_legacy_stack
|
|
@@ -514,6 +533,7 @@ def register_cloud( # noqa: PLR0913
|
|
|
514
533
|
provider_id=provider_name,
|
|
515
534
|
firewall_policy_names=firewall_policy_names.split(","),
|
|
516
535
|
cloud_storage_bucket_name=cloud_storage_bucket_name,
|
|
536
|
+
functional_verify=functional_verify,
|
|
517
537
|
private_network=private_network,
|
|
518
538
|
cluster_management_stack_version=ClusterManagementStackVersions.V1
|
|
519
539
|
if use_legacy_stack
|
|
@@ -535,6 +555,13 @@ def register_cloud( # noqa: PLR0913
|
|
|
535
555
|
help="Verify cloud by cloud id, alternative to cloud name.",
|
|
536
556
|
required=False,
|
|
537
557
|
)
|
|
558
|
+
@click.option(
|
|
559
|
+
"--functional-verify",
|
|
560
|
+
help="Verify the cloud is functional. This will check that the cloud can launch workspace/service.",
|
|
561
|
+
required=False,
|
|
562
|
+
is_flag=False,
|
|
563
|
+
flag_value="workspace",
|
|
564
|
+
)
|
|
538
565
|
@click.option(
|
|
539
566
|
"--strict",
|
|
540
567
|
is_flag=True,
|
|
@@ -545,6 +572,7 @@ def cloud_verify(
|
|
|
545
572
|
cloud_name: Optional[str],
|
|
546
573
|
name: Optional[str],
|
|
547
574
|
cloud_id: Optional[str],
|
|
575
|
+
functional_verify: Optional[str],
|
|
548
576
|
strict: bool = False,
|
|
549
577
|
) -> bool:
|
|
550
578
|
if cloud_name and name and cloud_name != name:
|
|
@@ -554,5 +582,8 @@ def cloud_verify(
|
|
|
554
582
|
)
|
|
555
583
|
|
|
556
584
|
return CloudController().verify_cloud(
|
|
557
|
-
cloud_name=cloud_name or name,
|
|
585
|
+
cloud_name=cloud_name or name,
|
|
586
|
+
cloud_id=cloud_id,
|
|
587
|
+
functional_verify=functional_verify,
|
|
588
|
+
strict=strict,
|
|
558
589
|
)
|
|
@@ -2,7 +2,7 @@ from typing import IO, Optional
|
|
|
2
2
|
|
|
3
3
|
import click
|
|
4
4
|
|
|
5
|
-
from anyscale.controllers.
|
|
5
|
+
from anyscale.controllers.compute_config_controller import ComputeConfigController
|
|
6
6
|
from anyscale.util import validate_non_negative_arg
|
|
7
7
|
from anyscale.utils.entity_arg_utils import format_inputs_to_entity
|
|
8
8
|
|
|
@@ -12,11 +12,11 @@ from anyscale.utils.entity_arg_utils import format_inputs_to_entity
|
|
|
12
12
|
short_help="Manage compute configurations on Anyscale.",
|
|
13
13
|
help="Manages compute configurations to define cloud resource types and limitations.",
|
|
14
14
|
)
|
|
15
|
-
def
|
|
15
|
+
def compute_config_cli() -> None:
|
|
16
16
|
pass
|
|
17
17
|
|
|
18
18
|
|
|
19
|
-
@
|
|
19
|
+
@compute_config_cli.command(
|
|
20
20
|
name="create",
|
|
21
21
|
help=(
|
|
22
22
|
"Creates a new compute config. This accepts a yaml that follows the schema defined "
|
|
@@ -34,10 +34,10 @@ def cluster_compute_cli() -> None:
|
|
|
34
34
|
def create_cluster_compute(
|
|
35
35
|
cluster_compute_file: IO[bytes], name: Optional[str]
|
|
36
36
|
) -> None:
|
|
37
|
-
|
|
37
|
+
ComputeConfigController().create(cluster_compute_file, name)
|
|
38
38
|
|
|
39
39
|
|
|
40
|
-
@
|
|
40
|
+
@compute_config_cli.command(
|
|
41
41
|
name="delete", help="Delete the specified compute config.", hidden=True
|
|
42
42
|
)
|
|
43
43
|
@click.argument("cluster-compute-name", type=str, required=False)
|
|
@@ -64,10 +64,10 @@ def delete_cluster_compute(
|
|
|
64
64
|
raise click.ClickException(
|
|
65
65
|
"Please only provide one of [CLUSTER_COMPUTE_NAME] or --name."
|
|
66
66
|
)
|
|
67
|
-
|
|
67
|
+
ComputeConfigController().delete(cluster_compute_name or name, cluster_compute_id)
|
|
68
68
|
|
|
69
69
|
|
|
70
|
-
@
|
|
70
|
+
@compute_config_cli.command(
|
|
71
71
|
name="archive", help="Archive the specified compute config.",
|
|
72
72
|
)
|
|
73
73
|
@click.argument("cluster-compute-name", type=str, required=False)
|
|
@@ -95,10 +95,10 @@ def archive_cluster_compute(
|
|
|
95
95
|
"Please only provide one of [CLUSTER_COMPUTE_NAME] or --name."
|
|
96
96
|
)
|
|
97
97
|
entity = format_inputs_to_entity(cluster_compute_name or name, cluster_compute_id)
|
|
98
|
-
|
|
98
|
+
ComputeConfigController().archive(entity)
|
|
99
99
|
|
|
100
100
|
|
|
101
|
-
@
|
|
101
|
+
@compute_config_cli.command(
|
|
102
102
|
name="list",
|
|
103
103
|
help=(
|
|
104
104
|
"List information about compute configs on Anyscale. By default only list "
|
|
@@ -139,7 +139,7 @@ def list( # noqa: A001
|
|
|
139
139
|
include_shared: bool,
|
|
140
140
|
max_items: int,
|
|
141
141
|
) -> None:
|
|
142
|
-
cluster_compute_controller =
|
|
142
|
+
cluster_compute_controller = ComputeConfigController()
|
|
143
143
|
cluster_compute_controller.list(
|
|
144
144
|
cluster_compute_name=name,
|
|
145
145
|
cluster_compute_id=cluster_compute_id,
|
|
@@ -148,7 +148,7 @@ def list( # noqa: A001
|
|
|
148
148
|
)
|
|
149
149
|
|
|
150
150
|
|
|
151
|
-
@
|
|
151
|
+
@compute_config_cli.command(
|
|
152
152
|
name="get", help=("Get details about compute configuration."),
|
|
153
153
|
)
|
|
154
154
|
@click.argument("cluster-compute-name", required=False)
|
|
@@ -160,7 +160,7 @@ def list( # noqa: A001
|
|
|
160
160
|
help=("Get details about compute configuration by this id."),
|
|
161
161
|
)
|
|
162
162
|
def get(cluster_compute_name: Optional[str], cluster_compute_id: Optional[str]) -> None:
|
|
163
|
-
cluster_compute_controller =
|
|
163
|
+
cluster_compute_controller = ComputeConfigController()
|
|
164
164
|
cluster_compute_controller.get(
|
|
165
165
|
cluster_compute_name=cluster_compute_name,
|
|
166
166
|
cluster_compute_id=cluster_compute_id,
|