@@ -36,14 +36,17 @@ class InstancesInfoForDescribeDBInstancesOutput(object):
3636 'charge_detail' : 'ChargeDetailForDescribeDBInstancesOutput' ,
3737 'create_time' : 'str' ,
3838 'db_engine_version' : 'str' ,
39+ 'instance_category' : 'str' ,
3940 'instance_id' : 'str' ,
4041 'instance_name' : 'str' ,
4142 'instance_status' : 'str' ,
4243 'instance_type' : 'str' ,
4344 'node_detail_info' : 'list[NodeDetailInfoForDescribeDBInstancesOutput]' ,
4445 'node_spec' : 'str' ,
4546 'port' : 'str' ,
47+ 'primary_instance_id' : 'str' ,
4648 'project_name' : 'str' ,
49+ 'read_only_number' : 'int' ,
4750 'region_id' : 'str' ,
4851 'server_collation' : 'str' ,
4952 'storage_space' : 'int' ,
@@ -58,14 +61,17 @@ class InstancesInfoForDescribeDBInstancesOutput(object):
5861 'charge_detail' : 'ChargeDetail' ,
5962 'create_time' : 'CreateTime' ,
6063 'db_engine_version' : 'DBEngineVersion' ,
64+ 'instance_category' : 'InstanceCategory' ,
6165 'instance_id' : 'InstanceId' ,
6266 'instance_name' : 'InstanceName' ,
6367 'instance_status' : 'InstanceStatus' ,
6468 'instance_type' : 'InstanceType' ,
6569 'node_detail_info' : 'NodeDetailInfo' ,
6670 'node_spec' : 'NodeSpec' ,
6771 'port' : 'Port' ,
72+ 'primary_instance_id' : 'PrimaryInstanceId' ,
6873 'project_name' : 'ProjectName' ,
74+ 'read_only_number' : 'ReadOnlyNumber' ,
6975 'region_id' : 'RegionId' ,
7076 'server_collation' : 'ServerCollation' ,
7177 'storage_space' : 'StorageSpace' ,
@@ -76,7 +82,7 @@ class InstancesInfoForDescribeDBInstancesOutput(object):
7682 'zone_id' : 'ZoneId'
7783 }
7884
79- def __init__ (self , charge_detail = None , create_time = None , db_engine_version = None , instance_id = None , instance_name = None , instance_status = None , instance_type = None , node_detail_info = None , node_spec = None , port = None , project_name = None , region_id = None , server_collation = None , storage_space = None , storage_type = None , subnet_id = None , time_zone = None , vpc_id = None , zone_id = None , _configuration = None ): # noqa: E501
85+ def __init__ (self , charge_detail = None , create_time = None , db_engine_version = None , instance_category = None , instance_id = None , instance_name = None , instance_status = None , instance_type = None , node_detail_info = None , node_spec = None , port = None , primary_instance_id = None , project_name = None , read_only_number = None , region_id = None , server_collation = None , storage_space = None , storage_type = None , subnet_id = None , time_zone = None , vpc_id = None , zone_id = None , _configuration = None ): # noqa: E501
8086 """InstancesInfoForDescribeDBInstancesOutput - a model defined in Swagger""" # noqa: E501
8187 if _configuration is None :
8288 _configuration = Configuration ()
@@ -85,14 +91,17 @@ def __init__(self, charge_detail=None, create_time=None, db_engine_version=None,
8591 self ._charge_detail = None
8692 self ._create_time = None
8793 self ._db_engine_version = None
94+ self ._instance_category = None
8895 self ._instance_id = None
8996 self ._instance_name = None
9097 self ._instance_status = None
9198 self ._instance_type = None
9299 self ._node_detail_info = None
93100 self ._node_spec = None
94101 self ._port = None
102+ self ._primary_instance_id = None
95103 self ._project_name = None
104+ self ._read_only_number = None
96105 self ._region_id = None
97106 self ._server_collation = None
98107 self ._storage_space = None
@@ -109,6 +118,8 @@ def __init__(self, charge_detail=None, create_time=None, db_engine_version=None,
109118 self .create_time = create_time
110119 if db_engine_version is not None :
111120 self .db_engine_version = db_engine_version
121+ if instance_category is not None :
122+ self .instance_category = instance_category
112123 if instance_id is not None :
113124 self .instance_id = instance_id
114125 if instance_name is not None :
@@ -123,8 +134,12 @@ def __init__(self, charge_detail=None, create_time=None, db_engine_version=None,
123134 self .node_spec = node_spec
124135 if port is not None :
125136 self .port = port
137+ if primary_instance_id is not None :
138+ self .primary_instance_id = primary_instance_id
126139 if project_name is not None :
127140 self .project_name = project_name
141+ if read_only_number is not None :
142+ self .read_only_number = read_only_number
128143 if region_id is not None :
129144 self .region_id = region_id
130145 if server_collation is not None :
@@ -205,6 +220,27 @@ def db_engine_version(self, db_engine_version):
205220
206221 self ._db_engine_version = db_engine_version
207222
223+ @property
224+ def instance_category (self ):
225+ """Gets the instance_category of this InstancesInfoForDescribeDBInstancesOutput. # noqa: E501
226+
227+
228+ :return: The instance_category of this InstancesInfoForDescribeDBInstancesOutput. # noqa: E501
229+ :rtype: str
230+ """
231+ return self ._instance_category
232+
233+ @instance_category .setter
234+ def instance_category (self , instance_category ):
235+ """Sets the instance_category of this InstancesInfoForDescribeDBInstancesOutput.
236+
237+
238+ :param instance_category: The instance_category of this InstancesInfoForDescribeDBInstancesOutput. # noqa: E501
239+ :type: str
240+ """
241+
242+ self ._instance_category = instance_category
243+
208244 @property
209245 def instance_id (self ):
210246 """Gets the instance_id of this InstancesInfoForDescribeDBInstancesOutput. # noqa: E501
@@ -352,6 +388,27 @@ def port(self, port):
352388
353389 self ._port = port
354390
391+ @property
392+ def primary_instance_id (self ):
393+ """Gets the primary_instance_id of this InstancesInfoForDescribeDBInstancesOutput. # noqa: E501
394+
395+
396+ :return: The primary_instance_id of this InstancesInfoForDescribeDBInstancesOutput. # noqa: E501
397+ :rtype: str
398+ """
399+ return self ._primary_instance_id
400+
401+ @primary_instance_id .setter
402+ def primary_instance_id (self , primary_instance_id ):
403+ """Sets the primary_instance_id of this InstancesInfoForDescribeDBInstancesOutput.
404+
405+
406+ :param primary_instance_id: The primary_instance_id of this InstancesInfoForDescribeDBInstancesOutput. # noqa: E501
407+ :type: str
408+ """
409+
410+ self ._primary_instance_id = primary_instance_id
411+
355412 @property
356413 def project_name (self ):
357414 """Gets the project_name of this InstancesInfoForDescribeDBInstancesOutput. # noqa: E501
@@ -373,6 +430,27 @@ def project_name(self, project_name):
373430
374431 self ._project_name = project_name
375432
433+ @property
434+ def read_only_number (self ):
435+ """Gets the read_only_number of this InstancesInfoForDescribeDBInstancesOutput. # noqa: E501
436+
437+
438+ :return: The read_only_number of this InstancesInfoForDescribeDBInstancesOutput. # noqa: E501
439+ :rtype: int
440+ """
441+ return self ._read_only_number
442+
443+ @read_only_number .setter
444+ def read_only_number (self , read_only_number ):
445+ """Sets the read_only_number of this InstancesInfoForDescribeDBInstancesOutput.
446+
447+
448+ :param read_only_number: The read_only_number of this InstancesInfoForDescribeDBInstancesOutput. # noqa: E501
449+ :type: int
450+ """
451+
452+ self ._read_only_number = read_only_number
453+
376454 @property
377455 def region_id (self ):
378456 """Gets the region_id of this InstancesInfoForDescribeDBInstancesOutput. # noqa: E501
0 commit comments