alibabacloud-rds20140815 14.0.1__py3-none-any.whl → 14.0.2__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.
- alibabacloud_rds20140815/__init__.py +1 -1
- alibabacloud_rds20140815/models/_describe_rcdisks_response_body.py +16 -0
- {alibabacloud_rds20140815-14.0.1.dist-info → alibabacloud_rds20140815-14.0.2.dist-info}/METADATA +1 -1
- {alibabacloud_rds20140815-14.0.1.dist-info → alibabacloud_rds20140815-14.0.2.dist-info}/RECORD +7 -7
- {alibabacloud_rds20140815-14.0.1.dist-info → alibabacloud_rds20140815-14.0.2.dist-info}/LICENSE +0 -0
- {alibabacloud_rds20140815-14.0.1.dist-info → alibabacloud_rds20140815-14.0.2.dist-info}/WHEEL +0 -0
- {alibabacloud_rds20140815-14.0.1.dist-info → alibabacloud_rds20140815-14.0.2.dist-info}/top_level.txt +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '14.0.
|
|
1
|
+
__version__ = '14.0.2'
|
|
@@ -83,6 +83,7 @@ class DescribeRCDisksResponseBodyDisks(DaraModel):
|
|
|
83
83
|
def __init__(
|
|
84
84
|
self,
|
|
85
85
|
attached_time: str = None,
|
|
86
|
+
bursting_enabled: bool = None,
|
|
86
87
|
category: str = None,
|
|
87
88
|
creation_time: str = None,
|
|
88
89
|
delete_auto_snapshot: bool = None,
|
|
@@ -98,6 +99,7 @@ class DescribeRCDisksResponseBodyDisks(DaraModel):
|
|
|
98
99
|
image_id: str = None,
|
|
99
100
|
instance_id: str = None,
|
|
100
101
|
performance_level: str = None,
|
|
102
|
+
portable: bool = None,
|
|
101
103
|
region_id: str = None,
|
|
102
104
|
resource_group_id: str = None,
|
|
103
105
|
serial_number: str = None,
|
|
@@ -111,6 +113,7 @@ class DescribeRCDisksResponseBodyDisks(DaraModel):
|
|
|
111
113
|
zone_id: str = None,
|
|
112
114
|
):
|
|
113
115
|
self.attached_time = attached_time
|
|
116
|
+
self.bursting_enabled = bursting_enabled
|
|
114
117
|
# The category of the disk. Valid values:
|
|
115
118
|
#
|
|
116
119
|
# * **cloud_efficiency**: ultra disk.
|
|
@@ -164,6 +167,7 @@ class DescribeRCDisksResponseBodyDisks(DaraModel):
|
|
|
164
167
|
# * PL2: A single ESSD can deliver up to 100,000 random read/write IOPS.
|
|
165
168
|
# * PL3: A single ESSD can deliver up to 1,000,000 random read/write IOPS.
|
|
166
169
|
self.performance_level = performance_level
|
|
170
|
+
self.portable = portable
|
|
167
171
|
# The region ID.
|
|
168
172
|
self.region_id = region_id
|
|
169
173
|
# The ID of the resource group to which the disk belongs.
|
|
@@ -213,6 +217,9 @@ class DescribeRCDisksResponseBodyDisks(DaraModel):
|
|
|
213
217
|
if self.attached_time is not None:
|
|
214
218
|
result['AttachedTime'] = self.attached_time
|
|
215
219
|
|
|
220
|
+
if self.bursting_enabled is not None:
|
|
221
|
+
result['BurstingEnabled'] = self.bursting_enabled
|
|
222
|
+
|
|
216
223
|
if self.category is not None:
|
|
217
224
|
result['Category'] = self.category
|
|
218
225
|
|
|
@@ -258,6 +265,9 @@ class DescribeRCDisksResponseBodyDisks(DaraModel):
|
|
|
258
265
|
if self.performance_level is not None:
|
|
259
266
|
result['PerformanceLevel'] = self.performance_level
|
|
260
267
|
|
|
268
|
+
if self.portable is not None:
|
|
269
|
+
result['Portable'] = self.portable
|
|
270
|
+
|
|
261
271
|
if self.region_id is not None:
|
|
262
272
|
result['RegionId'] = self.region_id
|
|
263
273
|
|
|
@@ -300,6 +310,9 @@ class DescribeRCDisksResponseBodyDisks(DaraModel):
|
|
|
300
310
|
if m.get('AttachedTime') is not None:
|
|
301
311
|
self.attached_time = m.get('AttachedTime')
|
|
302
312
|
|
|
313
|
+
if m.get('BurstingEnabled') is not None:
|
|
314
|
+
self.bursting_enabled = m.get('BurstingEnabled')
|
|
315
|
+
|
|
303
316
|
if m.get('Category') is not None:
|
|
304
317
|
self.category = m.get('Category')
|
|
305
318
|
|
|
@@ -345,6 +358,9 @@ class DescribeRCDisksResponseBodyDisks(DaraModel):
|
|
|
345
358
|
if m.get('PerformanceLevel') is not None:
|
|
346
359
|
self.performance_level = m.get('PerformanceLevel')
|
|
347
360
|
|
|
361
|
+
if m.get('Portable') is not None:
|
|
362
|
+
self.portable = m.get('Portable')
|
|
363
|
+
|
|
348
364
|
if m.get('RegionId') is not None:
|
|
349
365
|
self.region_id = m.get('RegionId')
|
|
350
366
|
|
{alibabacloud_rds20140815-14.0.1.dist-info → alibabacloud_rds20140815-14.0.2.dist-info}/RECORD
RENAMED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
alibabacloud_rds20140815/__init__.py,sha256=
|
|
1
|
+
alibabacloud_rds20140815/__init__.py,sha256=e6nK8dpMwX3A80HWYh4W8F_8QewAuOsN6UCf1CTVsWs,22
|
|
2
2
|
alibabacloud_rds20140815/client.py,sha256=q5OvlaZzQx4GaVVzCKzbtu6mUIjbVG-z7SAHWV0f8VI,1649290
|
|
3
3
|
alibabacloud_rds20140815/models/__init__.py,sha256=pAsUpaSlUlgcSJMv09C665blId0k0z6JFsCx2gHo1_Q,210400
|
|
4
4
|
alibabacloud_rds20140815/models/_accept_rcinquired_system_event_request.py,sha256=9JXBVt1-R15-kb6w6xg3GfTI2sMbX6mrVdzcxqvEjfk,1185
|
|
@@ -576,7 +576,7 @@ alibabacloud_rds20140815/models/_describe_rcdeployment_sets_response.py,sha256=H
|
|
|
576
576
|
alibabacloud_rds20140815/models/_describe_rcdeployment_sets_response_body.py,sha256=RvpNSUShhDzgfIBBpOJSDk2pqFhD9-WWMmGI94s8pFc,15623
|
|
577
577
|
alibabacloud_rds20140815/models/_describe_rcdisks_request.py,sha256=s6xX8oFxqt5rxP94lIuTH5OEzFd8AGcH1lcay8D2EGM,3764
|
|
578
578
|
alibabacloud_rds20140815/models/_describe_rcdisks_response.py,sha256=uKOGRZsz_JZ6rN9215q-O1DBmVaCPq13Ak1Mazsgi-g,1477
|
|
579
|
-
alibabacloud_rds20140815/models/_describe_rcdisks_response_body.py,sha256=
|
|
579
|
+
alibabacloud_rds20140815/models/_describe_rcdisks_response_body.py,sha256=dZ-FCocNaZKFaJrr83LxAz1nAF5a40Hiu0UZoCceG-Q,14910
|
|
580
580
|
alibabacloud_rds20140815/models/_describe_rcelastic_scaling_request.py,sha256=tP0kn52JGrQNkqTj6rFyhma8ClYUKMQRaNXoYiTR97c,1919
|
|
581
581
|
alibabacloud_rds20140815/models/_describe_rcelastic_scaling_response.py,sha256=UHZDlA4gkf_jzyupub6kN0K2a6pBnFqY-Zz1S5YzZuw,1504
|
|
582
582
|
alibabacloud_rds20140815/models/_describe_rcelastic_scaling_response_body.py,sha256=mNGAHWs3HSifw08AkUqwyKmBxq0Z5YBmyFfNCC4NQfk,3872
|
|
@@ -1182,8 +1182,8 @@ alibabacloud_rds20140815/models/_upgrade_dbinstance_major_version_response_body.
|
|
|
1182
1182
|
alibabacloud_rds20140815/models/_upgrade_dbproxy_instance_kernel_version_request.py,sha256=YKxSyPLnrBfempCKlGsbw8y-lQaoKC9tDuon_zODMK8,4164
|
|
1183
1183
|
alibabacloud_rds20140815/models/_upgrade_dbproxy_instance_kernel_version_response.py,sha256=wCg_jc-Zd2gJH4IdlaFOBHFcotYBMCU9Ay8EGJ9a4dU,1537
|
|
1184
1184
|
alibabacloud_rds20140815/models/_upgrade_dbproxy_instance_kernel_version_response_body.py,sha256=UNvS1pq3eopumK9Sl6ELfb2xECWLlV_5i0n1s5i95L0,1427
|
|
1185
|
-
alibabacloud_rds20140815-14.0.
|
|
1186
|
-
alibabacloud_rds20140815-14.0.
|
|
1187
|
-
alibabacloud_rds20140815-14.0.
|
|
1188
|
-
alibabacloud_rds20140815-14.0.
|
|
1189
|
-
alibabacloud_rds20140815-14.0.
|
|
1185
|
+
alibabacloud_rds20140815-14.0.2.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
1186
|
+
alibabacloud_rds20140815-14.0.2.dist-info/METADATA,sha256=oIQmojee5XJMYuOqEo8t4i3FzgTL7tacsFc5EnKypbE,2290
|
|
1187
|
+
alibabacloud_rds20140815-14.0.2.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
1188
|
+
alibabacloud_rds20140815-14.0.2.dist-info/top_level.txt,sha256=JrnffxBPffQ-kwp8_cVNsbxBsxm7QysAdoFB1xAdY70,25
|
|
1189
|
+
alibabacloud_rds20140815-14.0.2.dist-info/RECORD,,
|
{alibabacloud_rds20140815-14.0.1.dist-info → alibabacloud_rds20140815-14.0.2.dist-info}/LICENSE
RENAMED
|
File without changes
|
{alibabacloud_rds20140815-14.0.1.dist-info → alibabacloud_rds20140815-14.0.2.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|