@@ -38,8 +38,8 @@ class BackupForDescribeBackupsOutput(object):
3838 'backup_strategy' : 'str' ,
3939 'backup_type' : 'str' ,
4040 'end_time' : 'str' ,
41- 'instance_detail' : 'InstanceDetailForDescribeBackupsOutput' ,
4241 'instance_id' : 'str' ,
42+ 'instance_info' : 'InstanceInfoForDescribeBackupsOutput' ,
4343 'project_name' : 'str' ,
4444 'size' : 'int' ,
4545 'start_time' : 'str' ,
@@ -53,16 +53,16 @@ class BackupForDescribeBackupsOutput(object):
5353 'backup_strategy' : 'BackupStrategy' ,
5454 'backup_type' : 'BackupType' ,
5555 'end_time' : 'EndTime' ,
56- 'instance_detail' : 'InstanceDetail' ,
5756 'instance_id' : 'InstanceId' ,
57+ 'instance_info' : 'InstanceInfo' ,
5858 'project_name' : 'ProjectName' ,
5959 'size' : 'Size' ,
6060 'start_time' : 'StartTime' ,
6161 'status' : 'Status' ,
6262 'ttl' : 'TTL'
6363 }
6464
65- def __init__ (self , backup_point_id = None , backup_point_name = None , backup_strategy = None , backup_type = None , end_time = None , instance_detail = None , instance_id = None , project_name = None , size = None , start_time = None , status = None , ttl = None , _configuration = None ): # noqa: E501
65+ def __init__ (self , backup_point_id = None , backup_point_name = None , backup_strategy = None , backup_type = None , end_time = None , instance_id = None , instance_info = None , project_name = None , size = None , start_time = None , status = None , ttl = None , _configuration = None ): # noqa: E501
6666 """BackupForDescribeBackupsOutput - a model defined in Swagger""" # noqa: E501
6767 if _configuration is None :
6868 _configuration = Configuration ()
@@ -73,8 +73,8 @@ def __init__(self, backup_point_id=None, backup_point_name=None, backup_strategy
7373 self ._backup_strategy = None
7474 self ._backup_type = None
7575 self ._end_time = None
76- self ._instance_detail = None
7776 self ._instance_id = None
77+ self ._instance_info = None
7878 self ._project_name = None
7979 self ._size = None
8080 self ._start_time = None
@@ -92,10 +92,10 @@ def __init__(self, backup_point_id=None, backup_point_name=None, backup_strategy
9292 self .backup_type = backup_type
9393 if end_time is not None :
9494 self .end_time = end_time
95- if instance_detail is not None :
96- self .instance_detail = instance_detail
9795 if instance_id is not None :
9896 self .instance_id = instance_id
97+ if instance_info is not None :
98+ self .instance_info = instance_info
9999 if project_name is not None :
100100 self .project_name = project_name
101101 if size is not None :
@@ -212,27 +212,6 @@ def end_time(self, end_time):
212212
213213 self ._end_time = end_time
214214
215- @property
216- def instance_detail (self ):
217- """Gets the instance_detail of this BackupForDescribeBackupsOutput. # noqa: E501
218-
219-
220- :return: The instance_detail of this BackupForDescribeBackupsOutput. # noqa: E501
221- :rtype: InstanceDetailForDescribeBackupsOutput
222- """
223- return self ._instance_detail
224-
225- @instance_detail .setter
226- def instance_detail (self , instance_detail ):
227- """Sets the instance_detail of this BackupForDescribeBackupsOutput.
228-
229-
230- :param instance_detail: The instance_detail of this BackupForDescribeBackupsOutput. # noqa: E501
231- :type: InstanceDetailForDescribeBackupsOutput
232- """
233-
234- self ._instance_detail = instance_detail
235-
236215 @property
237216 def instance_id (self ):
238217 """Gets the instance_id of this BackupForDescribeBackupsOutput. # noqa: E501
@@ -254,6 +233,27 @@ def instance_id(self, instance_id):
254233
255234 self ._instance_id = instance_id
256235
236+ @property
237+ def instance_info (self ):
238+ """Gets the instance_info of this BackupForDescribeBackupsOutput. # noqa: E501
239+
240+
241+ :return: The instance_info of this BackupForDescribeBackupsOutput. # noqa: E501
242+ :rtype: InstanceInfoForDescribeBackupsOutput
243+ """
244+ return self ._instance_info
245+
246+ @instance_info .setter
247+ def instance_info (self , instance_info ):
248+ """Sets the instance_info of this BackupForDescribeBackupsOutput.
249+
250+
251+ :param instance_info: The instance_info of this BackupForDescribeBackupsOutput. # noqa: E501
252+ :type: InstanceInfoForDescribeBackupsOutput
253+ """
254+
255+ self ._instance_info = instance_info
256+
257257 @property
258258 def project_name (self ):
259259 """Gets the project_name of this BackupForDescribeBackupsOutput. # noqa: E501
0 commit comments