Skip to content

Commit eb580e5

Browse files
author
BitsAdmin
committed
Merge branch 'graph-Python-2025-08-15-online-1553-2025_09_10_17_06_08' into 'integration_2025-09-11_1051102926850'
feat: [development task] graph-1553-Python (1649652) See merge request iaasng/volcengine-python-sdk!805
2 parents addd010 + 64a61ec commit eb580e5

File tree

1 file changed

+29
-29
lines changed

1 file changed

+29
-29
lines changed

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)