Skip to content

Commit 106b0c3

Browse files
author
ci_volc_sdk_gen
committed
feat: auto generate for vefaas-Python-2024-06-06-online-759-2024_11_07_10_42_03
1 parent f897840 commit 106b0c3

File tree

5 files changed

+32
-6
lines changed

5 files changed

+32
-6
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.107",
3-
"meta_commit": "acfdd3eb4a58e7f800a76a2a8de7721ecfce8dc9"
2+
"lasted": "1.0.108",
3+
"meta_commit": "2404fb0185021340938a4794c2145b64ab248b2e"
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.107"
6+
VERSION = "1.0.108"
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.107'
70+
self.user_agent = 'volcstack-python-sdk/1.0.108'
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.107".\
224+
"SDK Package Version: 1.0.108".\
225225
format(env=sys.platform, pyversion=sys.version)

volcenginesdkvefaas/models/item_for_list_functions_output.py

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ class ItemForListFunctionsOutput(object):
3535
swagger_types = {
3636
'code_size': 'int',
3737
'code_size_limit': 'int',
38+
'command': 'str',
3839
'creation_time': 'str',
3940
'description': 'str',
4041
'envs': 'list[EnvForListFunctionsOutput]',
@@ -63,6 +64,7 @@ class ItemForListFunctionsOutput(object):
6364
attribute_map = {
6465
'code_size': 'CodeSize',
6566
'code_size_limit': 'CodeSizeLimit',
67+
'command': 'Command',
6668
'creation_time': 'CreationTime',
6769
'description': 'Description',
6870
'envs': 'Envs',
@@ -88,14 +90,15 @@ class ItemForListFunctionsOutput(object):
8890
'vpc_config': 'VpcConfig'
8991
}
9092

91-
def __init__(self, code_size=None, code_size_limit=None, creation_time=None, description=None, envs=None, exclusive_mode=None, id=None, initializer_sec=None, instance_type=None, last_update_time=None, max_concurrency=None, memory_mb=None, name=None, nas_storage=None, owner=None, project_name=None, request_timeout=None, runtime=None, source_location=None, source_type=None, tags=None, tls_config=None, tos_mount_config=None, triggers_count=None, vpc_config=None, _configuration=None): # noqa: E501
93+
def __init__(self, code_size=None, code_size_limit=None, command=None, creation_time=None, description=None, envs=None, exclusive_mode=None, id=None, initializer_sec=None, instance_type=None, last_update_time=None, max_concurrency=None, memory_mb=None, name=None, nas_storage=None, owner=None, project_name=None, request_timeout=None, runtime=None, source_location=None, source_type=None, tags=None, tls_config=None, tos_mount_config=None, triggers_count=None, vpc_config=None, _configuration=None): # noqa: E501
9294
"""ItemForListFunctionsOutput - a model defined in Swagger""" # noqa: E501
9395
if _configuration is None:
9496
_configuration = Configuration()
9597
self._configuration = _configuration
9698

9799
self._code_size = None
98100
self._code_size_limit = None
101+
self._command = None
99102
self._creation_time = None
100103
self._description = None
101104
self._envs = None
@@ -125,6 +128,8 @@ def __init__(self, code_size=None, code_size_limit=None, creation_time=None, des
125128
self.code_size = code_size
126129
if code_size_limit is not None:
127130
self.code_size_limit = code_size_limit
131+
if command is not None:
132+
self.command = command
128133
if creation_time is not None:
129134
self.creation_time = creation_time
130135
if description is not None:
@@ -214,6 +219,27 @@ def code_size_limit(self, code_size_limit):
214219

215220
self._code_size_limit = code_size_limit
216221

222+
@property
223+
def command(self):
224+
"""Gets the command of this ItemForListFunctionsOutput. # noqa: E501
225+
226+
227+
:return: The command of this ItemForListFunctionsOutput. # noqa: E501
228+
:rtype: str
229+
"""
230+
return self._command
231+
232+
@command.setter
233+
def command(self, command):
234+
"""Sets the command of this ItemForListFunctionsOutput.
235+
236+
237+
:param command: The command of this ItemForListFunctionsOutput. # noqa: E501
238+
:type: str
239+
"""
240+
241+
self._command = command
242+
217243
@property
218244
def creation_time(self):
219245
"""Gets the creation_time of this ItemForListFunctionsOutput. # noqa: E501

0 commit comments

Comments
 (0)