@@ -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