platform-api-python-client 4.1.9__tar.gz → 4.8.3__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.1.9 → platform_api_python_client-4.8.3}/PKG-INFO +1 -1
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/README.md +9 -1
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/__init__.py +7 -1
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/api/external_api.py +548 -6
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/api_client.py +1 -1
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/configuration.py +1 -1
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/__init__.py +6 -0
- platform_api_python_client-4.8.3/platform_api_python_client/models/backend_protocol.py +37 -0
- platform_api_python_client-4.8.3/platform_api_python_client/models/cluster_capacity_response.py +99 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/create_c_serve_v3_deployment_request.py +5 -3
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/create_compute_deployment_request.py +4 -2
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/create_inference_v3_deployment_request.py +8 -3
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/get_c_serve_v3_deployment_response.py +5 -3
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/get_cluster_response.py +3 -1
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/get_compute_deployment_response.py +5 -3
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/get_inference_v3_deployment_response.py +15 -3
- platform_api_python_client-4.8.3/platform_api_python_client/models/gpu_type_capacity.py +91 -0
- platform_api_python_client-4.8.3/platform_api_python_client/models/invite_user_request.py +87 -0
- platform_api_python_client-4.8.3/platform_api_python_client/models/list_cluster_capacity_response.py +95 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/user_vault_item.py +5 -2
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/user_vault_type.py +1 -0
- platform_api_python_client-4.8.3/platform_api_python_client/models/vault_scope.py +37 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client.egg-info/PKG-INFO +1 -1
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client.egg-info/SOURCES.txt +13 -1
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/pyproject.toml +1 -1
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/setup.py +1 -1
- platform_api_python_client-4.8.3/test/test_backend_protocol.py +33 -0
- platform_api_python_client-4.8.3/test/test_cluster_capacity_response.py +66 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_create_c_serve_v3_deployment_request.py +2 -1
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_create_compute_deployment_request.py +2 -1
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_create_inference_v3_deployment_request.py +3 -1
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_deployment_response.py +4 -1
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_external_api.py +14 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_get_c_serve_v3_deployment_response.py +2 -1
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_get_cluster_response.py +2 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_get_compute_deployment_response.py +2 -1
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_get_inference_v3_deployment_response.py +4 -1
- platform_api_python_client-4.8.3/test/test_gpu_type_capacity.py +56 -0
- platform_api_python_client-4.8.3/test/test_invite_user_request.py +52 -0
- platform_api_python_client-4.8.3/test/test_list_cluster_capacity_response.py +72 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_list_get_cluster_response.py +2 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_list_user_vault_items_response.py +4 -2
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_user_vault_item.py +2 -1
- platform_api_python_client-4.8.3/test/test_vault_scope.py +33 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/api/__init__.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/api_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/exceptions.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/api_key_request.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/api_key_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/c_serve_recipe_perf.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/c_serve_recipe_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/c_serve_v2_recipe.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/create_c_serve_v2_deployment_request.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/create_c_serve_v2_deployment_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/create_c_serve_v3_deployment_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/create_compute_deployment_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/create_inference_deployment_request.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/create_inference_deployment_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/create_organization_request.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/create_organization_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/create_rag_deployment_request.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/create_rag_deployment_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/create_url_request.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/create_url_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/credits_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/daily_bill_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/deployment_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/deployment_status.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/deployment_status_request.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/deployment_status_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/deployment_status_v3_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/deployment_type.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/deployment_usage.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/deployment_usage_value.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/get_c_serve_v2_deployment_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/get_deployment_log_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/get_deployment_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/get_deployment_revision_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/get_deployment_usage_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/get_inference_deployment_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/get_rag_deployment_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/hardware_instance_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/http_validation_error.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/image_pull_secret_credentials.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/list_api_key_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/list_c_serve_recipe_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/list_daily_bill_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/list_deployment_revisions_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/list_get_cluster_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/list_get_deployment_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/list_hardware_instance_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/list_prebuilt_image_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/list_user_vault_items_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/metric.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/pod_details.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/pod_status.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/prebuilt_image_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/revision_pod_details.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/rollout_status.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/rollout_strategy_params.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/service_status.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/update_deployment_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/update_deployment_status_v3_request.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/validation_error.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/models/validation_error_loc_inner.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/py.typed +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client/rest.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client.egg-info/dependency_links.txt +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client.egg-info/requires.txt +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/platform_api_python_client.egg-info/top_level.txt +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/setup.cfg +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_api_key_request.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_api_key_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_c_serve_recipe_perf.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_c_serve_recipe_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_c_serve_v2_recipe.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_create_c_serve_v2_deployment_request.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_create_c_serve_v2_deployment_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_create_c_serve_v3_deployment_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_create_compute_deployment_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_create_inference_deployment_request.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_create_inference_deployment_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_create_organization_request.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_create_organization_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_create_rag_deployment_request.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_create_rag_deployment_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_create_url_request.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_create_url_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_credits_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_daily_bill_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_deployment_status.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_deployment_status_request.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_deployment_status_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_deployment_status_v3_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_deployment_type.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_deployment_usage.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_deployment_usage_value.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_get_c_serve_v2_deployment_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_get_deployment_log_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_get_deployment_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_get_deployment_revision_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_get_deployment_usage_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_get_inference_deployment_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_get_rag_deployment_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_hardware_instance_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_http_validation_error.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_image_pull_secret_credentials.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_list_api_key_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_list_c_serve_recipe_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_list_daily_bill_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_list_deployment_revisions_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_list_get_deployment_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_list_hardware_instance_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_list_prebuilt_image_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_metric.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_pod_details.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_pod_status.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_prebuilt_image_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_revision_pod_details.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_rollout_status.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_rollout_strategy_params.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_service_status.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_update_deployment_response.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_update_deployment_status_v3_request.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_user_vault_type.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_validation_error.py +0 -0
- {platform_api_python_client-4.1.9 → platform_api_python_client-4.8.3}/test/test_validation_error_loc_inner.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.8.3
|
|
8
8
|
- Generator version: 7.9.0
|
|
9
9
|
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
|
10
10
|
|
|
@@ -127,6 +127,8 @@ Class | Method | HTTP request | Description
|
|
|
127
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
|
+
*EXTERNALApi* | [**invite_user_organizations_invite_post**](docs/EXTERNALApi.md#invite_user_organizations_invite_post) | **POST** /organizations/invite | Invite User
|
|
131
|
+
*EXTERNALApi* | [**list_cluster_capacity_capacity_get**](docs/EXTERNALApi.md#list_cluster_capacity_capacity_get) | **GET** /capacity | List Cluster Capacity
|
|
130
132
|
*EXTERNALApi* | [**rollout_existing_revision_deployments_revisions_deployment_id_revision_number_put**](docs/EXTERNALApi.md#rollout_existing_revision_deployments_revisions_deployment_id_revision_number_put) | **PUT** /deployments/revisions/{deployment_id}/{revision_number} | Rollout Existing Revision
|
|
131
133
|
*EXTERNALApi* | [**setup_stripe_customer_payments_setup_post**](docs/EXTERNALApi.md#setup_stripe_customer_payments_setup_post) | **POST** /payments/setup | Setup Stripe Customer
|
|
132
134
|
*EXTERNALApi* | [**update_compute_deployment_deployments_compute_put**](docs/EXTERNALApi.md#update_compute_deployment_deployments_compute_put) | **PUT** /deployments/compute | Update Compute Deployment
|
|
@@ -145,9 +147,11 @@ Class | Method | HTTP request | Description
|
|
|
145
147
|
|
|
146
148
|
- [APIKeyRequest](docs/APIKeyRequest.md)
|
|
147
149
|
- [APIKeyResponse](docs/APIKeyResponse.md)
|
|
150
|
+
- [BackendProtocol](docs/BackendProtocol.md)
|
|
148
151
|
- [CServeRecipePerf](docs/CServeRecipePerf.md)
|
|
149
152
|
- [CServeRecipeResponse](docs/CServeRecipeResponse.md)
|
|
150
153
|
- [CServeV2Recipe](docs/CServeV2Recipe.md)
|
|
154
|
+
- [ClusterCapacityResponse](docs/ClusterCapacityResponse.md)
|
|
151
155
|
- [CreateCServeV2DeploymentRequest](docs/CreateCServeV2DeploymentRequest.md)
|
|
152
156
|
- [CreateCServeV2DeploymentResponse](docs/CreateCServeV2DeploymentResponse.md)
|
|
153
157
|
- [CreateCServeV3DeploymentRequest](docs/CreateCServeV3DeploymentRequest.md)
|
|
@@ -184,11 +188,14 @@ Class | Method | HTTP request | Description
|
|
|
184
188
|
- [GetInferenceDeploymentResponse](docs/GetInferenceDeploymentResponse.md)
|
|
185
189
|
- [GetInferenceV3DeploymentResponse](docs/GetInferenceV3DeploymentResponse.md)
|
|
186
190
|
- [GetRagDeploymentResponse](docs/GetRagDeploymentResponse.md)
|
|
191
|
+
- [GpuTypeCapacity](docs/GpuTypeCapacity.md)
|
|
187
192
|
- [HTTPValidationError](docs/HTTPValidationError.md)
|
|
188
193
|
- [HardwareInstanceResponse](docs/HardwareInstanceResponse.md)
|
|
189
194
|
- [ImagePullSecretCredentials](docs/ImagePullSecretCredentials.md)
|
|
195
|
+
- [InviteUserRequest](docs/InviteUserRequest.md)
|
|
190
196
|
- [ListAPIKeyResponse](docs/ListAPIKeyResponse.md)
|
|
191
197
|
- [ListCServeRecipeResponse](docs/ListCServeRecipeResponse.md)
|
|
198
|
+
- [ListClusterCapacityResponse](docs/ListClusterCapacityResponse.md)
|
|
192
199
|
- [ListDailyBillResponse](docs/ListDailyBillResponse.md)
|
|
193
200
|
- [ListDeploymentRevisionsResponse](docs/ListDeploymentRevisionsResponse.md)
|
|
194
201
|
- [ListGetClusterResponse](docs/ListGetClusterResponse.md)
|
|
@@ -210,6 +217,7 @@ Class | Method | HTTP request | Description
|
|
|
210
217
|
- [UserVaultType](docs/UserVaultType.md)
|
|
211
218
|
- [ValidationError](docs/ValidationError.md)
|
|
212
219
|
- [ValidationErrorLocInner](docs/ValidationErrorLocInner.md)
|
|
220
|
+
- [VaultScope](docs/VaultScope.md)
|
|
213
221
|
|
|
214
222
|
|
|
215
223
|
<a id="documentation-for-authorization"></a>
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
""" # noqa: E501
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
__version__ = "4.
|
|
17
|
+
__version__ = "4.8.3"
|
|
18
18
|
|
|
19
19
|
# import apis into sdk package
|
|
20
20
|
from platform_api_python_client.api.external_api import EXTERNALApi
|
|
@@ -33,9 +33,11 @@ from platform_api_python_client.exceptions import ApiException
|
|
|
33
33
|
# import models into sdk package
|
|
34
34
|
from platform_api_python_client.models.api_key_request import APIKeyRequest
|
|
35
35
|
from platform_api_python_client.models.api_key_response import APIKeyResponse
|
|
36
|
+
from platform_api_python_client.models.backend_protocol import BackendProtocol
|
|
36
37
|
from platform_api_python_client.models.c_serve_recipe_perf import CServeRecipePerf
|
|
37
38
|
from platform_api_python_client.models.c_serve_recipe_response import CServeRecipeResponse
|
|
38
39
|
from platform_api_python_client.models.c_serve_v2_recipe import CServeV2Recipe
|
|
40
|
+
from platform_api_python_client.models.cluster_capacity_response import ClusterCapacityResponse
|
|
39
41
|
from platform_api_python_client.models.create_c_serve_v2_deployment_request import CreateCServeV2DeploymentRequest
|
|
40
42
|
from platform_api_python_client.models.create_c_serve_v2_deployment_response import CreateCServeV2DeploymentResponse
|
|
41
43
|
from platform_api_python_client.models.create_c_serve_v3_deployment_request import CreateCServeV3DeploymentRequest
|
|
@@ -72,11 +74,14 @@ from platform_api_python_client.models.get_deployment_usage_response import GetD
|
|
|
72
74
|
from platform_api_python_client.models.get_inference_deployment_response import GetInferenceDeploymentResponse
|
|
73
75
|
from platform_api_python_client.models.get_inference_v3_deployment_response import GetInferenceV3DeploymentResponse
|
|
74
76
|
from platform_api_python_client.models.get_rag_deployment_response import GetRagDeploymentResponse
|
|
77
|
+
from platform_api_python_client.models.gpu_type_capacity import GpuTypeCapacity
|
|
75
78
|
from platform_api_python_client.models.http_validation_error import HTTPValidationError
|
|
76
79
|
from platform_api_python_client.models.hardware_instance_response import HardwareInstanceResponse
|
|
77
80
|
from platform_api_python_client.models.image_pull_secret_credentials import ImagePullSecretCredentials
|
|
81
|
+
from platform_api_python_client.models.invite_user_request import InviteUserRequest
|
|
78
82
|
from platform_api_python_client.models.list_api_key_response import ListAPIKeyResponse
|
|
79
83
|
from platform_api_python_client.models.list_c_serve_recipe_response import ListCServeRecipeResponse
|
|
84
|
+
from platform_api_python_client.models.list_cluster_capacity_response import ListClusterCapacityResponse
|
|
80
85
|
from platform_api_python_client.models.list_daily_bill_response import ListDailyBillResponse
|
|
81
86
|
from platform_api_python_client.models.list_deployment_revisions_response import ListDeploymentRevisionsResponse
|
|
82
87
|
from platform_api_python_client.models.list_get_cluster_response import ListGetClusterResponse
|
|
@@ -98,3 +103,4 @@ from platform_api_python_client.models.user_vault_item import UserVaultItem
|
|
|
98
103
|
from platform_api_python_client.models.user_vault_type import UserVaultType
|
|
99
104
|
from platform_api_python_client.models.validation_error import ValidationError
|
|
100
105
|
from platform_api_python_client.models.validation_error_loc_inner import ValidationErrorLocInner
|
|
106
|
+
from platform_api_python_client.models.vault_scope import VaultScope
|