Skip to content
This repository was archived by the owner on Jan 16, 2026. It is now read-only.

Commit f315df3

Browse files
committed
Autogenerated Update v2.58.20.
1 parent a9ff87a commit f315df3

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

.swagger-codegen/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.4.12
1+
2.4.14

.swagger-codegen/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
"gitUserId": "wavefrontHQ",
44
"packageName": "wavefront_api_client",
55
"packageUrl": "https://github.com/wavefrontHQ/python-client",
6-
"packageVersion": "2.58.13"
6+
"packageVersion": "2.58.20"
77
}

.swagger-codegen/config.jsone

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
"gitUserId": "wavefrontHQ",
44
"packageName": "wavefront_api_client",
55
"packageUrl": "https://github.com/wavefrontHQ/python-client",
6-
"packageVersion": "2.57.18"
6+
"packageVersion": "2.58.13"
77
}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
This Python package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
55

66
- API version: v2
7-
- Package version: 2.58.13
7+
- Package version: 2.58.20
88
- Build package: io.swagger.codegen.languages.PythonClientCodegen
99

1010
## Requirements.

generate_client

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ function _exit {
99
[[ "$1" ]] || _exit "Please specify cluster as an argument."
1010

1111
CGEN_NAME="swagger-codegen-cli"
12-
CGEN_VER="2.4.12" # For 3.x use CGEN_VER="3.0.16"
12+
CGEN_VER="2.4.14" # For 3.x use CGEN_VER="3.0.16"
1313
CGEN_JAR_NAME="${CGEN_NAME}-${CGEN_VER}.jar"
1414
CGEN_JAR_URL="https://search.maven.org/remotecontent?filepath=\
1515
io/swagger/swagger-codegen-cli/${CGEN_VER}/${CGEN_JAR_NAME}"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
from setuptools import setup, find_packages # noqa: H301
1515

1616
NAME = "wavefront-api-client"
17-
VERSION = "2.58.13"
17+
VERSION = "2.58.20"
1818
# To install the library, run the following
1919
#
2020
# python setup.py install

wavefront_api_client/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
7474
self.default_headers[header_name] = header_value
7575
self.cookie = cookie
7676
# Set default User-Agent.
77-
self.user_agent = 'Swagger-Codegen/2.58.13/python'
77+
self.user_agent = 'Swagger-Codegen/2.58.20/python'
7878

7979
def __del__(self):
8080
if self._pool is not None:

wavefront_api_client/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,5 +248,5 @@ def to_debug_report(self):
248248
"OS: {env}\n"\
249249
"Python Version: {pyversion}\n"\
250250
"Version of the API: v2\n"\
251-
"SDK Package Version: 2.58.13".\
251+
"SDK Package Version: 2.58.20".\
252252
format(env=sys.platform, pyversion=sys.version)

wavefront_api_client/rest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ def request(self, method, url, query_params=None, headers=None,
156156
if query_params:
157157
url += '?' + urlencode(query_params)
158158
if re.search('json', headers['Content-Type'], re.IGNORECASE):
159-
request_body = None
159+
request_body = '{}'
160160
if body is not None:
161161
request_body = json.dumps(body)
162162
r = self.pool_manager.request(

0 commit comments

Comments
 (0)