platform-api-python-client 4.8.4__tar.gz → 4.9.7__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.
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/PKG-INFO +1 -1
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/README.md +7 -7
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/__init__.py +5 -4
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/api/external_api.py +129 -420
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/api_client.py +1 -1
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/configuration.py +1 -1
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/__init__.py +4 -3
- platform_api_python_client-4.9.7/platform_api_python_client/models/config_file_mount.py +99 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/create_c_serve_v3_deployment_request.py +13 -2
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/create_inference_v3_deployment_request.py +29 -2
- platform_api_python_client-4.9.7/platform_api_python_client/models/create_job_deployment_request.py +139 -0
- platform_api_python_client-4.8.4/platform_api_python_client/models/create_rag_deployment_response.py → platform_api_python_client-4.9.7/platform_api_python_client/models/create_job_deployment_response.py +4 -4
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/deployment_type.py +1 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/get_c_serve_v3_deployment_response.py +9 -3
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/get_inference_v3_deployment_response.py +18 -3
- platform_api_python_client-4.9.7/platform_api_python_client/models/get_job_deployment_response.py +160 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/pod_status.py +2 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/service_status.py +4 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client.egg-info/PKG-INFO +1 -1
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client.egg-info/SOURCES.txt +8 -6
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/pyproject.toml +1 -1
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/setup.py +1 -1
- platform_api_python_client-4.9.7/test/test_config_file_mount.py +56 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_create_c_serve_v3_deployment_request.py +4 -1
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_create_inference_v3_deployment_request.py +8 -1
- platform_api_python_client-4.8.4/test/test_create_rag_deployment_request.py → platform_api_python_client-4.9.7/test/test_create_job_deployment_request.py +21 -26
- platform_api_python_client-4.8.4/test/test_create_rag_deployment_response.py → platform_api_python_client-4.9.7/test/test_create_job_deployment_response.py +11 -11
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_deployment_response.py +8 -1
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_external_api.py +12 -19
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_get_c_serve_v3_deployment_response.py +4 -1
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_get_inference_v3_deployment_response.py +7 -1
- platform_api_python_client-4.9.7/test/test_get_job_deployment_response.py +89 -0
- platform_api_python_client-4.8.4/platform_api_python_client/models/create_rag_deployment_request.py +0 -164
- platform_api_python_client-4.8.4/platform_api_python_client/models/get_rag_deployment_response.py +0 -173
- platform_api_python_client-4.8.4/test/test_get_rag_deployment_response.py +0 -90
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/api/__init__.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/api_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/exceptions.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/api_key_request.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/api_key_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/backend_protocol.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/c_serve_recipe_perf.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/c_serve_recipe_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/c_serve_v2_recipe.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/cluster_capacity_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/create_c_serve_v2_deployment_request.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/create_c_serve_v2_deployment_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/create_c_serve_v3_deployment_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/create_compute_deployment_request.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/create_compute_deployment_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/create_inference_deployment_request.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/create_inference_deployment_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/create_organization_request.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/create_organization_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/create_url_request.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/create_url_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/credits_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/daily_bill_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/deployment_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/deployment_status.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/deployment_status_request.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/deployment_status_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/deployment_status_v3_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/deployment_usage.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/deployment_usage_value.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/get_c_serve_v2_deployment_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/get_cluster_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/get_compute_deployment_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/get_deployment_log_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/get_deployment_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/get_deployment_revision_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/get_deployment_usage_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/get_inference_deployment_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/gpu_type_capacity.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/hardware_instance_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/http_validation_error.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/image_pull_secret_credentials.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/invite_user_request.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/list_api_key_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/list_c_serve_recipe_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/list_cluster_capacity_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/list_daily_bill_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/list_deployment_revisions_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/list_get_cluster_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/list_get_deployment_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/list_hardware_instance_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/list_prebuilt_image_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/list_user_vault_items_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/metric.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/pod_details.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/prebuilt_image_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/revision_pod_details.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/rollout_status.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/rollout_strategy_params.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/update_deployment_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/update_deployment_status_v3_request.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/user_vault_item.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/user_vault_type.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/validation_error.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/validation_error_loc_inner.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/models/vault_scope.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/py.typed +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client/rest.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client.egg-info/dependency_links.txt +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client.egg-info/requires.txt +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/platform_api_python_client.egg-info/top_level.txt +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/setup.cfg +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_api_key_request.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_api_key_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_backend_protocol.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_c_serve_recipe_perf.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_c_serve_recipe_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_c_serve_v2_recipe.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_cluster_capacity_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_create_c_serve_v2_deployment_request.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_create_c_serve_v2_deployment_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_create_c_serve_v3_deployment_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_create_compute_deployment_request.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_create_compute_deployment_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_create_inference_deployment_request.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_create_inference_deployment_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_create_organization_request.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_create_organization_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_create_url_request.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_create_url_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_credits_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_daily_bill_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_deployment_status.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_deployment_status_request.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_deployment_status_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_deployment_status_v3_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_deployment_type.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_deployment_usage.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_deployment_usage_value.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_get_c_serve_v2_deployment_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_get_cluster_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_get_compute_deployment_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_get_deployment_log_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_get_deployment_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_get_deployment_revision_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_get_deployment_usage_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_get_inference_deployment_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_gpu_type_capacity.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_hardware_instance_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_http_validation_error.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_image_pull_secret_credentials.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_invite_user_request.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_list_api_key_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_list_c_serve_recipe_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_list_cluster_capacity_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_list_daily_bill_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_list_deployment_revisions_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_list_get_cluster_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_list_get_deployment_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_list_hardware_instance_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_list_prebuilt_image_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_list_user_vault_items_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_metric.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_pod_details.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_pod_status.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_prebuilt_image_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_revision_pod_details.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_rollout_status.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_rollout_strategy_params.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_service_status.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_update_deployment_response.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_update_deployment_status_v3_request.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_user_vault_item.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_user_vault_type.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_validation_error.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_validation_error_loc_inner.py +0 -0
- {platform_api_python_client-4.8.4 → platform_api_python_client-4.9.7}/test/test_vault_scope.py +0 -0
|
@@ -4,7 +4,7 @@ No description provided (generated by Openapi Generator https://github.com/opena
|
|
|
4
4
|
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
5
5
|
|
|
6
6
|
- API version: 0.1.0
|
|
7
|
-
- Package version: 4.
|
|
7
|
+
- Package version: 4.9.7
|
|
8
8
|
- Generator version: 7.9.0
|
|
9
9
|
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
|
10
10
|
|
|
@@ -100,8 +100,8 @@ Class | Method | HTTP request | Description
|
|
|
100
100
|
*EXTERNALApi* | [**create_cserve_v3_deployment_deployments_cserve_v3_post**](docs/EXTERNALApi.md#create_cserve_v3_deployment_deployments_cserve_v3_post) | **POST** /deployments/cserve_v3 | Create Cserve V3 Deployment
|
|
101
101
|
*EXTERNALApi* | [**create_inference_deployment_deployments_inference_post**](docs/EXTERNALApi.md#create_inference_deployment_deployments_inference_post) | **POST** /deployments/inference | Create Inference Deployment
|
|
102
102
|
*EXTERNALApi* | [**create_inference_v3_deployment_deployments_inference_v3_post**](docs/EXTERNALApi.md#create_inference_v3_deployment_deployments_inference_v3_post) | **POST** /deployments/inference_v3 | Create Inference V3 Deployment
|
|
103
|
+
*EXTERNALApi* | [**create_job_deployment_deployments_job_post**](docs/EXTERNALApi.md#create_job_deployment_deployments_job_post) | **POST** /deployments/job | Create Job Deployment
|
|
103
104
|
*EXTERNALApi* | [**create_new_organization_organizations_post**](docs/EXTERNALApi.md#create_new_organization_organizations_post) | **POST** /organizations | Create New Organization
|
|
104
|
-
*EXTERNALApi* | [**create_rag_deployment_deployments_rag_post**](docs/EXTERNALApi.md#create_rag_deployment_deployments_rag_post) | **POST** /deployments/rag | Create Rag Deployment
|
|
105
105
|
*EXTERNALApi* | [**delete_api_key_credentials_api_key_id_delete**](docs/EXTERNALApi.md#delete_api_key_credentials_api_key_id_delete) | **DELETE** /credentials/api-key/{id} | Delete Api Key
|
|
106
106
|
*EXTERNALApi* | [**delete_user_vault_item_endpoint_user_vault_delete**](docs/EXTERNALApi.md#delete_user_vault_item_endpoint_user_vault_delete) | **DELETE** /user_vault | Delete User Vault Item Endpoint
|
|
107
107
|
*EXTERNALApi* | [**download_url_file_url_download_post**](docs/EXTERNALApi.md#download_url_file_url_download_post) | **POST** /file_url/download | Download Url
|
|
@@ -123,8 +123,8 @@ Class | Method | HTTP request | Description
|
|
|
123
123
|
*EXTERNALApi* | [**get_hardware_instances_hardware_instances_get**](docs/EXTERNALApi.md#get_hardware_instances_hardware_instances_get) | **GET** /hardware-instances | Get Hardware Instances
|
|
124
124
|
*EXTERNALApi* | [**get_inference_deployment_deployments_inference_deployment_id_get**](docs/EXTERNALApi.md#get_inference_deployment_deployments_inference_deployment_id_get) | **GET** /deployments/inference/{deployment_id} | Get Inference Deployment
|
|
125
125
|
*EXTERNALApi* | [**get_inference_v3_deployment_deployments_inference_v3_deployment_id_get**](docs/EXTERNALApi.md#get_inference_v3_deployment_deployments_inference_v3_deployment_id_get) | **GET** /deployments/inference_v3/{deployment_id} | Get Inference V3 Deployment
|
|
126
|
+
*EXTERNALApi* | [**get_job_deployment_deployments_job_deployment_id_get**](docs/EXTERNALApi.md#get_job_deployment_deployments_job_deployment_id_get) | **GET** /deployments/job/{deployment_id} | Get Job Deployment
|
|
126
127
|
*EXTERNALApi* | [**get_prebuilt_images_prebuilt_images_get**](docs/EXTERNALApi.md#get_prebuilt_images_prebuilt_images_get) | **GET** /prebuilt-images | Get Prebuilt Images
|
|
127
|
-
*EXTERNALApi* | [**get_rag_deployment_deployments_rag_deployment_id_get**](docs/EXTERNALApi.md#get_rag_deployment_deployments_rag_deployment_id_get) | **GET** /deployments/rag/{deployment_id} | Get Rag Deployment
|
|
128
128
|
*EXTERNALApi* | [**get_usage_daily_bills_get**](docs/EXTERNALApi.md#get_usage_daily_bills_get) | **GET** /daily_bills | Get Usage
|
|
129
129
|
*EXTERNALApi* | [**get_usage_deployments_usage_deployment_id_get**](docs/EXTERNALApi.md#get_usage_deployments_usage_deployment_id_get) | **GET** /deployments/usage/{deployment_id} | Get Usage
|
|
130
130
|
*EXTERNALApi* | [**invite_user_organizations_invite_post**](docs/EXTERNALApi.md#invite_user_organizations_invite_post) | **POST** /organizations/invite | Invite User
|
|
@@ -138,7 +138,6 @@ Class | Method | HTTP request | Description
|
|
|
138
138
|
*EXTERNALApi* | [**update_deployment_status_v3_deployments_status_v3_deployment_id_put**](docs/EXTERNALApi.md#update_deployment_status_v3_deployments_status_v3_deployment_id_put) | **PUT** /deployments/status_v3/{deployment_id} | Update Deployment Status V3
|
|
139
139
|
*EXTERNALApi* | [**update_inference_deployment_deployments_inference_put**](docs/EXTERNALApi.md#update_inference_deployment_deployments_inference_put) | **PUT** /deployments/inference | Update Inference Deployment
|
|
140
140
|
*EXTERNALApi* | [**update_inference_v3_deployment_deployments_inference_v3_put**](docs/EXTERNALApi.md#update_inference_v3_deployment_deployments_inference_v3_put) | **PUT** /deployments/inference_v3 | Update Inference V3 Deployment
|
|
141
|
-
*EXTERNALApi* | [**update_rag_deployment_deployments_rag_put**](docs/EXTERNALApi.md#update_rag_deployment_deployments_rag_put) | **PUT** /deployments/rag | Update Rag Deployment
|
|
142
141
|
*EXTERNALApi* | [**update_user_vault_item_endpoint_user_vault_put**](docs/EXTERNALApi.md#update_user_vault_item_endpoint_user_vault_put) | **PUT** /user_vault | Update User Vault Item Endpoint
|
|
143
142
|
*EXTERNALApi* | [**upload_url_file_url_upload_post**](docs/EXTERNALApi.md#upload_url_file_url_upload_post) | **POST** /file_url/upload | Upload Url
|
|
144
143
|
|
|
@@ -152,6 +151,7 @@ Class | Method | HTTP request | Description
|
|
|
152
151
|
- [CServeRecipeResponse](docs/CServeRecipeResponse.md)
|
|
153
152
|
- [CServeV2Recipe](docs/CServeV2Recipe.md)
|
|
154
153
|
- [ClusterCapacityResponse](docs/ClusterCapacityResponse.md)
|
|
154
|
+
- [ConfigFileMount](docs/ConfigFileMount.md)
|
|
155
155
|
- [CreateCServeV2DeploymentRequest](docs/CreateCServeV2DeploymentRequest.md)
|
|
156
156
|
- [CreateCServeV2DeploymentResponse](docs/CreateCServeV2DeploymentResponse.md)
|
|
157
157
|
- [CreateCServeV3DeploymentRequest](docs/CreateCServeV3DeploymentRequest.md)
|
|
@@ -161,10 +161,10 @@ Class | Method | HTTP request | Description
|
|
|
161
161
|
- [CreateInferenceDeploymentRequest](docs/CreateInferenceDeploymentRequest.md)
|
|
162
162
|
- [CreateInferenceDeploymentResponse](docs/CreateInferenceDeploymentResponse.md)
|
|
163
163
|
- [CreateInferenceV3DeploymentRequest](docs/CreateInferenceV3DeploymentRequest.md)
|
|
164
|
+
- [CreateJobDeploymentRequest](docs/CreateJobDeploymentRequest.md)
|
|
165
|
+
- [CreateJobDeploymentResponse](docs/CreateJobDeploymentResponse.md)
|
|
164
166
|
- [CreateOrganizationRequest](docs/CreateOrganizationRequest.md)
|
|
165
167
|
- [CreateOrganizationResponse](docs/CreateOrganizationResponse.md)
|
|
166
|
-
- [CreateRagDeploymentRequest](docs/CreateRagDeploymentRequest.md)
|
|
167
|
-
- [CreateRagDeploymentResponse](docs/CreateRagDeploymentResponse.md)
|
|
168
168
|
- [CreateUrlRequest](docs/CreateUrlRequest.md)
|
|
169
169
|
- [CreateUrlResponse](docs/CreateUrlResponse.md)
|
|
170
170
|
- [CreditsResponse](docs/CreditsResponse.md)
|
|
@@ -187,7 +187,7 @@ Class | Method | HTTP request | Description
|
|
|
187
187
|
- [GetDeploymentUsageResponse](docs/GetDeploymentUsageResponse.md)
|
|
188
188
|
- [GetInferenceDeploymentResponse](docs/GetInferenceDeploymentResponse.md)
|
|
189
189
|
- [GetInferenceV3DeploymentResponse](docs/GetInferenceV3DeploymentResponse.md)
|
|
190
|
-
- [
|
|
190
|
+
- [GetJobDeploymentResponse](docs/GetJobDeploymentResponse.md)
|
|
191
191
|
- [GpuTypeCapacity](docs/GpuTypeCapacity.md)
|
|
192
192
|
- [HTTPValidationError](docs/HTTPValidationError.md)
|
|
193
193
|
- [HardwareInstanceResponse](docs/HardwareInstanceResponse.md)
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
""" # noqa: E501
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
__version__ = "4.
|
|
17
|
+
__version__ = "4.9.7"
|
|
18
18
|
|
|
19
19
|
# import apis into sdk package
|
|
20
20
|
from platform_api_python_client.api.external_api import EXTERNALApi
|
|
@@ -38,6 +38,7 @@ from platform_api_python_client.models.c_serve_recipe_perf import CServeRecipePe
|
|
|
38
38
|
from platform_api_python_client.models.c_serve_recipe_response import CServeRecipeResponse
|
|
39
39
|
from platform_api_python_client.models.c_serve_v2_recipe import CServeV2Recipe
|
|
40
40
|
from platform_api_python_client.models.cluster_capacity_response import ClusterCapacityResponse
|
|
41
|
+
from platform_api_python_client.models.config_file_mount import ConfigFileMount
|
|
41
42
|
from platform_api_python_client.models.create_c_serve_v2_deployment_request import CreateCServeV2DeploymentRequest
|
|
42
43
|
from platform_api_python_client.models.create_c_serve_v2_deployment_response import CreateCServeV2DeploymentResponse
|
|
43
44
|
from platform_api_python_client.models.create_c_serve_v3_deployment_request import CreateCServeV3DeploymentRequest
|
|
@@ -47,10 +48,10 @@ from platform_api_python_client.models.create_compute_deployment_response import
|
|
|
47
48
|
from platform_api_python_client.models.create_inference_deployment_request import CreateInferenceDeploymentRequest
|
|
48
49
|
from platform_api_python_client.models.create_inference_deployment_response import CreateInferenceDeploymentResponse
|
|
49
50
|
from platform_api_python_client.models.create_inference_v3_deployment_request import CreateInferenceV3DeploymentRequest
|
|
51
|
+
from platform_api_python_client.models.create_job_deployment_request import CreateJobDeploymentRequest
|
|
52
|
+
from platform_api_python_client.models.create_job_deployment_response import CreateJobDeploymentResponse
|
|
50
53
|
from platform_api_python_client.models.create_organization_request import CreateOrganizationRequest
|
|
51
54
|
from platform_api_python_client.models.create_organization_response import CreateOrganizationResponse
|
|
52
|
-
from platform_api_python_client.models.create_rag_deployment_request import CreateRagDeploymentRequest
|
|
53
|
-
from platform_api_python_client.models.create_rag_deployment_response import CreateRagDeploymentResponse
|
|
54
55
|
from platform_api_python_client.models.create_url_request import CreateUrlRequest
|
|
55
56
|
from platform_api_python_client.models.create_url_response import CreateUrlResponse
|
|
56
57
|
from platform_api_python_client.models.credits_response import CreditsResponse
|
|
@@ -73,7 +74,7 @@ from platform_api_python_client.models.get_deployment_revision_response import G
|
|
|
73
74
|
from platform_api_python_client.models.get_deployment_usage_response import GetDeploymentUsageResponse
|
|
74
75
|
from platform_api_python_client.models.get_inference_deployment_response import GetInferenceDeploymentResponse
|
|
75
76
|
from platform_api_python_client.models.get_inference_v3_deployment_response import GetInferenceV3DeploymentResponse
|
|
76
|
-
from platform_api_python_client.models.
|
|
77
|
+
from platform_api_python_client.models.get_job_deployment_response import GetJobDeploymentResponse
|
|
77
78
|
from platform_api_python_client.models.gpu_type_capacity import GpuTypeCapacity
|
|
78
79
|
from platform_api_python_client.models.http_validation_error import HTTPValidationError
|
|
79
80
|
from platform_api_python_client.models.hardware_instance_response import HardwareInstanceResponse
|