volcengine-python-sdk 4.0.20__py2.py3-none-any.whl → 4.0.21__py2.py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of volcengine-python-sdk might be problematic. Click here for more details.
- volcengine_python_sdk-4.0.21.dist-info/METADATA +214 -0
- {volcengine_python_sdk-4.0.20.dist-info → volcengine_python_sdk-4.0.21.dist-info}/RECORD +88 -62
- {volcengine_python_sdk-4.0.20.dist-info → volcengine_python_sdk-4.0.21.dist-info}/WHEEL +1 -1
- volcenginesdkarkruntime/resources/images/images.py +1 -1
- volcenginesdkarkruntime/resources/responses/input_items.py +2 -2
- volcenginesdkarkruntime/resources/responses/responses.py +4 -1
- volcenginesdkarkruntime/types/images/images.py +3 -0
- volcenginesdkcore/api_client.py +1 -1
- volcenginesdkcore/configuration.py +1 -1
- volcenginesdkrdsmysqlv2/__init__.py +39 -25
- volcenginesdkrdsmysqlv2/api/rds_mysql_v2_api.py +1347 -1153
- volcenginesdkrdsmysqlv2/models/__init__.py +39 -25
- volcenginesdkrdsmysqlv2/models/address_for_describe_db_instance_endpoints_output.py +305 -0
- volcenginesdkrdsmysqlv2/models/allow_list_for_describe_allow_lists_output.py +27 -1
- volcenginesdkrdsmysqlv2/models/basic_info_for_describe_db_instance_detail_output.py +1 -105
- volcenginesdkrdsmysqlv2/models/change_object_for_sync_allow_list_output.py +331 -0
- volcenginesdkrdsmysqlv2/models/charge_detail_for_describe_db_instance_charge_detail_output.py +383 -0
- volcenginesdkrdsmysqlv2/models/create_db_endpoint_request.py +27 -1
- volcenginesdkrdsmysqlv2/models/create_db_instance_request.py +27 -1
- volcenginesdkrdsmysqlv2/models/create_dr_db_instance_request.py +27 -1
- volcenginesdkrdsmysqlv2/models/db_instance_attribute_for_describe_db_instance_attribute_output.py +825 -0
- volcenginesdkrdsmysqlv2/models/describe_allow_lists_request.py +29 -3
- volcenginesdkrdsmysqlv2/models/describe_backup_policy_response.py +53 -1
- volcenginesdkrdsmysqlv2/models/describe_db_disaster_recovery_instances_request.py +124 -0
- volcenginesdkrdsmysqlv2/models/describe_db_disaster_recovery_instances_response.py +305 -0
- volcenginesdkrdsmysqlv2/models/{describe_db_auto_scaling_config_request.py → describe_db_instance_attribute_request.py} +9 -9
- volcenginesdkrdsmysqlv2/models/describe_db_instance_attribute_response.py +123 -0
- volcenginesdkrdsmysqlv2/models/describe_db_instance_charge_detail_request.py +124 -0
- volcenginesdkrdsmysqlv2/models/describe_db_instance_charge_detail_response.py +123 -0
- volcenginesdkrdsmysqlv2/models/describe_db_instance_endpoints_request.py +124 -0
- volcenginesdkrdsmysqlv2/models/describe_db_instance_endpoints_response.py +123 -0
- volcenginesdkrdsmysqlv2/models/describe_db_instance_ha_config_request.py +124 -0
- volcenginesdkrdsmysqlv2/models/{describe_available_cross_region_request.py → describe_db_instance_ha_config_response.py} +36 -37
- volcenginesdkrdsmysqlv2/models/describe_db_instance_price_detail_response.py +29 -3
- volcenginesdkrdsmysqlv2/models/{describe_cross_backup_policy_request.py → describe_db_instance_tde_request.py} +9 -9
- volcenginesdkrdsmysqlv2/models/describe_db_instance_tde_response.py +123 -0
- volcenginesdkrdsmysqlv2/models/describe_db_proxy_price_detail_response.py +27 -1
- volcenginesdkrdsmysqlv2/models/describe_db_proxy_request.py +124 -0
- volcenginesdkrdsmysqlv2/models/describe_db_proxy_response.py +123 -0
- volcenginesdkrdsmysqlv2/models/describe_resource_usage_request.py +124 -0
- volcenginesdkrdsmysqlv2/models/describe_resource_usage_response.py +565 -0
- volcenginesdkrdsmysqlv2/models/disaster_recovery_instance_for_describe_db_disaster_recovery_instances_output.py +279 -0
- volcenginesdkrdsmysqlv2/models/endpoint_for_describe_db_instance_detail_output.py +27 -1
- volcenginesdkrdsmysqlv2/models/endpoint_for_describe_db_instance_endpoints_output.py +669 -0
- volcenginesdkrdsmysqlv2/models/maintenance_window_for_describe_db_instance_attribute_output.py +175 -0
- volcenginesdkrdsmysqlv2/models/modify_backup_policy_request.py +53 -1
- volcenginesdkrdsmysqlv2/models/modify_backup_policy_response.py +53 -1
- volcenginesdkrdsmysqlv2/models/modify_db_endpoint_request.py +53 -1
- volcenginesdkrdsmysqlv2/models/modify_db_instance_tde_request.py +281 -0
- volcenginesdkrdsmysqlv2/models/{modify_db_auto_scaling_config_response.py → modify_db_instance_tde_response.py} +5 -5
- volcenginesdkrdsmysqlv2/models/{upgrade_db_instance_kernel_version_request.py → modify_db_instance_type_request.py} +55 -29
- volcenginesdkrdsmysqlv2/models/{restore_to_cross_region_instance_response.py → modify_db_instance_type_response.py} +13 -13
- volcenginesdkrdsmysqlv2/models/node_for_describe_db_instance_ha_config_output.py +435 -0
- volcenginesdkrdsmysqlv2/models/{node_info_for_restore_to_cross_region_instance_input.py → node_info_for_modify_db_instance_type_input.py} +25 -25
- volcenginesdkrdsmysqlv2/models/{modify_db_auto_scaling_config_request.py → proxy_detail_for_describe_db_proxy_output.py} +36 -37
- volcenginesdkrdsmysqlv2/models/{describe_available_cross_region_response.py → proxy_node_custom_for_create_db_instance_input.py} +22 -22
- volcenginesdkrdsmysqlv2/models/proxy_node_custom_for_create_dr_db_instance_input.py +123 -0
- volcenginesdkrdsmysqlv2/models/proxy_node_custom_for_rebuild_db_instance_input.py +123 -0
- volcenginesdkrdsmysqlv2/models/proxy_node_custom_for_restore_to_new_instance_input.py +123 -0
- volcenginesdkrdsmysqlv2/models/proxy_resource_info_for_describe_db_proxy_output.py +175 -0
- volcenginesdkrdsmysqlv2/models/read_only_node_weight_for_describe_db_instance_endpoints_output.py +175 -0
- volcenginesdkrdsmysqlv2/models/rebuild_db_instance_request.py +27 -1
- volcenginesdkrdsmysqlv2/models/restore_to_new_instance_request.py +27 -1
- volcenginesdkrdsmysqlv2/models/sync_allow_list_request.py +150 -0
- volcenginesdkrdsmysqlv2/models/sync_allow_list_response.py +123 -0
- volcenginesdkrdsmysqlv2/models/{instance_tag_for_restore_to_cross_region_instance_input.py → tag_for_describe_db_instance_attribute_output.py} +13 -13
- volcenginesdkresourceshare/__init__.py +12 -0
- volcenginesdkresourceshare/api/resource_share_api.py +291 -0
- volcenginesdkresourceshare/models/__init__.py +12 -0
- volcenginesdkresourceshare/models/create_resource_share_request.py +29 -3
- volcenginesdkresourceshare/models/create_resource_share_response.py +29 -1
- volcenginesdkresourceshare/models/describe_resource_shares_request.py +31 -6
- volcenginesdkresourceshare/models/list_tags_for_resources_request.py +228 -0
- volcenginesdkrdsmysqlv2/models/describe_cross_region_backup_db_instances_response.py → volcenginesdkresourceshare/models/list_tags_for_resources_response.py +53 -27
- volcenginesdkresourceshare/models/resource_share_for_describe_resource_shares_output.py +27 -1
- volcenginesdkresourceshare/models/resource_tag_for_list_tags_for_resources_output.py +201 -0
- volcenginesdkresourceshare/models/tag_filter_for_describe_resource_shares_input.py +149 -0
- volcenginesdkresourceshare/models/tag_filter_for_list_tags_for_resources_input.py +149 -0
- volcenginesdkresourceshare/models/tag_for_create_resource_share_input.py +149 -0
- volcenginesdkresourceshare/models/tag_for_describe_resource_shares_output.py +149 -0
- volcenginesdkresourceshare/models/tag_for_tag_resources_input.py +151 -0
- volcenginesdkresourceshare/models/tag_resources_request.py +176 -0
- volcenginesdkrdsmysqlv2/models/upgrade_db_instance_kernel_version_response.py → volcenginesdkresourceshare/models/tag_resources_response.py +6 -6
- volcenginesdkresourceshare/models/untag_resources_request.py +176 -0
- volcenginesdkrdsmysqlv2/models/modify_db_instance_auto_upgrade_minor_version_response.py → volcenginesdkresourceshare/models/untag_resources_response.py +6 -6
- volcengine_python_sdk-4.0.20.dist-info/METADATA +0 -20
- volcenginesdkrdsmysqlv2/models/auto_storage_scaling_config_for_restore_to_cross_region_instance_input.py +0 -175
- volcenginesdkrdsmysqlv2/models/charge_info_for_restore_to_cross_region_instance_input.py +0 -227
- volcenginesdkrdsmysqlv2/models/data_for_describe_cross_region_backup_db_instances_output.py +0 -357
- volcenginesdkrdsmysqlv2/models/describe_cross_backup_policy_response.py +0 -227
- volcenginesdkrdsmysqlv2/models/describe_cross_region_backup_db_instances_request.py +0 -279
- volcenginesdkrdsmysqlv2/models/describe_db_auto_scaling_config_response.py +0 -227
- volcenginesdkrdsmysqlv2/models/modify_cross_backup_policy_request.py +0 -228
- volcenginesdkrdsmysqlv2/models/modify_cross_backup_policy_response.py +0 -227
- volcenginesdkrdsmysqlv2/models/modify_db_instance_auto_upgrade_minor_version_request.py +0 -151
- volcenginesdkrdsmysqlv2/models/restore_to_cross_region_instance_request.py +0 -597
- volcenginesdkrdsmysqlv2/models/storage_config_for_describe_db_auto_scaling_config_output.py +0 -175
- volcenginesdkrdsmysqlv2/models/storage_config_for_modify_db_auto_scaling_config_input.py +0 -175
- {volcengine_python_sdk-4.0.20.dist-info → volcengine_python_sdk-4.0.21.dist-info/licenses}/LICENSE.txt +0 -0
- {volcengine_python_sdk-4.0.20.dist-info → volcengine_python_sdk-4.0.21.dist-info/licenses}/NOTICE.md +0 -0
- {volcengine_python_sdk-4.0.20.dist-info → volcengine_python_sdk-4.0.21.dist-info}/top_level.txt +0 -0
volcenginesdkrdsmysqlv2/models/db_instance_attribute_for_describe_db_instance_attribute_output.py
ADDED
|
@@ -0,0 +1,825 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
rds_mysql_v2
|
|
5
|
+
|
|
6
|
+
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
|
|
7
|
+
|
|
8
|
+
OpenAPI spec version: common-version
|
|
9
|
+
|
|
10
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
11
|
+
"""
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
import pprint
|
|
15
|
+
import re # noqa: F401
|
|
16
|
+
|
|
17
|
+
import six
|
|
18
|
+
|
|
19
|
+
from volcenginesdkcore.configuration import Configuration
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
class DBInstanceAttributeForDescribeDBInstanceAttributeOutput(object):
|
|
23
|
+
"""NOTE: This class is auto generated by the swagger code generator program.
|
|
24
|
+
|
|
25
|
+
Do not edit the class manually.
|
|
26
|
+
"""
|
|
27
|
+
|
|
28
|
+
"""
|
|
29
|
+
Attributes:
|
|
30
|
+
swagger_types (dict): The key is attribute name
|
|
31
|
+
and the value is attribute type.
|
|
32
|
+
attribute_map (dict): The key is attribute name
|
|
33
|
+
and the value is json key in definition.
|
|
34
|
+
"""
|
|
35
|
+
swagger_types = {
|
|
36
|
+
'allow_list_version': 'str',
|
|
37
|
+
'auto_upgrade_minor_version': 'str',
|
|
38
|
+
'create_time': 'str',
|
|
39
|
+
'current_kernel_version': 'str',
|
|
40
|
+
'db_engine_version': 'str',
|
|
41
|
+
'deletion_protection': 'str',
|
|
42
|
+
'has_disaster_recovery_instances': 'bool',
|
|
43
|
+
'has_green_instance': 'bool',
|
|
44
|
+
'instance_id': 'str',
|
|
45
|
+
'instance_name': 'str',
|
|
46
|
+
'instance_status': 'str',
|
|
47
|
+
'instance_type': 'str',
|
|
48
|
+
'lower_case_table_names': 'str',
|
|
49
|
+
'maintenance_window': 'MaintenanceWindowForDescribeDBInstanceAttributeOutput',
|
|
50
|
+
'memory': 'int',
|
|
51
|
+
'node_number': 'str',
|
|
52
|
+
'node_spec': 'str',
|
|
53
|
+
'project_name': 'str',
|
|
54
|
+
'region_id': 'str',
|
|
55
|
+
'storage_space': 'int',
|
|
56
|
+
'storage_type': 'str',
|
|
57
|
+
'subnet_id': 'str',
|
|
58
|
+
'tags': 'list[TagForDescribeDBInstanceAttributeOutput]',
|
|
59
|
+
'time_zone': 'str',
|
|
60
|
+
'update_time': 'str',
|
|
61
|
+
'vcpu': 'int',
|
|
62
|
+
'vpc_id': 'str',
|
|
63
|
+
'zone_id': 'str'
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
attribute_map = {
|
|
67
|
+
'allow_list_version': 'AllowListVersion',
|
|
68
|
+
'auto_upgrade_minor_version': 'AutoUpgradeMinorVersion',
|
|
69
|
+
'create_time': 'CreateTime',
|
|
70
|
+
'current_kernel_version': 'CurrentKernelVersion',
|
|
71
|
+
'db_engine_version': 'DBEngineVersion',
|
|
72
|
+
'deletion_protection': 'DeletionProtection',
|
|
73
|
+
'has_disaster_recovery_instances': 'HasDisasterRecoveryInstances',
|
|
74
|
+
'has_green_instance': 'HasGreenInstance',
|
|
75
|
+
'instance_id': 'InstanceId',
|
|
76
|
+
'instance_name': 'InstanceName',
|
|
77
|
+
'instance_status': 'InstanceStatus',
|
|
78
|
+
'instance_type': 'InstanceType',
|
|
79
|
+
'lower_case_table_names': 'LowerCaseTableNames',
|
|
80
|
+
'maintenance_window': 'MaintenanceWindow',
|
|
81
|
+
'memory': 'Memory',
|
|
82
|
+
'node_number': 'NodeNumber',
|
|
83
|
+
'node_spec': 'NodeSpec',
|
|
84
|
+
'project_name': 'ProjectName',
|
|
85
|
+
'region_id': 'RegionId',
|
|
86
|
+
'storage_space': 'StorageSpace',
|
|
87
|
+
'storage_type': 'StorageType',
|
|
88
|
+
'subnet_id': 'SubnetId',
|
|
89
|
+
'tags': 'Tags',
|
|
90
|
+
'time_zone': 'TimeZone',
|
|
91
|
+
'update_time': 'UpdateTime',
|
|
92
|
+
'vcpu': 'VCPU',
|
|
93
|
+
'vpc_id': 'VpcId',
|
|
94
|
+
'zone_id': 'ZoneId'
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
def __init__(self, allow_list_version=None, auto_upgrade_minor_version=None, create_time=None, current_kernel_version=None, db_engine_version=None, deletion_protection=None, has_disaster_recovery_instances=None, has_green_instance=None, instance_id=None, instance_name=None, instance_status=None, instance_type=None, lower_case_table_names=None, maintenance_window=None, memory=None, node_number=None, node_spec=None, project_name=None, region_id=None, storage_space=None, storage_type=None, subnet_id=None, tags=None, time_zone=None, update_time=None, vcpu=None, vpc_id=None, zone_id=None, _configuration=None): # noqa: E501
|
|
98
|
+
"""DBInstanceAttributeForDescribeDBInstanceAttributeOutput - a model defined in Swagger""" # noqa: E501
|
|
99
|
+
if _configuration is None:
|
|
100
|
+
_configuration = Configuration()
|
|
101
|
+
self._configuration = _configuration
|
|
102
|
+
|
|
103
|
+
self._allow_list_version = None
|
|
104
|
+
self._auto_upgrade_minor_version = None
|
|
105
|
+
self._create_time = None
|
|
106
|
+
self._current_kernel_version = None
|
|
107
|
+
self._db_engine_version = None
|
|
108
|
+
self._deletion_protection = None
|
|
109
|
+
self._has_disaster_recovery_instances = None
|
|
110
|
+
self._has_green_instance = None
|
|
111
|
+
self._instance_id = None
|
|
112
|
+
self._instance_name = None
|
|
113
|
+
self._instance_status = None
|
|
114
|
+
self._instance_type = None
|
|
115
|
+
self._lower_case_table_names = None
|
|
116
|
+
self._maintenance_window = None
|
|
117
|
+
self._memory = None
|
|
118
|
+
self._node_number = None
|
|
119
|
+
self._node_spec = None
|
|
120
|
+
self._project_name = None
|
|
121
|
+
self._region_id = None
|
|
122
|
+
self._storage_space = None
|
|
123
|
+
self._storage_type = None
|
|
124
|
+
self._subnet_id = None
|
|
125
|
+
self._tags = None
|
|
126
|
+
self._time_zone = None
|
|
127
|
+
self._update_time = None
|
|
128
|
+
self._vcpu = None
|
|
129
|
+
self._vpc_id = None
|
|
130
|
+
self._zone_id = None
|
|
131
|
+
self.discriminator = None
|
|
132
|
+
|
|
133
|
+
if allow_list_version is not None:
|
|
134
|
+
self.allow_list_version = allow_list_version
|
|
135
|
+
if auto_upgrade_minor_version is not None:
|
|
136
|
+
self.auto_upgrade_minor_version = auto_upgrade_minor_version
|
|
137
|
+
if create_time is not None:
|
|
138
|
+
self.create_time = create_time
|
|
139
|
+
if current_kernel_version is not None:
|
|
140
|
+
self.current_kernel_version = current_kernel_version
|
|
141
|
+
if db_engine_version is not None:
|
|
142
|
+
self.db_engine_version = db_engine_version
|
|
143
|
+
if deletion_protection is not None:
|
|
144
|
+
self.deletion_protection = deletion_protection
|
|
145
|
+
if has_disaster_recovery_instances is not None:
|
|
146
|
+
self.has_disaster_recovery_instances = has_disaster_recovery_instances
|
|
147
|
+
if has_green_instance is not None:
|
|
148
|
+
self.has_green_instance = has_green_instance
|
|
149
|
+
if instance_id is not None:
|
|
150
|
+
self.instance_id = instance_id
|
|
151
|
+
if instance_name is not None:
|
|
152
|
+
self.instance_name = instance_name
|
|
153
|
+
if instance_status is not None:
|
|
154
|
+
self.instance_status = instance_status
|
|
155
|
+
if instance_type is not None:
|
|
156
|
+
self.instance_type = instance_type
|
|
157
|
+
if lower_case_table_names is not None:
|
|
158
|
+
self.lower_case_table_names = lower_case_table_names
|
|
159
|
+
if maintenance_window is not None:
|
|
160
|
+
self.maintenance_window = maintenance_window
|
|
161
|
+
if memory is not None:
|
|
162
|
+
self.memory = memory
|
|
163
|
+
if node_number is not None:
|
|
164
|
+
self.node_number = node_number
|
|
165
|
+
if node_spec is not None:
|
|
166
|
+
self.node_spec = node_spec
|
|
167
|
+
if project_name is not None:
|
|
168
|
+
self.project_name = project_name
|
|
169
|
+
if region_id is not None:
|
|
170
|
+
self.region_id = region_id
|
|
171
|
+
if storage_space is not None:
|
|
172
|
+
self.storage_space = storage_space
|
|
173
|
+
if storage_type is not None:
|
|
174
|
+
self.storage_type = storage_type
|
|
175
|
+
if subnet_id is not None:
|
|
176
|
+
self.subnet_id = subnet_id
|
|
177
|
+
if tags is not None:
|
|
178
|
+
self.tags = tags
|
|
179
|
+
if time_zone is not None:
|
|
180
|
+
self.time_zone = time_zone
|
|
181
|
+
if update_time is not None:
|
|
182
|
+
self.update_time = update_time
|
|
183
|
+
if vcpu is not None:
|
|
184
|
+
self.vcpu = vcpu
|
|
185
|
+
if vpc_id is not None:
|
|
186
|
+
self.vpc_id = vpc_id
|
|
187
|
+
if zone_id is not None:
|
|
188
|
+
self.zone_id = zone_id
|
|
189
|
+
|
|
190
|
+
@property
|
|
191
|
+
def allow_list_version(self):
|
|
192
|
+
"""Gets the allow_list_version of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
193
|
+
|
|
194
|
+
|
|
195
|
+
:return: The allow_list_version of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
196
|
+
:rtype: str
|
|
197
|
+
"""
|
|
198
|
+
return self._allow_list_version
|
|
199
|
+
|
|
200
|
+
@allow_list_version.setter
|
|
201
|
+
def allow_list_version(self, allow_list_version):
|
|
202
|
+
"""Sets the allow_list_version of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput.
|
|
203
|
+
|
|
204
|
+
|
|
205
|
+
:param allow_list_version: The allow_list_version of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
206
|
+
:type: str
|
|
207
|
+
"""
|
|
208
|
+
|
|
209
|
+
self._allow_list_version = allow_list_version
|
|
210
|
+
|
|
211
|
+
@property
|
|
212
|
+
def auto_upgrade_minor_version(self):
|
|
213
|
+
"""Gets the auto_upgrade_minor_version of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
:return: The auto_upgrade_minor_version of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
217
|
+
:rtype: str
|
|
218
|
+
"""
|
|
219
|
+
return self._auto_upgrade_minor_version
|
|
220
|
+
|
|
221
|
+
@auto_upgrade_minor_version.setter
|
|
222
|
+
def auto_upgrade_minor_version(self, auto_upgrade_minor_version):
|
|
223
|
+
"""Sets the auto_upgrade_minor_version of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput.
|
|
224
|
+
|
|
225
|
+
|
|
226
|
+
:param auto_upgrade_minor_version: The auto_upgrade_minor_version of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
227
|
+
:type: str
|
|
228
|
+
"""
|
|
229
|
+
|
|
230
|
+
self._auto_upgrade_minor_version = auto_upgrade_minor_version
|
|
231
|
+
|
|
232
|
+
@property
|
|
233
|
+
def create_time(self):
|
|
234
|
+
"""Gets the create_time of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
235
|
+
|
|
236
|
+
|
|
237
|
+
:return: The create_time of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
238
|
+
:rtype: str
|
|
239
|
+
"""
|
|
240
|
+
return self._create_time
|
|
241
|
+
|
|
242
|
+
@create_time.setter
|
|
243
|
+
def create_time(self, create_time):
|
|
244
|
+
"""Sets the create_time of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput.
|
|
245
|
+
|
|
246
|
+
|
|
247
|
+
:param create_time: The create_time of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
248
|
+
:type: str
|
|
249
|
+
"""
|
|
250
|
+
|
|
251
|
+
self._create_time = create_time
|
|
252
|
+
|
|
253
|
+
@property
|
|
254
|
+
def current_kernel_version(self):
|
|
255
|
+
"""Gets the current_kernel_version of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
256
|
+
|
|
257
|
+
|
|
258
|
+
:return: The current_kernel_version of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
259
|
+
:rtype: str
|
|
260
|
+
"""
|
|
261
|
+
return self._current_kernel_version
|
|
262
|
+
|
|
263
|
+
@current_kernel_version.setter
|
|
264
|
+
def current_kernel_version(self, current_kernel_version):
|
|
265
|
+
"""Sets the current_kernel_version of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput.
|
|
266
|
+
|
|
267
|
+
|
|
268
|
+
:param current_kernel_version: The current_kernel_version of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
269
|
+
:type: str
|
|
270
|
+
"""
|
|
271
|
+
|
|
272
|
+
self._current_kernel_version = current_kernel_version
|
|
273
|
+
|
|
274
|
+
@property
|
|
275
|
+
def db_engine_version(self):
|
|
276
|
+
"""Gets the db_engine_version of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
277
|
+
|
|
278
|
+
|
|
279
|
+
:return: The db_engine_version of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
280
|
+
:rtype: str
|
|
281
|
+
"""
|
|
282
|
+
return self._db_engine_version
|
|
283
|
+
|
|
284
|
+
@db_engine_version.setter
|
|
285
|
+
def db_engine_version(self, db_engine_version):
|
|
286
|
+
"""Sets the db_engine_version of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput.
|
|
287
|
+
|
|
288
|
+
|
|
289
|
+
:param db_engine_version: The db_engine_version of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
290
|
+
:type: str
|
|
291
|
+
"""
|
|
292
|
+
|
|
293
|
+
self._db_engine_version = db_engine_version
|
|
294
|
+
|
|
295
|
+
@property
|
|
296
|
+
def deletion_protection(self):
|
|
297
|
+
"""Gets the deletion_protection of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
298
|
+
|
|
299
|
+
|
|
300
|
+
:return: The deletion_protection of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
301
|
+
:rtype: str
|
|
302
|
+
"""
|
|
303
|
+
return self._deletion_protection
|
|
304
|
+
|
|
305
|
+
@deletion_protection.setter
|
|
306
|
+
def deletion_protection(self, deletion_protection):
|
|
307
|
+
"""Sets the deletion_protection of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput.
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
:param deletion_protection: The deletion_protection of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
311
|
+
:type: str
|
|
312
|
+
"""
|
|
313
|
+
|
|
314
|
+
self._deletion_protection = deletion_protection
|
|
315
|
+
|
|
316
|
+
@property
|
|
317
|
+
def has_disaster_recovery_instances(self):
|
|
318
|
+
"""Gets the has_disaster_recovery_instances of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
319
|
+
|
|
320
|
+
|
|
321
|
+
:return: The has_disaster_recovery_instances of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
322
|
+
:rtype: bool
|
|
323
|
+
"""
|
|
324
|
+
return self._has_disaster_recovery_instances
|
|
325
|
+
|
|
326
|
+
@has_disaster_recovery_instances.setter
|
|
327
|
+
def has_disaster_recovery_instances(self, has_disaster_recovery_instances):
|
|
328
|
+
"""Sets the has_disaster_recovery_instances of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput.
|
|
329
|
+
|
|
330
|
+
|
|
331
|
+
:param has_disaster_recovery_instances: The has_disaster_recovery_instances of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
332
|
+
:type: bool
|
|
333
|
+
"""
|
|
334
|
+
|
|
335
|
+
self._has_disaster_recovery_instances = has_disaster_recovery_instances
|
|
336
|
+
|
|
337
|
+
@property
|
|
338
|
+
def has_green_instance(self):
|
|
339
|
+
"""Gets the has_green_instance of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
340
|
+
|
|
341
|
+
|
|
342
|
+
:return: The has_green_instance of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
343
|
+
:rtype: bool
|
|
344
|
+
"""
|
|
345
|
+
return self._has_green_instance
|
|
346
|
+
|
|
347
|
+
@has_green_instance.setter
|
|
348
|
+
def has_green_instance(self, has_green_instance):
|
|
349
|
+
"""Sets the has_green_instance of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput.
|
|
350
|
+
|
|
351
|
+
|
|
352
|
+
:param has_green_instance: The has_green_instance of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
353
|
+
:type: bool
|
|
354
|
+
"""
|
|
355
|
+
|
|
356
|
+
self._has_green_instance = has_green_instance
|
|
357
|
+
|
|
358
|
+
@property
|
|
359
|
+
def instance_id(self):
|
|
360
|
+
"""Gets the instance_id of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
361
|
+
|
|
362
|
+
|
|
363
|
+
:return: The instance_id of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
364
|
+
:rtype: str
|
|
365
|
+
"""
|
|
366
|
+
return self._instance_id
|
|
367
|
+
|
|
368
|
+
@instance_id.setter
|
|
369
|
+
def instance_id(self, instance_id):
|
|
370
|
+
"""Sets the instance_id of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput.
|
|
371
|
+
|
|
372
|
+
|
|
373
|
+
:param instance_id: The instance_id of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
374
|
+
:type: str
|
|
375
|
+
"""
|
|
376
|
+
|
|
377
|
+
self._instance_id = instance_id
|
|
378
|
+
|
|
379
|
+
@property
|
|
380
|
+
def instance_name(self):
|
|
381
|
+
"""Gets the instance_name of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
382
|
+
|
|
383
|
+
|
|
384
|
+
:return: The instance_name of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
385
|
+
:rtype: str
|
|
386
|
+
"""
|
|
387
|
+
return self._instance_name
|
|
388
|
+
|
|
389
|
+
@instance_name.setter
|
|
390
|
+
def instance_name(self, instance_name):
|
|
391
|
+
"""Sets the instance_name of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput.
|
|
392
|
+
|
|
393
|
+
|
|
394
|
+
:param instance_name: The instance_name of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
395
|
+
:type: str
|
|
396
|
+
"""
|
|
397
|
+
|
|
398
|
+
self._instance_name = instance_name
|
|
399
|
+
|
|
400
|
+
@property
|
|
401
|
+
def instance_status(self):
|
|
402
|
+
"""Gets the instance_status of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
403
|
+
|
|
404
|
+
|
|
405
|
+
:return: The instance_status of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
406
|
+
:rtype: str
|
|
407
|
+
"""
|
|
408
|
+
return self._instance_status
|
|
409
|
+
|
|
410
|
+
@instance_status.setter
|
|
411
|
+
def instance_status(self, instance_status):
|
|
412
|
+
"""Sets the instance_status of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput.
|
|
413
|
+
|
|
414
|
+
|
|
415
|
+
:param instance_status: The instance_status of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
416
|
+
:type: str
|
|
417
|
+
"""
|
|
418
|
+
|
|
419
|
+
self._instance_status = instance_status
|
|
420
|
+
|
|
421
|
+
@property
|
|
422
|
+
def instance_type(self):
|
|
423
|
+
"""Gets the instance_type of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
424
|
+
|
|
425
|
+
|
|
426
|
+
:return: The instance_type of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
427
|
+
:rtype: str
|
|
428
|
+
"""
|
|
429
|
+
return self._instance_type
|
|
430
|
+
|
|
431
|
+
@instance_type.setter
|
|
432
|
+
def instance_type(self, instance_type):
|
|
433
|
+
"""Sets the instance_type of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput.
|
|
434
|
+
|
|
435
|
+
|
|
436
|
+
:param instance_type: The instance_type of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
437
|
+
:type: str
|
|
438
|
+
"""
|
|
439
|
+
|
|
440
|
+
self._instance_type = instance_type
|
|
441
|
+
|
|
442
|
+
@property
|
|
443
|
+
def lower_case_table_names(self):
|
|
444
|
+
"""Gets the lower_case_table_names of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
445
|
+
|
|
446
|
+
|
|
447
|
+
:return: The lower_case_table_names of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
448
|
+
:rtype: str
|
|
449
|
+
"""
|
|
450
|
+
return self._lower_case_table_names
|
|
451
|
+
|
|
452
|
+
@lower_case_table_names.setter
|
|
453
|
+
def lower_case_table_names(self, lower_case_table_names):
|
|
454
|
+
"""Sets the lower_case_table_names of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput.
|
|
455
|
+
|
|
456
|
+
|
|
457
|
+
:param lower_case_table_names: The lower_case_table_names of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
458
|
+
:type: str
|
|
459
|
+
"""
|
|
460
|
+
|
|
461
|
+
self._lower_case_table_names = lower_case_table_names
|
|
462
|
+
|
|
463
|
+
@property
|
|
464
|
+
def maintenance_window(self):
|
|
465
|
+
"""Gets the maintenance_window of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
466
|
+
|
|
467
|
+
|
|
468
|
+
:return: The maintenance_window of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
469
|
+
:rtype: MaintenanceWindowForDescribeDBInstanceAttributeOutput
|
|
470
|
+
"""
|
|
471
|
+
return self._maintenance_window
|
|
472
|
+
|
|
473
|
+
@maintenance_window.setter
|
|
474
|
+
def maintenance_window(self, maintenance_window):
|
|
475
|
+
"""Sets the maintenance_window of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput.
|
|
476
|
+
|
|
477
|
+
|
|
478
|
+
:param maintenance_window: The maintenance_window of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
479
|
+
:type: MaintenanceWindowForDescribeDBInstanceAttributeOutput
|
|
480
|
+
"""
|
|
481
|
+
|
|
482
|
+
self._maintenance_window = maintenance_window
|
|
483
|
+
|
|
484
|
+
@property
|
|
485
|
+
def memory(self):
|
|
486
|
+
"""Gets the memory of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
487
|
+
|
|
488
|
+
|
|
489
|
+
:return: The memory of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
490
|
+
:rtype: int
|
|
491
|
+
"""
|
|
492
|
+
return self._memory
|
|
493
|
+
|
|
494
|
+
@memory.setter
|
|
495
|
+
def memory(self, memory):
|
|
496
|
+
"""Sets the memory of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput.
|
|
497
|
+
|
|
498
|
+
|
|
499
|
+
:param memory: The memory of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
500
|
+
:type: int
|
|
501
|
+
"""
|
|
502
|
+
|
|
503
|
+
self._memory = memory
|
|
504
|
+
|
|
505
|
+
@property
|
|
506
|
+
def node_number(self):
|
|
507
|
+
"""Gets the node_number of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
508
|
+
|
|
509
|
+
|
|
510
|
+
:return: The node_number of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
511
|
+
:rtype: str
|
|
512
|
+
"""
|
|
513
|
+
return self._node_number
|
|
514
|
+
|
|
515
|
+
@node_number.setter
|
|
516
|
+
def node_number(self, node_number):
|
|
517
|
+
"""Sets the node_number of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput.
|
|
518
|
+
|
|
519
|
+
|
|
520
|
+
:param node_number: The node_number of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
521
|
+
:type: str
|
|
522
|
+
"""
|
|
523
|
+
|
|
524
|
+
self._node_number = node_number
|
|
525
|
+
|
|
526
|
+
@property
|
|
527
|
+
def node_spec(self):
|
|
528
|
+
"""Gets the node_spec of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
529
|
+
|
|
530
|
+
|
|
531
|
+
:return: The node_spec of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
532
|
+
:rtype: str
|
|
533
|
+
"""
|
|
534
|
+
return self._node_spec
|
|
535
|
+
|
|
536
|
+
@node_spec.setter
|
|
537
|
+
def node_spec(self, node_spec):
|
|
538
|
+
"""Sets the node_spec of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput.
|
|
539
|
+
|
|
540
|
+
|
|
541
|
+
:param node_spec: The node_spec of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
542
|
+
:type: str
|
|
543
|
+
"""
|
|
544
|
+
|
|
545
|
+
self._node_spec = node_spec
|
|
546
|
+
|
|
547
|
+
@property
|
|
548
|
+
def project_name(self):
|
|
549
|
+
"""Gets the project_name of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
550
|
+
|
|
551
|
+
|
|
552
|
+
:return: The project_name of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
553
|
+
:rtype: str
|
|
554
|
+
"""
|
|
555
|
+
return self._project_name
|
|
556
|
+
|
|
557
|
+
@project_name.setter
|
|
558
|
+
def project_name(self, project_name):
|
|
559
|
+
"""Sets the project_name of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput.
|
|
560
|
+
|
|
561
|
+
|
|
562
|
+
:param project_name: The project_name of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
563
|
+
:type: str
|
|
564
|
+
"""
|
|
565
|
+
|
|
566
|
+
self._project_name = project_name
|
|
567
|
+
|
|
568
|
+
@property
|
|
569
|
+
def region_id(self):
|
|
570
|
+
"""Gets the region_id of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
571
|
+
|
|
572
|
+
|
|
573
|
+
:return: The region_id of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
574
|
+
:rtype: str
|
|
575
|
+
"""
|
|
576
|
+
return self._region_id
|
|
577
|
+
|
|
578
|
+
@region_id.setter
|
|
579
|
+
def region_id(self, region_id):
|
|
580
|
+
"""Sets the region_id of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput.
|
|
581
|
+
|
|
582
|
+
|
|
583
|
+
:param region_id: The region_id of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
584
|
+
:type: str
|
|
585
|
+
"""
|
|
586
|
+
|
|
587
|
+
self._region_id = region_id
|
|
588
|
+
|
|
589
|
+
@property
|
|
590
|
+
def storage_space(self):
|
|
591
|
+
"""Gets the storage_space of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
592
|
+
|
|
593
|
+
|
|
594
|
+
:return: The storage_space of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
595
|
+
:rtype: int
|
|
596
|
+
"""
|
|
597
|
+
return self._storage_space
|
|
598
|
+
|
|
599
|
+
@storage_space.setter
|
|
600
|
+
def storage_space(self, storage_space):
|
|
601
|
+
"""Sets the storage_space of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput.
|
|
602
|
+
|
|
603
|
+
|
|
604
|
+
:param storage_space: The storage_space of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
605
|
+
:type: int
|
|
606
|
+
"""
|
|
607
|
+
|
|
608
|
+
self._storage_space = storage_space
|
|
609
|
+
|
|
610
|
+
@property
|
|
611
|
+
def storage_type(self):
|
|
612
|
+
"""Gets the storage_type of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
613
|
+
|
|
614
|
+
|
|
615
|
+
:return: The storage_type of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
616
|
+
:rtype: str
|
|
617
|
+
"""
|
|
618
|
+
return self._storage_type
|
|
619
|
+
|
|
620
|
+
@storage_type.setter
|
|
621
|
+
def storage_type(self, storage_type):
|
|
622
|
+
"""Sets the storage_type of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput.
|
|
623
|
+
|
|
624
|
+
|
|
625
|
+
:param storage_type: The storage_type of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
626
|
+
:type: str
|
|
627
|
+
"""
|
|
628
|
+
|
|
629
|
+
self._storage_type = storage_type
|
|
630
|
+
|
|
631
|
+
@property
|
|
632
|
+
def subnet_id(self):
|
|
633
|
+
"""Gets the subnet_id of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
634
|
+
|
|
635
|
+
|
|
636
|
+
:return: The subnet_id of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
637
|
+
:rtype: str
|
|
638
|
+
"""
|
|
639
|
+
return self._subnet_id
|
|
640
|
+
|
|
641
|
+
@subnet_id.setter
|
|
642
|
+
def subnet_id(self, subnet_id):
|
|
643
|
+
"""Sets the subnet_id of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput.
|
|
644
|
+
|
|
645
|
+
|
|
646
|
+
:param subnet_id: The subnet_id of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
647
|
+
:type: str
|
|
648
|
+
"""
|
|
649
|
+
|
|
650
|
+
self._subnet_id = subnet_id
|
|
651
|
+
|
|
652
|
+
@property
|
|
653
|
+
def tags(self):
|
|
654
|
+
"""Gets the tags of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
655
|
+
|
|
656
|
+
|
|
657
|
+
:return: The tags of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
658
|
+
:rtype: list[TagForDescribeDBInstanceAttributeOutput]
|
|
659
|
+
"""
|
|
660
|
+
return self._tags
|
|
661
|
+
|
|
662
|
+
@tags.setter
|
|
663
|
+
def tags(self, tags):
|
|
664
|
+
"""Sets the tags of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput.
|
|
665
|
+
|
|
666
|
+
|
|
667
|
+
:param tags: The tags of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
668
|
+
:type: list[TagForDescribeDBInstanceAttributeOutput]
|
|
669
|
+
"""
|
|
670
|
+
|
|
671
|
+
self._tags = tags
|
|
672
|
+
|
|
673
|
+
@property
|
|
674
|
+
def time_zone(self):
|
|
675
|
+
"""Gets the time_zone of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
676
|
+
|
|
677
|
+
|
|
678
|
+
:return: The time_zone of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
679
|
+
:rtype: str
|
|
680
|
+
"""
|
|
681
|
+
return self._time_zone
|
|
682
|
+
|
|
683
|
+
@time_zone.setter
|
|
684
|
+
def time_zone(self, time_zone):
|
|
685
|
+
"""Sets the time_zone of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput.
|
|
686
|
+
|
|
687
|
+
|
|
688
|
+
:param time_zone: The time_zone of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
689
|
+
:type: str
|
|
690
|
+
"""
|
|
691
|
+
|
|
692
|
+
self._time_zone = time_zone
|
|
693
|
+
|
|
694
|
+
@property
|
|
695
|
+
def update_time(self):
|
|
696
|
+
"""Gets the update_time of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
697
|
+
|
|
698
|
+
|
|
699
|
+
:return: The update_time of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
700
|
+
:rtype: str
|
|
701
|
+
"""
|
|
702
|
+
return self._update_time
|
|
703
|
+
|
|
704
|
+
@update_time.setter
|
|
705
|
+
def update_time(self, update_time):
|
|
706
|
+
"""Sets the update_time of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput.
|
|
707
|
+
|
|
708
|
+
|
|
709
|
+
:param update_time: The update_time of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
710
|
+
:type: str
|
|
711
|
+
"""
|
|
712
|
+
|
|
713
|
+
self._update_time = update_time
|
|
714
|
+
|
|
715
|
+
@property
|
|
716
|
+
def vcpu(self):
|
|
717
|
+
"""Gets the vcpu of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
718
|
+
|
|
719
|
+
|
|
720
|
+
:return: The vcpu of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
721
|
+
:rtype: int
|
|
722
|
+
"""
|
|
723
|
+
return self._vcpu
|
|
724
|
+
|
|
725
|
+
@vcpu.setter
|
|
726
|
+
def vcpu(self, vcpu):
|
|
727
|
+
"""Sets the vcpu of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput.
|
|
728
|
+
|
|
729
|
+
|
|
730
|
+
:param vcpu: The vcpu of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
731
|
+
:type: int
|
|
732
|
+
"""
|
|
733
|
+
|
|
734
|
+
self._vcpu = vcpu
|
|
735
|
+
|
|
736
|
+
@property
|
|
737
|
+
def vpc_id(self):
|
|
738
|
+
"""Gets the vpc_id of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
739
|
+
|
|
740
|
+
|
|
741
|
+
:return: The vpc_id of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
742
|
+
:rtype: str
|
|
743
|
+
"""
|
|
744
|
+
return self._vpc_id
|
|
745
|
+
|
|
746
|
+
@vpc_id.setter
|
|
747
|
+
def vpc_id(self, vpc_id):
|
|
748
|
+
"""Sets the vpc_id of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput.
|
|
749
|
+
|
|
750
|
+
|
|
751
|
+
:param vpc_id: The vpc_id of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
752
|
+
:type: str
|
|
753
|
+
"""
|
|
754
|
+
|
|
755
|
+
self._vpc_id = vpc_id
|
|
756
|
+
|
|
757
|
+
@property
|
|
758
|
+
def zone_id(self):
|
|
759
|
+
"""Gets the zone_id of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
760
|
+
|
|
761
|
+
|
|
762
|
+
:return: The zone_id of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
763
|
+
:rtype: str
|
|
764
|
+
"""
|
|
765
|
+
return self._zone_id
|
|
766
|
+
|
|
767
|
+
@zone_id.setter
|
|
768
|
+
def zone_id(self, zone_id):
|
|
769
|
+
"""Sets the zone_id of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput.
|
|
770
|
+
|
|
771
|
+
|
|
772
|
+
:param zone_id: The zone_id of this DBInstanceAttributeForDescribeDBInstanceAttributeOutput. # noqa: E501
|
|
773
|
+
:type: str
|
|
774
|
+
"""
|
|
775
|
+
|
|
776
|
+
self._zone_id = zone_id
|
|
777
|
+
|
|
778
|
+
def to_dict(self):
|
|
779
|
+
"""Returns the model properties as a dict"""
|
|
780
|
+
result = {}
|
|
781
|
+
|
|
782
|
+
for attr, _ in six.iteritems(self.swagger_types):
|
|
783
|
+
value = getattr(self, attr)
|
|
784
|
+
if isinstance(value, list):
|
|
785
|
+
result[attr] = list(map(
|
|
786
|
+
lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
|
|
787
|
+
value
|
|
788
|
+
))
|
|
789
|
+
elif hasattr(value, "to_dict"):
|
|
790
|
+
result[attr] = value.to_dict()
|
|
791
|
+
elif isinstance(value, dict):
|
|
792
|
+
result[attr] = dict(map(
|
|
793
|
+
lambda item: (item[0], item[1].to_dict())
|
|
794
|
+
if hasattr(item[1], "to_dict") else item,
|
|
795
|
+
value.items()
|
|
796
|
+
))
|
|
797
|
+
else:
|
|
798
|
+
result[attr] = value
|
|
799
|
+
if issubclass(DBInstanceAttributeForDescribeDBInstanceAttributeOutput, dict):
|
|
800
|
+
for key, value in self.items():
|
|
801
|
+
result[key] = value
|
|
802
|
+
|
|
803
|
+
return result
|
|
804
|
+
|
|
805
|
+
def to_str(self):
|
|
806
|
+
"""Returns the string representation of the model"""
|
|
807
|
+
return pprint.pformat(self.to_dict())
|
|
808
|
+
|
|
809
|
+
def __repr__(self):
|
|
810
|
+
"""For `print` and `pprint`"""
|
|
811
|
+
return self.to_str()
|
|
812
|
+
|
|
813
|
+
def __eq__(self, other):
|
|
814
|
+
"""Returns true if both objects are equal"""
|
|
815
|
+
if not isinstance(other, DBInstanceAttributeForDescribeDBInstanceAttributeOutput):
|
|
816
|
+
return False
|
|
817
|
+
|
|
818
|
+
return self.to_dict() == other.to_dict()
|
|
819
|
+
|
|
820
|
+
def __ne__(self, other):
|
|
821
|
+
"""Returns true if both objects are not equal"""
|
|
822
|
+
if not isinstance(other, DBInstanceAttributeForDescribeDBInstanceAttributeOutput):
|
|
823
|
+
return True
|
|
824
|
+
|
|
825
|
+
return self.to_dict() != other.to_dict()
|