@@ -43,10 +43,12 @@ class DescribeSandboxResponse(object):
4343 'function_id' : 'str' ,
4444 'id' : 'str' ,
4545 'image_info' : 'ImageInfoForDescribeSandboxOutput' ,
46+ 'instance_nas_mount_config' : 'InstanceNasMountConfigForDescribeSandboxOutput' ,
4647 'instance_tos_mount_config' : 'InstanceTosMountConfigForDescribeSandboxOutput' ,
4748 'instance_type' : 'str' ,
4849 'max_concurrency' : 'int' ,
4950 'memory_mb' : 'int' ,
51+ 'metadata' : 'dict(str, str)' ,
5052 'metadata_list' : 'list[MetadataListForDescribeSandboxOutput]' ,
5153 'pending' : 'bool' ,
5254 'request_timeout' : 'int' ,
@@ -65,18 +67,20 @@ class DescribeSandboxResponse(object):
6567 'function_id' : 'FunctionId' ,
6668 'id' : 'Id' ,
6769 'image_info' : 'ImageInfo' ,
70+ 'instance_nas_mount_config' : 'InstanceNasMountConfig' ,
6871 'instance_tos_mount_config' : 'InstanceTosMountConfig' ,
6972 'instance_type' : 'InstanceType' ,
7073 'max_concurrency' : 'MaxConcurrency' ,
7174 'memory_mb' : 'MemoryMB' ,
75+ 'metadata' : 'Metadata' ,
7276 'metadata_list' : 'MetadataList' ,
7377 'pending' : 'Pending' ,
7478 'request_timeout' : 'RequestTimeout' ,
7579 'revision_number' : 'RevisionNumber' ,
7680 'status' : 'Status'
7781 }
7882
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
83+ 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_nas_mount_config = 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
8084 """DescribeSandboxResponse - a model defined in Swagger""" # noqa: E501
8185 if _configuration is None :
8286 _configuration = Configuration ()
@@ -92,10 +96,12 @@ def __init__(self, availability_zone=None, cpu_milli=None, created_at=None, envs
9296 self ._function_id = None
9397 self ._id = None
9498 self ._image_info = None
99+ self ._instance_nas_mount_config = None
95100 self ._instance_tos_mount_config = None
96101 self ._instance_type = None
97102 self ._max_concurrency = None
98103 self ._memory_mb = None
104+ self ._metadata = None
99105 self ._metadata_list = None
100106 self ._pending = None
101107 self ._request_timeout = None
@@ -123,6 +129,8 @@ def __init__(self, availability_zone=None, cpu_milli=None, created_at=None, envs
123129 self .id = id
124130 if image_info is not None :
125131 self .image_info = image_info
132+ if instance_nas_mount_config is not None :
133+ self .instance_nas_mount_config = instance_nas_mount_config
126134 if instance_tos_mount_config is not None :
127135 self .instance_tos_mount_config = instance_tos_mount_config
128136 if instance_type is not None :
@@ -131,6 +139,8 @@ def __init__(self, availability_zone=None, cpu_milli=None, created_at=None, envs
131139 self .max_concurrency = max_concurrency
132140 if memory_mb is not None :
133141 self .memory_mb = memory_mb
142+ if metadata is not None :
143+ self .metadata = metadata
134144 if metadata_list is not None :
135145 self .metadata_list = metadata_list
136146 if pending is not None :
@@ -352,6 +362,27 @@ def image_info(self, image_info):
352362
353363 self ._image_info = image_info
354364
365+ @property
366+ def instance_nas_mount_config (self ):
367+ """Gets the instance_nas_mount_config of this DescribeSandboxResponse. # noqa: E501
368+
369+
370+ :return: The instance_nas_mount_config of this DescribeSandboxResponse. # noqa: E501
371+ :rtype: InstanceNasMountConfigForDescribeSandboxOutput
372+ """
373+ return self ._instance_nas_mount_config
374+
375+ @instance_nas_mount_config .setter
376+ def instance_nas_mount_config (self , instance_nas_mount_config ):
377+ """Sets the instance_nas_mount_config of this DescribeSandboxResponse.
378+
379+
380+ :param instance_nas_mount_config: The instance_nas_mount_config of this DescribeSandboxResponse. # noqa: E501
381+ :type: InstanceNasMountConfigForDescribeSandboxOutput
382+ """
383+
384+ self ._instance_nas_mount_config = instance_nas_mount_config
385+
355386 @property
356387 def instance_tos_mount_config (self ):
357388 """Gets the instance_tos_mount_config of this DescribeSandboxResponse. # noqa: E501
@@ -436,6 +467,27 @@ def memory_mb(self, memory_mb):
436467
437468 self ._memory_mb = memory_mb
438469
470+ @property
471+ def metadata (self ):
472+ """Gets the metadata of this DescribeSandboxResponse. # noqa: E501
473+
474+
475+ :return: The metadata of this DescribeSandboxResponse. # noqa: E501
476+ :rtype: dict(str, str)
477+ """
478+ return self ._metadata
479+
480+ @metadata .setter
481+ def metadata (self , metadata ):
482+ """Sets the metadata of this DescribeSandboxResponse.
483+
484+
485+ :param metadata: The metadata of this DescribeSandboxResponse. # noqa: E501
486+ :type: dict(str, str)
487+ """
488+
489+ self ._metadata = metadata
490+
439491 @property
440492 def metadata_list (self ):
441493 """Gets the metadata_list of this DescribeSandboxResponse. # noqa: E501
0 commit comments