Skip to content

Commit e34e886

Browse files
committed
7.17 is newest
1 parent 8fc1018 commit e34e886

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

.openapi-generator/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.16.0
1+
7.17.0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This Python package is automatically generated by the [OpenAPI Generator](https:
55

66
- API version: 1.0.0
77
- Package version: 1.0.0
8-
- Generator version: 7.16.0
8+
- Generator version: 7.17.0
99
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
1010
For more information, please visit [https://dev.bandwidth.com](https://dev.bandwidth.com)
1111

bandwidth/configuration.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,8 @@ class Configuration:
165165
:param retries: Number of retries for API requests.
166166
:param ca_cert_data: verify the peer using concatenated CA certificate data
167167
in PEM (str) or DER (bytes) format.
168+
:param cert_file: the path to a client certificate file, for mTLS.
169+
:param key_file: the path to a client key file, for mTLS.
168170
169171
:Example:
170172
@@ -203,6 +205,8 @@ def __init__(
203205
ssl_ca_cert: Optional[str]=None,
204206
retries: Optional[int] = None,
205207
ca_cert_data: Optional[Union[str, bytes]] = None,
208+
cert_file: Optional[str]=None,
209+
key_file: Optional[str]=None,
206210
*,
207211
debug: Optional[bool] = None,
208212
) -> None:
@@ -284,10 +288,10 @@ def __init__(
284288
"""Set this to verify the peer using PEM (str) or DER (bytes)
285289
certificate data.
286290
"""
287-
self.cert_file = None
291+
self.cert_file = cert_file
288292
"""client certificate file
289293
"""
290-
self.key_file = None
294+
self.key_file = key_file
291295
"""client key file
292296
"""
293297
self.assert_hostname = None

openapitools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
"$schema": "./node_modules/@openapitools/openapi-generator-cli/config.schema.json",
33
"spaces": 2,
44
"generator-cli": {
5-
"version": "7.16.0"
5+
"version": "7.17.0"
66
}
77
}

0 commit comments

Comments
 (0)