@@ -34,47 +34,58 @@ class BackupForDescribeBackupsOutput(object):
3434 """
3535 swagger_types = {
3636 'backup_point_id' : 'str' ,
37+ 'backup_point_name' : 'str' ,
3738 'backup_strategy' : 'str' ,
3839 'backup_type' : 'str' ,
3940 'end_time' : 'str' ,
4041 'instance_detail' : 'InstanceDetailForDescribeBackupsOutput' ,
4142 'instance_id' : 'str' ,
43+ 'project_name' : 'str' ,
4244 'size' : 'int' ,
4345 'start_time' : 'str' ,
44- 'status' : 'str'
46+ 'status' : 'str' ,
47+ 'ttl' : 'int'
4548 }
4649
4750 attribute_map = {
4851 'backup_point_id' : 'BackupPointId' ,
52+ 'backup_point_name' : 'BackupPointName' ,
4953 'backup_strategy' : 'BackupStrategy' ,
5054 'backup_type' : 'BackupType' ,
5155 'end_time' : 'EndTime' ,
5256 'instance_detail' : 'InstanceDetail' ,
5357 'instance_id' : 'InstanceId' ,
58+ 'project_name' : 'ProjectName' ,
5459 'size' : 'Size' ,
5560 'start_time' : 'StartTime' ,
56- 'status' : 'Status'
61+ 'status' : 'Status' ,
62+ 'ttl' : 'TTL'
5763 }
5864
59- def __init__ (self , backup_point_id = None , backup_strategy = None , backup_type = None , end_time = None , instance_detail = None , instance_id = None , size = None , start_time = None , status = 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_detail = None , instance_id = None , project_name = None , size = None , start_time = None , status = None , ttl = None , _configuration = None ): # noqa: E501
6066 """BackupForDescribeBackupsOutput - a model defined in Swagger""" # noqa: E501
6167 if _configuration is None :
6268 _configuration = Configuration ()
6369 self ._configuration = _configuration
6470
6571 self ._backup_point_id = None
72+ self ._backup_point_name = None
6673 self ._backup_strategy = None
6774 self ._backup_type = None
6875 self ._end_time = None
6976 self ._instance_detail = None
7077 self ._instance_id = None
78+ self ._project_name = None
7179 self ._size = None
7280 self ._start_time = None
7381 self ._status = None
82+ self ._ttl = None
7483 self .discriminator = None
7584
7685 if backup_point_id is not None :
7786 self .backup_point_id = backup_point_id
87+ if backup_point_name is not None :
88+ self .backup_point_name = backup_point_name
7889 if backup_strategy is not None :
7990 self .backup_strategy = backup_strategy
8091 if backup_type is not None :
@@ -85,12 +96,16 @@ def __init__(self, backup_point_id=None, backup_strategy=None, backup_type=None,
8596 self .instance_detail = instance_detail
8697 if instance_id is not None :
8798 self .instance_id = instance_id
99+ if project_name is not None :
100+ self .project_name = project_name
88101 if size is not None :
89102 self .size = size
90103 if start_time is not None :
91104 self .start_time = start_time
92105 if status is not None :
93106 self .status = status
107+ if ttl is not None :
108+ self .ttl = ttl
94109
95110 @property
96111 def backup_point_id (self ):
@@ -113,6 +128,27 @@ def backup_point_id(self, backup_point_id):
113128
114129 self ._backup_point_id = backup_point_id
115130
131+ @property
132+ def backup_point_name (self ):
133+ """Gets the backup_point_name of this BackupForDescribeBackupsOutput. # noqa: E501
134+
135+
136+ :return: The backup_point_name of this BackupForDescribeBackupsOutput. # noqa: E501
137+ :rtype: str
138+ """
139+ return self ._backup_point_name
140+
141+ @backup_point_name .setter
142+ def backup_point_name (self , backup_point_name ):
143+ """Sets the backup_point_name of this BackupForDescribeBackupsOutput.
144+
145+
146+ :param backup_point_name: The backup_point_name of this BackupForDescribeBackupsOutput. # noqa: E501
147+ :type: str
148+ """
149+
150+ self ._backup_point_name = backup_point_name
151+
116152 @property
117153 def backup_strategy (self ):
118154 """Gets the backup_strategy of this BackupForDescribeBackupsOutput. # noqa: E501
@@ -218,6 +254,27 @@ def instance_id(self, instance_id):
218254
219255 self ._instance_id = instance_id
220256
257+ @property
258+ def project_name (self ):
259+ """Gets the project_name of this BackupForDescribeBackupsOutput. # noqa: E501
260+
261+
262+ :return: The project_name of this BackupForDescribeBackupsOutput. # noqa: E501
263+ :rtype: str
264+ """
265+ return self ._project_name
266+
267+ @project_name .setter
268+ def project_name (self , project_name ):
269+ """Sets the project_name of this BackupForDescribeBackupsOutput.
270+
271+
272+ :param project_name: The project_name of this BackupForDescribeBackupsOutput. # noqa: E501
273+ :type: str
274+ """
275+
276+ self ._project_name = project_name
277+
221278 @property
222279 def size (self ):
223280 """Gets the size of this BackupForDescribeBackupsOutput. # noqa: E501
@@ -281,6 +338,27 @@ def status(self, status):
281338
282339 self ._status = status
283340
341+ @property
342+ def ttl (self ):
343+ """Gets the ttl of this BackupForDescribeBackupsOutput. # noqa: E501
344+
345+
346+ :return: The ttl of this BackupForDescribeBackupsOutput. # noqa: E501
347+ :rtype: int
348+ """
349+ return self ._ttl
350+
351+ @ttl .setter
352+ def ttl (self , ttl ):
353+ """Sets the ttl of this BackupForDescribeBackupsOutput.
354+
355+
356+ :param ttl: The ttl of this BackupForDescribeBackupsOutput. # noqa: E501
357+ :type: int
358+ """
359+
360+ self ._ttl = ttl
361+
284362 def to_dict (self ):
285363 """Returns the model properties as a dict"""
286364 result = {}
0 commit comments