Skip to content

Commit b900290

Browse files
author
BitsAdmin
committed
Merge branch 'livesaas-Python-2020-06-01-online-1505-2025_09_01_20_18_59' into 'integration_2025-09-04_1045806191106'
feat: [development task] livesaas-1505-Python (1624135) See merge request iaasng/volcengine-python-sdk!788
2 parents e752533 + 2aef1e9 commit b900290

File tree

5 files changed

+17
-17
lines changed

5 files changed

+17
-17
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.15",
3-
"meta_commit": "8b41e9d060282bd8b9e2b07cf70ea51bb5ff0e1d"
2+
"lasted": "4.0.16",
3+
"meta_commit": "39bcc0633b3b6decb1cfc2d58e47a5b543cc3f8a"
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.15"
6+
VERSION = "4.0.16"
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.15'
70+
self.user_agent = 'volcstack-python-sdk/4.0.16'
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.15".\
270+
"SDK Package Version: 4.0.16".\
271271
format(env=sys.platform, pyversion=sys.version)
272272

273273
@property

volcenginesdklivesaas/models/line_detail_for_get_streams_api_output.py

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ class LineDetailForGetStreamsAPIOutput(object):
3333
and the value is json key in definition.
3434
"""
3535
swagger_types = {
36-
'back_push_info': 'list[BackPushInfoForGetStreamsAPIOutput]',
37-
'backup_forward_info': 'list[BackupForwardInfoForGetStreamsAPIOutput]',
36+
'back_push_info': 'BackPushInfoForGetStreamsAPIOutput',
37+
'backup_forward_info': 'BackupForwardInfoForGetStreamsAPIOutput',
3838
'expire_time': 'int',
39-
'forward_info': 'list[ForwardInfoForGetStreamsAPIOutput]',
39+
'forward_info': 'ForwardInfoForGetStreamsAPIOutput',
4040
'line_id': 'int',
4141
'line_name': 'str',
42-
'main_push_info': 'list[MainPushInfoForGetStreamsAPIOutput]',
42+
'main_push_info': 'MainPushInfoForGetStreamsAPIOutput',
4343
'ratio': 'str'
4444
}
4545

@@ -93,7 +93,7 @@ def back_push_info(self):
9393
9494
9595
:return: The back_push_info of this LineDetailForGetStreamsAPIOutput. # noqa: E501
96-
:rtype: list[BackPushInfoForGetStreamsAPIOutput]
96+
:rtype: BackPushInfoForGetStreamsAPIOutput
9797
"""
9898
return self._back_push_info
9999

@@ -103,7 +103,7 @@ def back_push_info(self, back_push_info):
103103
104104
105105
:param back_push_info: The back_push_info of this LineDetailForGetStreamsAPIOutput. # noqa: E501
106-
:type: list[BackPushInfoForGetStreamsAPIOutput]
106+
:type: BackPushInfoForGetStreamsAPIOutput
107107
"""
108108

109109
self._back_push_info = back_push_info
@@ -114,7 +114,7 @@ def backup_forward_info(self):
114114
115115
116116
:return: The backup_forward_info of this LineDetailForGetStreamsAPIOutput. # noqa: E501
117-
:rtype: list[BackupForwardInfoForGetStreamsAPIOutput]
117+
:rtype: BackupForwardInfoForGetStreamsAPIOutput
118118
"""
119119
return self._backup_forward_info
120120

@@ -124,7 +124,7 @@ def backup_forward_info(self, backup_forward_info):
124124
125125
126126
:param backup_forward_info: The backup_forward_info of this LineDetailForGetStreamsAPIOutput. # noqa: E501
127-
:type: list[BackupForwardInfoForGetStreamsAPIOutput]
127+
:type: BackupForwardInfoForGetStreamsAPIOutput
128128
"""
129129

130130
self._backup_forward_info = backup_forward_info
@@ -156,7 +156,7 @@ def forward_info(self):
156156
157157
158158
:return: The forward_info of this LineDetailForGetStreamsAPIOutput. # noqa: E501
159-
:rtype: list[ForwardInfoForGetStreamsAPIOutput]
159+
:rtype: ForwardInfoForGetStreamsAPIOutput
160160
"""
161161
return self._forward_info
162162

@@ -166,7 +166,7 @@ def forward_info(self, forward_info):
166166
167167
168168
:param forward_info: The forward_info of this LineDetailForGetStreamsAPIOutput. # noqa: E501
169-
:type: list[ForwardInfoForGetStreamsAPIOutput]
169+
:type: ForwardInfoForGetStreamsAPIOutput
170170
"""
171171

172172
self._forward_info = forward_info
@@ -219,7 +219,7 @@ def main_push_info(self):
219219
220220
221221
:return: The main_push_info of this LineDetailForGetStreamsAPIOutput. # noqa: E501
222-
:rtype: list[MainPushInfoForGetStreamsAPIOutput]
222+
:rtype: MainPushInfoForGetStreamsAPIOutput
223223
"""
224224
return self._main_push_info
225225

@@ -229,7 +229,7 @@ def main_push_info(self, main_push_info):
229229
230230
231231
:param main_push_info: The main_push_info of this LineDetailForGetStreamsAPIOutput. # noqa: E501
232-
:type: list[MainPushInfoForGetStreamsAPIOutput]
232+
:type: MainPushInfoForGetStreamsAPIOutput
233233
"""
234234

235235
self._main_push_info = main_push_info

0 commit comments

Comments
 (0)