@@ -35,40 +35,49 @@ class SandboxForListSandboxesOutput(object):
3535 swagger_types = {
3636 'availability_zone' : 'str' ,
3737 'created_at' : 'str' ,
38+ 'error_code' : 'str' ,
39+ 'error_message' : 'str' ,
3840 'expire_at' : 'str' ,
3941 'function_id' : 'str' ,
4042 'id' : 'str' ,
4143 'instance_type' : 'str' ,
4244 'metadata' : 'MetadataForListSandboxesOutput' ,
45+ 'pending' : 'bool' ,
4346 'revision_number' : 'int' ,
4447 'status' : 'str'
4548 }
4649
4750 attribute_map = {
4851 'availability_zone' : 'AvailabilityZone' ,
4952 'created_at' : 'CreatedAt' ,
53+ 'error_code' : 'ErrorCode' ,
54+ 'error_message' : 'ErrorMessage' ,
5055 'expire_at' : 'ExpireAt' ,
5156 'function_id' : 'FunctionId' ,
5257 'id' : 'Id' ,
5358 'instance_type' : 'InstanceType' ,
5459 'metadata' : 'Metadata' ,
60+ 'pending' : 'Pending' ,
5561 'revision_number' : 'RevisionNumber' ,
5662 'status' : 'Status'
5763 }
5864
59- def __init__ (self , availability_zone = None , created_at = None , expire_at = None , function_id = None , id = None , instance_type = None , metadata = None , revision_number = None , status = None , _configuration = None ): # noqa: E501
65+ def __init__ (self , availability_zone = None , created_at = None , error_code = None , error_message = None , expire_at = None , function_id = None , id = None , instance_type = None , metadata = None , pending = None , revision_number = None , status = None , _configuration = None ): # noqa: E501
6066 """SandboxForListSandboxesOutput - a model defined in Swagger""" # noqa: E501
6167 if _configuration is None :
6268 _configuration = Configuration ()
6369 self ._configuration = _configuration
6470
6571 self ._availability_zone = None
6672 self ._created_at = None
73+ self ._error_code = None
74+ self ._error_message = None
6775 self ._expire_at = None
6876 self ._function_id = None
6977 self ._id = None
7078 self ._instance_type = None
7179 self ._metadata = None
80+ self ._pending = None
7281 self ._revision_number = None
7382 self ._status = None
7483 self .discriminator = None
@@ -77,6 +86,10 @@ def __init__(self, availability_zone=None, created_at=None, expire_at=None, func
7786 self .availability_zone = availability_zone
7887 if created_at is not None :
7988 self .created_at = created_at
89+ if error_code is not None :
90+ self .error_code = error_code
91+ if error_message is not None :
92+ self .error_message = error_message
8093 if expire_at is not None :
8194 self .expire_at = expire_at
8295 if function_id is not None :
@@ -87,6 +100,8 @@ def __init__(self, availability_zone=None, created_at=None, expire_at=None, func
87100 self .instance_type = instance_type
88101 if metadata is not None :
89102 self .metadata = metadata
103+ if pending is not None :
104+ self .pending = pending
90105 if revision_number is not None :
91106 self .revision_number = revision_number
92107 if status is not None :
@@ -134,6 +149,48 @@ def created_at(self, created_at):
134149
135150 self ._created_at = created_at
136151
152+ @property
153+ def error_code (self ):
154+ """Gets the error_code of this SandboxForListSandboxesOutput. # noqa: E501
155+
156+
157+ :return: The error_code of this SandboxForListSandboxesOutput. # noqa: E501
158+ :rtype: str
159+ """
160+ return self ._error_code
161+
162+ @error_code .setter
163+ def error_code (self , error_code ):
164+ """Sets the error_code of this SandboxForListSandboxesOutput.
165+
166+
167+ :param error_code: The error_code of this SandboxForListSandboxesOutput. # noqa: E501
168+ :type: str
169+ """
170+
171+ self ._error_code = error_code
172+
173+ @property
174+ def error_message (self ):
175+ """Gets the error_message of this SandboxForListSandboxesOutput. # noqa: E501
176+
177+
178+ :return: The error_message of this SandboxForListSandboxesOutput. # noqa: E501
179+ :rtype: str
180+ """
181+ return self ._error_message
182+
183+ @error_message .setter
184+ def error_message (self , error_message ):
185+ """Sets the error_message of this SandboxForListSandboxesOutput.
186+
187+
188+ :param error_message: The error_message of this SandboxForListSandboxesOutput. # noqa: E501
189+ :type: str
190+ """
191+
192+ self ._error_message = error_message
193+
137194 @property
138195 def expire_at (self ):
139196 """Gets the expire_at of this SandboxForListSandboxesOutput. # noqa: E501
@@ -239,6 +296,27 @@ def metadata(self, metadata):
239296
240297 self ._metadata = metadata
241298
299+ @property
300+ def pending (self ):
301+ """Gets the pending of this SandboxForListSandboxesOutput. # noqa: E501
302+
303+
304+ :return: The pending of this SandboxForListSandboxesOutput. # noqa: E501
305+ :rtype: bool
306+ """
307+ return self ._pending
308+
309+ @pending .setter
310+ def pending (self , pending ):
311+ """Sets the pending of this SandboxForListSandboxesOutput.
312+
313+
314+ :param pending: The pending of this SandboxForListSandboxesOutput. # noqa: E501
315+ :type: bool
316+ """
317+
318+ self ._pending = pending
319+
242320 @property
243321 def revision_number (self ):
244322 """Gets the revision_number of this SandboxForListSandboxesOutput. # noqa: E501
0 commit comments