Skip to content

Commit 5c26e9e

Browse files
Update clients to latest platform release (4.7.0)
1 parent 20ca5ef commit 5c26e9e

26 files changed

Lines changed: 55 additions & 29 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.6.0
7+
- Package version: 4.7.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
@@ -20,6 +20,7 @@ Name | Type | Description | Notes
2020
**initial_replicas** | **int** | | [optional]
2121
**concurrency** | **int** | | [optional]
2222
**env_vars** | **Dict[str, str]** | | [optional]
23+
**enable_logging** | **bool** | | [optional] [default to True]
2324

2425
## Example
2526

docs/CreateComputeDeploymentRequest.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Name | Type | Description | Notes
1111
**image_url** | **str** | |
1212
**enable_jupyter** | **bool** | | [optional] [default to False]
1313
**ssh_public_key** | **str** | |
14+
**enable_logging** | **bool** | | [optional] [default to False]
1415

1516
## Example
1617

docs/CreateInferenceV3DeploymentRequest.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ Name | Type | Description | Notes
2323
**endpoint_bearer_token** | **str** | | [optional]
2424
**endpoint_certificate_authority** | **str** | | [optional]
2525
**backend_protocol** | [**BackendProtocol**](BackendProtocol.md) | | [optional]
26+
**enable_logging** | **bool** | | [optional] [default to False]
2627

2728
## Example
2829

docs/DeploymentResponse.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ Name | Type | Description | Notes
2525
**endpoint_bearer_token** | **str** | | [optional]
2626
**concurrency** | **int** | | [optional]
2727
**env_vars** | **Dict[str, str]** | | [optional]
28+
**enable_logging** | **bool** | | [optional] [default to True]
2829
**container_port** | **int** | |
2930
**healthcheck** | **str** | | [optional]
3031
**command** | **List[str]** | | [optional]

docs/GetCServeV3DeploymentResponse.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ Name | Type | Description | Notes
2525
**endpoint_bearer_token** | **str** | | [optional]
2626
**concurrency** | **int** | | [optional]
2727
**env_vars** | **Dict[str, str]** | | [optional]
28+
**enable_logging** | **bool** | | [optional] [default to True]
2829

2930
## Example
3031

docs/GetComputeDeploymentResponse.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ Name | Type | Description | Notes
2020
**ssh_public_key** | **str** | | [optional]
2121
**ssh_password** | **str** | | [optional]
2222
**env_vars** | **Dict[str, str]** | | [optional]
23+
**enable_logging** | **bool** | | [optional] [default to True]
2324

2425
## Example
2526

docs/GetInferenceV3DeploymentResponse.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ Name | Type | Description | Notes
3030
**original_command** | **str** | | [optional]
3131
**image_pull_secret_credentials** | [**ImagePullSecretCredentials**](ImagePullSecretCredentials.md) | | [optional]
3232
**backend_protocol** | [**BackendProtocol**](BackendProtocol.md) | | [optional]
33+
**enable_logging** | **bool** | | [optional] [default to True]
3334

3435
## Example
3536

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.6.0"
17+
__version__ = "4.7.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.6.0/python'
93+
self.user_agent = 'OpenAPI-Generator/4.7.0/python'
9494
self.client_side_validation = configuration.client_side_validation
9595

9696
def __enter__(self):

0 commit comments

Comments
 (0)