Skip to content

Commit 46bf222

Browse files
Update clients to latest platform release (4.16.0)
1 parent e4458c1 commit 46bf222

24 files changed

Lines changed: 61 additions & 28 deletions

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ No description provided (generated by Openapi Generator https://github.com/opena
44
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
55

66
- API version: 0.1.0
7-
- Package version: 4.15.0
7+
- Package version: 4.16.0
88
- Generator version: 7.9.0
99
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
1010

docs/CreateCServeV3DeploymentRequest.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Name | Type | Description | Notes
1111
**cluster_id** | **int** | |
1212
**hardware_instance_id** | **int** | |
1313
**user_annotations** | **Dict[str, str]** | | [optional]
14+
**chart_revision** | **str** | | [optional]
1415
**recipe** | [**CServeV2Recipe**](CServeV2Recipe.md) | |
1516
**cserve_version** | **str** | | [optional]
1617
**hf_token** | **str** | | [optional]

docs/CreateComputeDeploymentRequest.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@ Name | Type | Description | Notes
99
**cluster_id** | **int** | |
1010
**hardware_instance_id** | **int** | |
1111
**user_annotations** | **Dict[str, str]** | | [optional]
12+
**chart_revision** | **str** | | [optional]
1213
**image_url** | **str** | |
13-
**enable_jupyter** | **bool** | | [optional] [default to False]
14+
**image_pull_secret_credentials** | [**ImagePullSecretCredentials**](ImagePullSecretCredentials.md) | | [optional]
1415
**ssh_public_key** | **str** | |
1516
**enable_logging** | **bool** | | [optional] [default to False]
1617

docs/CreateComputeDeploymentResponse.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ Name | Type | Description | Notes
99
**created_at** | **datetime** | |
1010
**endpoint_url** | **str** | |
1111
**port** | **int** | |
12-
**jupyter_token** | **str** | | [optional]
1312

1413
## Example
1514

docs/CreateInferenceV3DeploymentRequest.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Name | Type | Description | Notes
1111
**cluster_id** | **int** | |
1212
**hardware_instance_id** | **int** | |
1313
**user_annotations** | **Dict[str, str]** | | [optional]
14+
**chart_revision** | **str** | | [optional]
1415
**image_url** | **str** | |
1516
**image_pull_secret_credentials** | [**ImagePullSecretCredentials**](ImagePullSecretCredentials.md) | | [optional]
1617
**port** | **int** | |

docs/CreateJobDeploymentRequest.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Name | Type | Description | Notes
99
**cluster_id** | **int** | |
1010
**hardware_instance_id** | **int** | |
1111
**user_annotations** | **Dict[str, str]** | | [optional]
12+
**chart_revision** | **str** | | [optional]
1213
**image_url** | **str** | |
1314
**image_pull_secret_credentials** | [**ImagePullSecretCredentials**](ImagePullSecretCredentials.md) | | [optional]
1415
**env_vars** | **Dict[str, str]** | | [optional]

docs/GetComputeDeploymentResponse.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ Name | Type | Description | Notes
2121
**ssh_public_key** | **str** | | [optional]
2222
**ssh_password** | **str** | | [optional]
2323
**env_vars** | **Dict[str, str]** | | [optional]
24+
**image_pull_secret_credentials** | [**ImagePullSecretCredentials**](ImagePullSecretCredentials.md) | | [optional]
2425
**enable_logging** | **bool** | | [optional] [default to True]
2526

2627
## Example

platform_api_python_client/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
""" # noqa: E501
1515

1616

17-
__version__ = "4.15.0"
17+
__version__ = "4.16.0"
1818

1919
# import apis into sdk package
2020
from platform_api_python_client.api.external_api import EXTERNALApi

platform_api_python_client/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def __init__(
9090
self.default_headers[header_name] = header_value
9191
self.cookie = cookie
9292
# Set default User-Agent.
93-
self.user_agent = 'OpenAPI-Generator/4.15.0/python'
93+
self.user_agent = 'OpenAPI-Generator/4.16.0/python'
9494
self.client_side_validation = configuration.client_side_validation
9595

9696
def __enter__(self):

platform_api_python_client/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ def to_debug_report(self):
392392
"OS: {env}\n"\
393393
"Python Version: {pyversion}\n"\
394394
"Version of the API: 0.1.0\n"\
395-
"SDK Package Version: 4.15.0".\
395+
"SDK Package Version: 4.16.0".\
396396
format(env=sys.platform, pyversion=sys.version)
397397

398398
def get_host_settings(self):

0 commit comments

Comments
 (0)