Skip to content

Commit 6cd9920

Browse files
github-actions[bot]MScottBlake
authored andcommitted
[auto] Updated Kandji SDK
1 parent b56bb02 commit 6cd9920

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
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
@@ -137,7 +137,7 @@ This Python package is automatically generated by the [OpenAPI Generator](https:
137137

138138
- API version: 1.0.0
139139
- Package version: 1.0.0
140-
- Generator version: 7.16.0
140+
- Generator version: 7.17.0
141141
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
142142
For more information, please visit [https://github.com/MScottBlake/kandji-openapi](https://github.com/MScottBlake/kandji-openapi)
143143

kandji/configuration.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,8 @@ class Configuration:
164164
:param retries: Number of retries for API requests.
165165
:param ca_cert_data: verify the peer using concatenated CA certificate data
166166
in PEM (str) or DER (bytes) format.
167+
:param cert_file: the path to a client certificate file, for mTLS.
168+
:param key_file: the path to a client key file, for mTLS.
167169
168170
:Example:
169171
"""
@@ -186,6 +188,8 @@ def __init__(
186188
ssl_ca_cert: Optional[str]=None,
187189
retries: Optional[int] = None,
188190
ca_cert_data: Optional[Union[str, bytes]] = None,
191+
cert_file: Optional[str]=None,
192+
key_file: Optional[str]=None,
189193
*,
190194
debug: Optional[bool] = None,
191195
) -> None:
@@ -267,10 +271,10 @@ def __init__(
267271
"""Set this to verify the peer using PEM (str) or DER (bytes)
268272
certificate data.
269273
"""
270-
self.cert_file = None
274+
self.cert_file = cert_file
271275
"""client certificate file
272276
"""
273-
self.key_file = None
277+
self.key_file = key_file
274278
"""client key file
275279
"""
276280
self.assert_hostname = None

0 commit comments

Comments
 (0)