@@ -47,7 +47,6 @@ class DescribeSandboxResponse(object):
4747 'instance_type' : 'str' ,
4848 'max_concurrency' : 'int' ,
4949 'memory_mb' : 'int' ,
50- 'metadata' : 'dict(str, str)' ,
5150 'metadata_list' : 'list[MetadataListForDescribeSandboxOutput]' ,
5251 'pending' : 'bool' ,
5352 'request_timeout' : 'int' ,
@@ -70,15 +69,14 @@ class DescribeSandboxResponse(object):
7069 'instance_type' : 'InstanceType' ,
7170 'max_concurrency' : 'MaxConcurrency' ,
7271 'memory_mb' : 'MemoryMB' ,
73- 'metadata' : 'Metadata' ,
7472 'metadata_list' : 'MetadataList' ,
7573 'pending' : 'Pending' ,
7674 'request_timeout' : 'RequestTimeout' ,
7775 'revision_number' : 'RevisionNumber' ,
7876 'status' : 'Status'
7977 }
8078
81- def __init__ (self , availability_zone = None , cpu_milli = None , created_at = None , envs = None , error_code = None , error_message = None , expire_at = None , function_id = None , id = None , image_info = None , instance_tos_mount_config = None , instance_type = None , max_concurrency = None , memory_mb = None , metadata = None , metadata_list = None , pending = None , request_timeout = None , revision_number = None , status = None , _configuration = None ): # noqa: E501
79+ def __init__ (self , availability_zone = None , cpu_milli = None , created_at = None , envs = None , error_code = None , error_message = None , expire_at = None , function_id = None , id = None , image_info = None , instance_tos_mount_config = None , instance_type = None , max_concurrency = None , memory_mb = None , metadata_list = None , pending = None , request_timeout = None , revision_number = None , status = None , _configuration = None ): # noqa: E501
8280 """DescribeSandboxResponse - a model defined in Swagger""" # noqa: E501
8381 if _configuration is None :
8482 _configuration = Configuration ()
@@ -98,7 +96,6 @@ def __init__(self, availability_zone=None, cpu_milli=None, created_at=None, envs
9896 self ._instance_type = None
9997 self ._max_concurrency = None
10098 self ._memory_mb = None
101- self ._metadata = None
10299 self ._metadata_list = None
103100 self ._pending = None
104101 self ._request_timeout = None
@@ -134,8 +131,6 @@ def __init__(self, availability_zone=None, cpu_milli=None, created_at=None, envs
134131 self .max_concurrency = max_concurrency
135132 if memory_mb is not None :
136133 self .memory_mb = memory_mb
137- if metadata is not None :
138- self .metadata = metadata
139134 if metadata_list is not None :
140135 self .metadata_list = metadata_list
141136 if pending is not None :
@@ -441,27 +436,6 @@ def memory_mb(self, memory_mb):
441436
442437 self ._memory_mb = memory_mb
443438
444- @property
445- def metadata (self ):
446- """Gets the metadata of this DescribeSandboxResponse. # noqa: E501
447-
448-
449- :return: The metadata of this DescribeSandboxResponse. # noqa: E501
450- :rtype: dict(str, str)
451- """
452- return self ._metadata
453-
454- @metadata .setter
455- def metadata (self , metadata ):
456- """Sets the metadata of this DescribeSandboxResponse.
457-
458-
459- :param metadata: The metadata of this DescribeSandboxResponse. # noqa: E501
460- :type: dict(str, str)
461- """
462-
463- self ._metadata = metadata
464-
465439 @property
466440 def metadata_list (self ):
467441 """Gets the metadata_list of this DescribeSandboxResponse. # noqa: E501
0 commit comments