Skip to content

Commit c1ea48a

Browse files
committed
Merge branch 'vei_api-Python-2022-01-01-online-363-2024_03_22_14_29_27' into 'master'
feat: auto generate for vei_api-Python-2022-01-01-online-363-2024_03_22_14_29_27 [skipped] See merge request iaasng/volcengine-python-sdk!275
2 parents 1f6df1e + 1c6754f commit c1ea48a

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": "1.0.71",
3-
"meta_commit": "9b8097a35f287338f299c3f4c67b27ac3ce80478"
2+
"lasted": "1.0.72",
3+
"meta_commit": "cba8b87eca72dd1371cdad395f8f217753b8e872"
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 = "1.0.71"
6+
VERSION = "1.0.72"
77
# To install the library, run the following
88
#
99
# python setup.py install

volcenginesdkcore/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
6767
self.default_headers[header_name] = header_value
6868
self.cookie = cookie
6969
# Set default User-Agent.
70-
self.user_agent = 'volcstack-python-sdk/1.0.71'
70+
self.user_agent = 'volcstack-python-sdk/1.0.72'
7171
self.client_side_validation = configuration.client_side_validation
7272

7373
def __del__(self):

volcenginesdkcore/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,5 +221,5 @@ def to_debug_report(self):
221221
"OS: {env}\n"\
222222
"Python Version: {pyversion}\n"\
223223
"Version of the API: 0.1.0\n"\
224-
"SDK Package Version: 1.0.71".\
224+
"SDK Package Version: 1.0.72".\
225225
format(env=sys.platform, pyversion=sys.version)

volcenginesdkveiapi/models/create_sn_in_one_step_request.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class CreateSNInOneStepRequest(object):
3434
"""
3535
swagger_types = {
3636
'auto_renew': 'bool',
37-
'count_of_month': 'str',
37+
'count_of_month': 'int',
3838
'type': 'int'
3939
}
4040

@@ -87,7 +87,7 @@ def count_of_month(self):
8787
8888
8989
:return: The count_of_month of this CreateSNInOneStepRequest. # noqa: E501
90-
:rtype: str
90+
:rtype: int
9191
"""
9292
return self._count_of_month
9393

@@ -97,7 +97,7 @@ def count_of_month(self, count_of_month):
9797
9898
9999
:param count_of_month: The count_of_month of this CreateSNInOneStepRequest. # noqa: E501
100-
:type: str
100+
:type: int
101101
"""
102102
if self._configuration.client_side_validation and count_of_month is None:
103103
raise ValueError("Invalid value for `count_of_month`, must not be `None`") # noqa: E501

0 commit comments

Comments
 (0)