From 5c26e9e29a8d62bd0e67191a1a1856c56e3abe6c Mon Sep 17 00:00:00 2001 From: platform CI Date: Tue, 17 Feb 2026 19:16:14 +0000 Subject: [PATCH] Update clients to latest platform release (4.7.0) --- README.md | 2 +- docs/CreateCServeV3DeploymentRequest.md | 1 + docs/CreateComputeDeploymentRequest.md | 1 + docs/CreateInferenceV3DeploymentRequest.md | 1 + docs/DeploymentResponse.md | 1 + docs/GetCServeV3DeploymentResponse.md | 1 + docs/GetComputeDeploymentResponse.md | 1 + docs/GetInferenceV3DeploymentResponse.md | 1 + platform_api_python_client/__init__.py | 2 +- platform_api_python_client/api_client.py | 2 +- platform_api_python_client/configuration.py | 2 +- .../models/create_c_serve_v3_deployment_request.py | 8 +++++--- .../models/create_compute_deployment_request.py | 6 ++++-- .../models/create_inference_v3_deployment_request.py | 8 +++++--- .../models/get_c_serve_v3_deployment_response.py | 8 +++++--- .../models/get_compute_deployment_response.py | 8 +++++--- .../models/get_inference_v3_deployment_response.py | 8 +++++--- pyproject.toml | 2 +- setup.py | 2 +- test/test_create_c_serve_v3_deployment_request.py | 3 ++- test/test_create_compute_deployment_request.py | 3 ++- test/test_create_inference_v3_deployment_request.py | 3 ++- test/test_deployment_response.py | 1 + test/test_get_c_serve_v3_deployment_response.py | 3 ++- test/test_get_compute_deployment_response.py | 3 ++- test/test_get_inference_v3_deployment_response.py | 3 ++- 26 files changed, 55 insertions(+), 29 deletions(-) diff --git a/README.md b/README.md index d0a2ef0..cbe867a 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ No description provided (generated by Openapi Generator https://github.com/opena This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: - API version: 0.1.0 -- Package version: 4.6.0 +- Package version: 4.7.0 - Generator version: 7.9.0 - Build package: org.openapitools.codegen.languages.PythonClientCodegen diff --git a/docs/CreateCServeV3DeploymentRequest.md b/docs/CreateCServeV3DeploymentRequest.md index 457910f..11cfcbe 100644 --- a/docs/CreateCServeV3DeploymentRequest.md +++ b/docs/CreateCServeV3DeploymentRequest.md @@ -20,6 +20,7 @@ Name | Type | Description | Notes **initial_replicas** | **int** | | [optional] **concurrency** | **int** | | [optional] **env_vars** | **Dict[str, str]** | | [optional] +**enable_logging** | **bool** | | [optional] [default to True] ## Example diff --git a/docs/CreateComputeDeploymentRequest.md b/docs/CreateComputeDeploymentRequest.md index 9038a45..5fc84a6 100644 --- a/docs/CreateComputeDeploymentRequest.md +++ b/docs/CreateComputeDeploymentRequest.md @@ -11,6 +11,7 @@ Name | Type | Description | Notes **image_url** | **str** | | **enable_jupyter** | **bool** | | [optional] [default to False] **ssh_public_key** | **str** | | +**enable_logging** | **bool** | | [optional] [default to False] ## Example diff --git a/docs/CreateInferenceV3DeploymentRequest.md b/docs/CreateInferenceV3DeploymentRequest.md index 57af118..80e4460 100644 --- a/docs/CreateInferenceV3DeploymentRequest.md +++ b/docs/CreateInferenceV3DeploymentRequest.md @@ -23,6 +23,7 @@ Name | Type | Description | Notes **endpoint_bearer_token** | **str** | | [optional] **endpoint_certificate_authority** | **str** | | [optional] **backend_protocol** | [**BackendProtocol**](BackendProtocol.md) | | [optional] +**enable_logging** | **bool** | | [optional] [default to False] ## Example diff --git a/docs/DeploymentResponse.md b/docs/DeploymentResponse.md index 275dae6..318f905 100644 --- a/docs/DeploymentResponse.md +++ b/docs/DeploymentResponse.md @@ -25,6 +25,7 @@ Name | Type | Description | Notes **endpoint_bearer_token** | **str** | | [optional] **concurrency** | **int** | | [optional] **env_vars** | **Dict[str, str]** | | [optional] +**enable_logging** | **bool** | | [optional] [default to True] **container_port** | **int** | | **healthcheck** | **str** | | [optional] **command** | **List[str]** | | [optional] diff --git a/docs/GetCServeV3DeploymentResponse.md b/docs/GetCServeV3DeploymentResponse.md index 50e1992..d10e208 100644 --- a/docs/GetCServeV3DeploymentResponse.md +++ b/docs/GetCServeV3DeploymentResponse.md @@ -25,6 +25,7 @@ Name | Type | Description | Notes **endpoint_bearer_token** | **str** | | [optional] **concurrency** | **int** | | [optional] **env_vars** | **Dict[str, str]** | | [optional] +**enable_logging** | **bool** | | [optional] [default to True] ## Example diff --git a/docs/GetComputeDeploymentResponse.md b/docs/GetComputeDeploymentResponse.md index 3959996..2f07aa4 100644 --- a/docs/GetComputeDeploymentResponse.md +++ b/docs/GetComputeDeploymentResponse.md @@ -20,6 +20,7 @@ Name | Type | Description | Notes **ssh_public_key** | **str** | | [optional] **ssh_password** | **str** | | [optional] **env_vars** | **Dict[str, str]** | | [optional] +**enable_logging** | **bool** | | [optional] [default to True] ## Example diff --git a/docs/GetInferenceV3DeploymentResponse.md b/docs/GetInferenceV3DeploymentResponse.md index 1a7268b..dd3f114 100644 --- a/docs/GetInferenceV3DeploymentResponse.md +++ b/docs/GetInferenceV3DeploymentResponse.md @@ -30,6 +30,7 @@ Name | Type | Description | Notes **original_command** | **str** | | [optional] **image_pull_secret_credentials** | [**ImagePullSecretCredentials**](ImagePullSecretCredentials.md) | | [optional] **backend_protocol** | [**BackendProtocol**](BackendProtocol.md) | | [optional] +**enable_logging** | **bool** | | [optional] [default to True] ## Example diff --git a/platform_api_python_client/__init__.py b/platform_api_python_client/__init__.py index 88f921c..41ccb02 100644 --- a/platform_api_python_client/__init__.py +++ b/platform_api_python_client/__init__.py @@ -14,7 +14,7 @@ """ # noqa: E501 -__version__ = "4.6.0" +__version__ = "4.7.0" # import apis into sdk package from platform_api_python_client.api.external_api import EXTERNALApi diff --git a/platform_api_python_client/api_client.py b/platform_api_python_client/api_client.py index 044f457..469869c 100644 --- a/platform_api_python_client/api_client.py +++ b/platform_api_python_client/api_client.py @@ -90,7 +90,7 @@ def __init__( self.default_headers[header_name] = header_value self.cookie = cookie # Set default User-Agent. - self.user_agent = 'OpenAPI-Generator/4.6.0/python' + self.user_agent = 'OpenAPI-Generator/4.7.0/python' self.client_side_validation = configuration.client_side_validation def __enter__(self): diff --git a/platform_api_python_client/configuration.py b/platform_api_python_client/configuration.py index 6f3289a..6581507 100644 --- a/platform_api_python_client/configuration.py +++ b/platform_api_python_client/configuration.py @@ -392,7 +392,7 @@ def to_debug_report(self): "OS: {env}\n"\ "Python Version: {pyversion}\n"\ "Version of the API: 0.1.0\n"\ - "SDK Package Version: 4.6.0".\ + "SDK Package Version: 4.7.0".\ format(env=sys.platform, pyversion=sys.version) def get_host_settings(self): diff --git a/platform_api_python_client/models/create_c_serve_v3_deployment_request.py b/platform_api_python_client/models/create_c_serve_v3_deployment_request.py index d1a72a6..f2b0978 100644 --- a/platform_api_python_client/models/create_c_serve_v3_deployment_request.py +++ b/platform_api_python_client/models/create_c_serve_v3_deployment_request.py @@ -17,7 +17,7 @@ import re # noqa: F401 import json -from pydantic import BaseModel, ConfigDict, Field, StrictInt, StrictStr, field_validator +from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictInt, StrictStr, field_validator from typing import Any, ClassVar, Dict, List, Optional from typing_extensions import Annotated from platform_api_python_client.models.c_serve_v2_recipe import CServeV2Recipe @@ -43,7 +43,8 @@ class CreateCServeV3DeploymentRequest(BaseModel): initial_replicas: Optional[StrictInt] = None concurrency: Optional[StrictInt] = None env_vars: Optional[Dict[str, StrictStr]] = None - __properties: ClassVar[List[str]] = ["max_surge", "max_unavailable", "name", "cluster_id", "hardware_instance_id", "recipe", "cserve_version", "hf_token", "endpoint_bearer_token", "endpoint_certificate_authority", "min_replicas", "max_replicas", "initial_replicas", "concurrency", "env_vars"] + enable_logging: Optional[StrictBool] = True + __properties: ClassVar[List[str]] = ["max_surge", "max_unavailable", "name", "cluster_id", "hardware_instance_id", "recipe", "cserve_version", "hf_token", "endpoint_bearer_token", "endpoint_certificate_authority", "min_replicas", "max_replicas", "initial_replicas", "concurrency", "env_vars", "enable_logging"] @field_validator('name') def name_validate_regular_expression(cls, value): @@ -160,7 +161,8 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "max_replicas": obj.get("max_replicas"), "initial_replicas": obj.get("initial_replicas"), "concurrency": obj.get("concurrency"), - "env_vars": obj.get("env_vars") + "env_vars": obj.get("env_vars"), + "enable_logging": obj.get("enable_logging") if obj.get("enable_logging") is not None else True }) return _obj diff --git a/platform_api_python_client/models/create_compute_deployment_request.py b/platform_api_python_client/models/create_compute_deployment_request.py index 2ec9b42..c508680 100644 --- a/platform_api_python_client/models/create_compute_deployment_request.py +++ b/platform_api_python_client/models/create_compute_deployment_request.py @@ -33,7 +33,8 @@ class CreateComputeDeploymentRequest(BaseModel): image_url: StrictStr enable_jupyter: Optional[StrictBool] = False ssh_public_key: StrictStr - __properties: ClassVar[List[str]] = ["name", "cluster_id", "hardware_instance_id", "image_url", "enable_jupyter", "ssh_public_key"] + enable_logging: Optional[StrictBool] = False + __properties: ClassVar[List[str]] = ["name", "cluster_id", "hardware_instance_id", "image_url", "enable_jupyter", "ssh_public_key", "enable_logging"] @field_validator('name') def name_validate_regular_expression(cls, value): @@ -98,7 +99,8 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "hardware_instance_id": obj.get("hardware_instance_id"), "image_url": obj.get("image_url"), "enable_jupyter": obj.get("enable_jupyter") if obj.get("enable_jupyter") is not None else False, - "ssh_public_key": obj.get("ssh_public_key") + "ssh_public_key": obj.get("ssh_public_key"), + "enable_logging": obj.get("enable_logging") if obj.get("enable_logging") is not None else False }) return _obj diff --git a/platform_api_python_client/models/create_inference_v3_deployment_request.py b/platform_api_python_client/models/create_inference_v3_deployment_request.py index 8420f95..4130665 100644 --- a/platform_api_python_client/models/create_inference_v3_deployment_request.py +++ b/platform_api_python_client/models/create_inference_v3_deployment_request.py @@ -17,7 +17,7 @@ import re # noqa: F401 import json -from pydantic import BaseModel, ConfigDict, Field, StrictInt, StrictStr, field_validator +from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictInt, StrictStr, field_validator from typing import Any, ClassVar, Dict, List, Optional from typing_extensions import Annotated from platform_api_python_client.models.backend_protocol import BackendProtocol @@ -47,7 +47,8 @@ class CreateInferenceV3DeploymentRequest(BaseModel): endpoint_bearer_token: Optional[StrictStr] = None endpoint_certificate_authority: Optional[StrictStr] = None backend_protocol: Optional[BackendProtocol] = None - __properties: ClassVar[List[str]] = ["max_surge", "max_unavailable", "name", "cluster_id", "hardware_instance_id", "image_url", "image_pull_secret_credentials", "port", "min_replicas", "max_replicas", "initial_replicas", "concurrency", "healthcheck", "env_vars", "command", "endpoint_bearer_token", "endpoint_certificate_authority", "backend_protocol"] + enable_logging: Optional[StrictBool] = False + __properties: ClassVar[List[str]] = ["max_surge", "max_unavailable", "name", "cluster_id", "hardware_instance_id", "image_url", "image_pull_secret_credentials", "port", "min_replicas", "max_replicas", "initial_replicas", "concurrency", "healthcheck", "env_vars", "command", "endpoint_bearer_token", "endpoint_certificate_authority", "backend_protocol", "enable_logging"] @field_validator('name') def name_validate_regular_expression(cls, value): @@ -177,7 +178,8 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "command": obj.get("command"), "endpoint_bearer_token": obj.get("endpoint_bearer_token"), "endpoint_certificate_authority": obj.get("endpoint_certificate_authority"), - "backend_protocol": obj.get("backend_protocol") + "backend_protocol": obj.get("backend_protocol"), + "enable_logging": obj.get("enable_logging") if obj.get("enable_logging") is not None else False }) return _obj diff --git a/platform_api_python_client/models/get_c_serve_v3_deployment_response.py b/platform_api_python_client/models/get_c_serve_v3_deployment_response.py index 6c3bb82..1799f0a 100644 --- a/platform_api_python_client/models/get_c_serve_v3_deployment_response.py +++ b/platform_api_python_client/models/get_c_serve_v3_deployment_response.py @@ -18,7 +18,7 @@ import json from datetime import datetime -from pydantic import BaseModel, ConfigDict, StrictInt, StrictStr +from pydantic import BaseModel, ConfigDict, StrictBool, StrictInt, StrictStr from typing import Any, ClassVar, Dict, List, Optional from platform_api_python_client.models.c_serve_v2_recipe import CServeV2Recipe from platform_api_python_client.models.deployment_status import DeploymentStatus @@ -50,7 +50,8 @@ class GetCServeV3DeploymentResponse(BaseModel): endpoint_bearer_token: Optional[StrictStr] = None concurrency: Optional[StrictInt] = None env_vars: Optional[Dict[str, StrictStr]] = None - __properties: ClassVar[List[str]] = ["creator_email", "cluster_id", "id", "name", "endpoint_url", "image_url", "type", "status", "created_at", "hardware_instance_id", "revision_number", "recipe", "cserve_version", "min_replicas", "max_replicas", "initial_replicas", "endpoint_certificate_authority", "endpoint_bearer_token", "concurrency", "env_vars"] + enable_logging: Optional[StrictBool] = True + __properties: ClassVar[List[str]] = ["creator_email", "cluster_id", "id", "name", "endpoint_url", "image_url", "type", "status", "created_at", "hardware_instance_id", "revision_number", "recipe", "cserve_version", "min_replicas", "max_replicas", "initial_replicas", "endpoint_certificate_authority", "endpoint_bearer_token", "concurrency", "env_vars", "enable_logging"] model_config = ConfigDict( populate_by_name=True, @@ -155,7 +156,8 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "endpoint_certificate_authority": obj.get("endpoint_certificate_authority"), "endpoint_bearer_token": obj.get("endpoint_bearer_token"), "concurrency": obj.get("concurrency"), - "env_vars": obj.get("env_vars") + "env_vars": obj.get("env_vars"), + "enable_logging": obj.get("enable_logging") if obj.get("enable_logging") is not None else True }) return _obj diff --git a/platform_api_python_client/models/get_compute_deployment_response.py b/platform_api_python_client/models/get_compute_deployment_response.py index 4cf4038..797d8da 100644 --- a/platform_api_python_client/models/get_compute_deployment_response.py +++ b/platform_api_python_client/models/get_compute_deployment_response.py @@ -18,7 +18,7 @@ import json from datetime import datetime -from pydantic import BaseModel, ConfigDict, StrictInt, StrictStr +from pydantic import BaseModel, ConfigDict, StrictBool, StrictInt, StrictStr from typing import Any, ClassVar, Dict, List, Optional from platform_api_python_client.models.deployment_status import DeploymentStatus from platform_api_python_client.models.deployment_type import DeploymentType @@ -44,7 +44,8 @@ class GetComputeDeploymentResponse(BaseModel): ssh_public_key: Optional[StrictStr] = None ssh_password: Optional[StrictStr] = None env_vars: Optional[Dict[str, StrictStr]] = None - __properties: ClassVar[List[str]] = ["creator_email", "cluster_id", "id", "name", "endpoint_url", "image_url", "type", "status", "created_at", "hardware_instance_id", "revision_number", "exposed_port", "ssh_public_key", "ssh_password", "env_vars"] + enable_logging: Optional[StrictBool] = True + __properties: ClassVar[List[str]] = ["creator_email", "cluster_id", "id", "name", "endpoint_url", "image_url", "type", "status", "created_at", "hardware_instance_id", "revision_number", "exposed_port", "ssh_public_key", "ssh_password", "env_vars", "enable_logging"] model_config = ConfigDict( populate_by_name=True, @@ -131,7 +132,8 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "exposed_port": obj.get("exposed_port"), "ssh_public_key": obj.get("ssh_public_key"), "ssh_password": obj.get("ssh_password"), - "env_vars": obj.get("env_vars") + "env_vars": obj.get("env_vars"), + "enable_logging": obj.get("enable_logging") if obj.get("enable_logging") is not None else True }) return _obj diff --git a/platform_api_python_client/models/get_inference_v3_deployment_response.py b/platform_api_python_client/models/get_inference_v3_deployment_response.py index 2283b5e..50ae24c 100644 --- a/platform_api_python_client/models/get_inference_v3_deployment_response.py +++ b/platform_api_python_client/models/get_inference_v3_deployment_response.py @@ -18,7 +18,7 @@ import json from datetime import datetime -from pydantic import BaseModel, ConfigDict, StrictInt, StrictStr +from pydantic import BaseModel, ConfigDict, StrictBool, StrictInt, StrictStr from typing import Any, ClassVar, Dict, List, Optional from platform_api_python_client.models.backend_protocol import BackendProtocol from platform_api_python_client.models.deployment_status import DeploymentStatus @@ -56,7 +56,8 @@ class GetInferenceV3DeploymentResponse(BaseModel): original_command: Optional[StrictStr] = None image_pull_secret_credentials: Optional[ImagePullSecretCredentials] = None backend_protocol: Optional[BackendProtocol] = None - __properties: ClassVar[List[str]] = ["creator_email", "cluster_id", "id", "name", "endpoint_url", "image_url", "type", "status", "created_at", "hardware_instance_id", "revision_number", "container_port", "min_replicas", "max_replicas", "initial_replicas", "concurrency", "healthcheck", "endpoint_certificate_authority", "endpoint_bearer_token", "env_vars", "command", "command_args", "original_command", "image_pull_secret_credentials", "backend_protocol"] + enable_logging: Optional[StrictBool] = True + __properties: ClassVar[List[str]] = ["creator_email", "cluster_id", "id", "name", "endpoint_url", "image_url", "type", "status", "created_at", "hardware_instance_id", "revision_number", "container_port", "min_replicas", "max_replicas", "initial_replicas", "concurrency", "healthcheck", "endpoint_certificate_authority", "endpoint_bearer_token", "env_vars", "command", "command_args", "original_command", "image_pull_secret_credentials", "backend_protocol", "enable_logging"] model_config = ConfigDict( populate_by_name=True, @@ -191,7 +192,8 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]: "command_args": obj.get("command_args"), "original_command": obj.get("original_command"), "image_pull_secret_credentials": ImagePullSecretCredentials.from_dict(obj["image_pull_secret_credentials"]) if obj.get("image_pull_secret_credentials") is not None else None, - "backend_protocol": obj.get("backend_protocol") + "backend_protocol": obj.get("backend_protocol"), + "enable_logging": obj.get("enable_logging") if obj.get("enable_logging") is not None else True }) return _obj diff --git a/pyproject.toml b/pyproject.toml index 9315241..841d3c9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "platform_api_python_client" -version = "4.6.0" +version = "4.7.0" description = "Platform External API" authors = ["OpenAPI Generator Community "] license = "NoLicense" diff --git a/setup.py b/setup.py index 836da2c..1f255ab 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ # prerequisite: setuptools # http://pypi.python.org/pypi/setuptools NAME = "platform-api-python-client" -VERSION = "4.6.0" +VERSION = "4.7.0" PYTHON_REQUIRES = ">= 3.8" REQUIRES = [ "urllib3 >= 1.25.3, < 3.0.0", diff --git a/test/test_create_c_serve_v3_deployment_request.py b/test/test_create_c_serve_v3_deployment_request.py index acbab30..d421711 100644 --- a/test/test_create_c_serve_v3_deployment_request.py +++ b/test/test_create_c_serve_v3_deployment_request.py @@ -51,7 +51,8 @@ def make_instance(self, include_optional) -> CreateCServeV3DeploymentRequest: concurrency = 56, env_vars = { 'key' : '' - } + }, + enable_logging = True ) else: return CreateCServeV3DeploymentRequest( diff --git a/test/test_create_compute_deployment_request.py b/test/test_create_compute_deployment_request.py index 1f14788..687c930 100644 --- a/test/test_create_compute_deployment_request.py +++ b/test/test_create_compute_deployment_request.py @@ -40,7 +40,8 @@ def make_instance(self, include_optional) -> CreateComputeDeploymentRequest: hardware_instance_id = 56, image_url = '', enable_jupyter = True, - ssh_public_key = '' + ssh_public_key = '', + enable_logging = True ) else: return CreateComputeDeploymentRequest( diff --git a/test/test_create_inference_v3_deployment_request.py b/test/test_create_inference_v3_deployment_request.py index aa31506..68c5516 100644 --- a/test/test_create_inference_v3_deployment_request.py +++ b/test/test_create_inference_v3_deployment_request.py @@ -56,7 +56,8 @@ def make_instance(self, include_optional) -> CreateInferenceV3DeploymentRequest: command = '', endpoint_bearer_token = '', endpoint_certificate_authority = '', - backend_protocol = 'HTTP' + backend_protocol = 'HTTP', + enable_logging = True ) else: return CreateInferenceV3DeploymentRequest( diff --git a/test/test_deployment_response.py b/test/test_deployment_response.py index 2e71450..70ac810 100644 --- a/test/test_deployment_response.py +++ b/test/test_deployment_response.py @@ -57,6 +57,7 @@ def make_instance(self, include_optional) -> DeploymentResponse: env_vars = { 'key' : '' }, + enable_logging = True, container_port = 56, healthcheck = '', command = [ diff --git a/test/test_get_c_serve_v3_deployment_response.py b/test/test_get_c_serve_v3_deployment_response.py index e5c88eb..80e2d76 100644 --- a/test/test_get_c_serve_v3_deployment_response.py +++ b/test/test_get_c_serve_v3_deployment_response.py @@ -56,7 +56,8 @@ def make_instance(self, include_optional) -> GetCServeV3DeploymentResponse: concurrency = 56, env_vars = { 'key' : '' - } + }, + enable_logging = True ) else: return GetCServeV3DeploymentResponse( diff --git a/test/test_get_compute_deployment_response.py b/test/test_get_compute_deployment_response.py index 59627dd..fb66f83 100644 --- a/test/test_get_compute_deployment_response.py +++ b/test/test_get_compute_deployment_response.py @@ -51,7 +51,8 @@ def make_instance(self, include_optional) -> GetComputeDeploymentResponse: ssh_password = '', env_vars = { 'key' : '' - } + }, + enable_logging = True ) else: return GetComputeDeploymentResponse( diff --git a/test/test_get_inference_v3_deployment_response.py b/test/test_get_inference_v3_deployment_response.py index a74bb8a..d23e5c6 100644 --- a/test/test_get_inference_v3_deployment_response.py +++ b/test/test_get_inference_v3_deployment_response.py @@ -67,7 +67,8 @@ def make_instance(self, include_optional) -> GetInferenceV3DeploymentResponse: image_pull_secret_credentials = platform_api_python_client.models.image_pull_secret_credentials.ImagePullSecretCredentials( username = '', password = '', ), - backend_protocol = 'HTTP' + backend_protocol = 'HTTP', + enable_logging = True ) else: return GetInferenceV3DeploymentResponse(