Skip to content

Commit 241fd06

Browse files
author
ci_volc_sdk_gen
committed
feat: auto generate for graph-Python-2025-08-15-online-1553-2025_09_10_17_06_08
1 parent 3edc944 commit 241fd06

File tree

5 files changed

+34
-34
lines changed

5 files changed

+34
-34
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": "4.0.17",
3-
"meta_commit": "5ea62ff7d371db1217e24981c449a52a381c1454"
2+
"lasted": "4.0.18",
3+
"meta_commit": "6d076a9dafe8889c08d0b0f2accc19e4310778e1"
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 = "4.0.17"
6+
VERSION = "4.0.18"
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/4.0.17'
70+
self.user_agent = 'volcstack-python-sdk/4.0.18'
7171
self.client_side_validation = configuration.client_side_validation
7272

7373
self.interceptor_chain = InterceptorChain()

volcenginesdkcore/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ def to_debug_report(self):
267267
"OS: {env}\n" \
268268
"Python Version: {pyversion}\n" \
269269
"Version of the API: 0.1.0\n" \
270-
"SDK Package Version: 4.0.17".\
270+
"SDK Package Version: 4.0.18".\
271271
format(env=sys.platform, pyversion=sys.version)
272272

273273
@property

volcenginesdkgraph20250815/models/get_table_response.py

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -36,19 +36,19 @@ class GetTableResponse(object):
3636
'enable_read': 'bool',
3737
'enable_write': 'bool',
3838
'state': 'str',
39-
'tabel_name': 'str',
40-
'table_id': 'int'
39+
'table_id': 'int',
40+
'table_name': 'str'
4141
}
4242

4343
attribute_map = {
4444
'enable_read': 'EnableRead',
4545
'enable_write': 'EnableWrite',
4646
'state': 'State',
47-
'tabel_name': 'TabelName',
48-
'table_id': 'TableId'
47+
'table_id': 'TableId',
48+
'table_name': 'TableName'
4949
}
5050

51-
def __init__(self, enable_read=None, enable_write=None, state=None, tabel_name=None, table_id=None, _configuration=None): # noqa: E501
51+
def __init__(self, enable_read=None, enable_write=None, state=None, table_id=None, table_name=None, _configuration=None): # noqa: E501
5252
"""GetTableResponse - a model defined in Swagger""" # noqa: E501
5353
if _configuration is None:
5454
_configuration = Configuration()
@@ -57,8 +57,8 @@ def __init__(self, enable_read=None, enable_write=None, state=None, tabel_name=N
5757
self._enable_read = None
5858
self._enable_write = None
5959
self._state = None
60-
self._tabel_name = None
6160
self._table_id = None
61+
self._table_name = None
6262
self.discriminator = None
6363

6464
if enable_read is not None:
@@ -67,10 +67,10 @@ def __init__(self, enable_read=None, enable_write=None, state=None, tabel_name=N
6767
self.enable_write = enable_write
6868
if state is not None:
6969
self.state = state
70-
if tabel_name is not None:
71-
self.tabel_name = tabel_name
7270
if table_id is not None:
7371
self.table_id = table_id
72+
if table_name is not None:
73+
self.table_name = table_name
7474

7575
@property
7676
def enable_read(self):
@@ -135,27 +135,6 @@ def state(self, state):
135135

136136
self._state = state
137137

138-
@property
139-
def tabel_name(self):
140-
"""Gets the tabel_name of this GetTableResponse. # noqa: E501
141-
142-
143-
:return: The tabel_name of this GetTableResponse. # noqa: E501
144-
:rtype: str
145-
"""
146-
return self._tabel_name
147-
148-
@tabel_name.setter
149-
def tabel_name(self, tabel_name):
150-
"""Sets the tabel_name of this GetTableResponse.
151-
152-
153-
:param tabel_name: The tabel_name of this GetTableResponse. # noqa: E501
154-
:type: str
155-
"""
156-
157-
self._tabel_name = tabel_name
158-
159138
@property
160139
def table_id(self):
161140
"""Gets the table_id of this GetTableResponse. # noqa: E501
@@ -177,6 +156,27 @@ def table_id(self, table_id):
177156

178157
self._table_id = table_id
179158

159+
@property
160+
def table_name(self):
161+
"""Gets the table_name of this GetTableResponse. # noqa: E501
162+
163+
164+
:return: The table_name of this GetTableResponse. # noqa: E501
165+
:rtype: str
166+
"""
167+
return self._table_name
168+
169+
@table_name.setter
170+
def table_name(self, table_name):
171+
"""Sets the table_name of this GetTableResponse.
172+
173+
174+
:param table_name: The table_name of this GetTableResponse. # noqa: E501
175+
:type: str
176+
"""
177+
178+
self._table_name = table_name
179+
180180
def to_dict(self):
181181
"""Returns the model properties as a dict"""
182182
result = {}

0 commit comments

Comments
 (0)