Skip to content

Commit 19e2b32

Browse files
author
修杰
committed
Merge 'integration_2025-06-03_927317764098' into 'master'
merge branch integration_2025-06-03_927317764098 into master See merge request: !644
2 parents de273dc + 1e14246 commit 19e2b32

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

meta.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"lasted": "3.0.7",
3-
"meta_commit": "7b3675db1987e3f1c9b0a8e05e537ebe65d40b20"
2+
"lasted": "3.0.8",
3+
"meta_commit": "f636307d40bcc2d85a266d606f8208484b4f7f66"
44
}

setup.py

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

55
NAME = "volcengine-python-sdk"
6-
VERSION = "3.0.7"
6+
VERSION = "3.0.8"
77
# To install the library, run the following
88
#
99
# python setup.py install

volcenginesdkbilling/models/set_renewal_type_request.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class SetRenewalTypeRequest(object):
3939
'renew_type': 'str',
4040
'renewal_duration': 'int',
4141
'renewal_duration_unit': 'str',
42-
'renewal_times': 'str',
42+
'renewal_times': 'int',
4343
'set_renewal_related_instance': 'bool'
4444
}
4545

@@ -222,7 +222,7 @@ def renewal_times(self):
222222
223223
224224
:return: The renewal_times of this SetRenewalTypeRequest. # noqa: E501
225-
:rtype: str
225+
:rtype: int
226226
"""
227227
return self._renewal_times
228228

@@ -232,7 +232,7 @@ def renewal_times(self, renewal_times):
232232
233233
234234
:param renewal_times: The renewal_times of this SetRenewalTypeRequest. # noqa: E501
235-
:type: str
235+
:type: int
236236
"""
237237

238238
self._renewal_times = renewal_times

volcenginesdkcore/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
6363
self.default_headers[header_name] = header_value
6464
self.cookie = cookie
6565
# Set default User-Agent.
66-
self.user_agent = 'volcstack-python-sdk/3.0.7'
66+
self.user_agent = 'volcstack-python-sdk/3.0.8'
6767
self.client_side_validation = configuration.client_side_validation
6868

6969
self.interceptor_chain = InterceptorChain()

volcenginesdkcore/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,5 +257,5 @@ def to_debug_report(self):
257257
"OS: {env}\n" \
258258
"Python Version: {pyversion}\n" \
259259
"Version of the API: 0.1.0\n" \
260-
"SDK Package Version: 3.0.7".\
260+
"SDK Package Version: 3.0.8".\
261261
format(env=sys.platform, pyversion=sys.version)

0 commit comments

Comments
 (0)