alibabacloud-rds20140815 9.0.0__py3-none-any.whl → 9.1.0__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/client.py +4 -0
- alibabacloud_rds20140815/models.py +36 -0
- {alibabacloud_rds20140815-9.0.0.dist-info → alibabacloud_rds20140815-9.1.0.dist-info}/METADATA +1 -1
- alibabacloud_rds20140815-9.1.0.dist-info/RECORD +8 -0
- alibabacloud_rds20140815-9.0.0.dist-info/RECORD +0 -8
- {alibabacloud_rds20140815-9.0.0.dist-info → alibabacloud_rds20140815-9.1.0.dist-info}/LICENSE +0 -0
- {alibabacloud_rds20140815-9.0.0.dist-info → alibabacloud_rds20140815-9.1.0.dist-info}/WHEEL +0 -0
- {alibabacloud_rds20140815-9.0.0.dist-info → alibabacloud_rds20140815-9.1.0.dist-info}/top_level.txt +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '9.
|
|
1
|
+
__version__ = '9.1.0'
|
|
@@ -37964,6 +37964,8 @@ class Client(OpenApiClient):
|
|
|
37964
37964
|
query['Category'] = request.category
|
|
37965
37965
|
if not UtilClient.is_unset(request.cold_data_enabled):
|
|
37966
37966
|
query['ColdDataEnabled'] = request.cold_data_enabled
|
|
37967
|
+
if not UtilClient.is_unset(request.compression_mode):
|
|
37968
|
+
query['CompressionMode'] = request.compression_mode
|
|
37967
37969
|
if not UtilClient.is_unset(request.dbinstance_class):
|
|
37968
37970
|
query['DBInstanceClass'] = request.dbinstance_class
|
|
37969
37971
|
if not UtilClient.is_unset(request.dbinstance_id):
|
|
@@ -38075,6 +38077,8 @@ class Client(OpenApiClient):
|
|
|
38075
38077
|
query['Category'] = request.category
|
|
38076
38078
|
if not UtilClient.is_unset(request.cold_data_enabled):
|
|
38077
38079
|
query['ColdDataEnabled'] = request.cold_data_enabled
|
|
38080
|
+
if not UtilClient.is_unset(request.compression_mode):
|
|
38081
|
+
query['CompressionMode'] = request.compression_mode
|
|
38078
38082
|
if not UtilClient.is_unset(request.dbinstance_class):
|
|
38079
38083
|
query['DBInstanceClass'] = request.dbinstance_class
|
|
38080
38084
|
if not UtilClient.is_unset(request.dbinstance_id):
|
|
@@ -26020,6 +26020,8 @@ class DescribeDBInstanceAttributeResponseBodyItemsDBInstanceAttribute(TeaModel):
|
|
|
26020
26020
|
category: str = None,
|
|
26021
26021
|
cold_data_enabled: bool = None,
|
|
26022
26022
|
collation: str = None,
|
|
26023
|
+
compression_mode: str = None,
|
|
26024
|
+
compression_ratio: str = None,
|
|
26023
26025
|
connection_mode: str = None,
|
|
26024
26026
|
connection_string: str = None,
|
|
26025
26027
|
console_version: str = None,
|
|
@@ -26078,6 +26080,7 @@ class DescribeDBInstanceAttributeResponseBodyItemsDBInstanceAttribute(TeaModel):
|
|
|
26078
26080
|
serverless_config: DescribeDBInstanceAttributeResponseBodyItemsDBInstanceAttributeServerlessConfig = None,
|
|
26079
26081
|
slave_zones: DescribeDBInstanceAttributeResponseBodyItemsDBInstanceAttributeSlaveZones = None,
|
|
26080
26082
|
super_permission_mode: str = None,
|
|
26083
|
+
support_compression: bool = None,
|
|
26081
26084
|
temp_dbinstance_id: str = None,
|
|
26082
26085
|
temp_upgrade_time_end: str = None,
|
|
26083
26086
|
temp_upgrade_time_start: str = None,
|
|
@@ -26129,6 +26132,8 @@ class DescribeDBInstanceAttributeResponseBodyItemsDBInstanceAttribute(TeaModel):
|
|
|
26129
26132
|
self.cold_data_enabled = cold_data_enabled
|
|
26130
26133
|
# The character set collation of the instance.
|
|
26131
26134
|
self.collation = collation
|
|
26135
|
+
self.compression_mode = compression_mode
|
|
26136
|
+
self.compression_ratio = compression_ratio
|
|
26132
26137
|
# The connection mode of the instance. Valid values:
|
|
26133
26138
|
#
|
|
26134
26139
|
# * **Standard**: standard mode
|
|
@@ -26316,6 +26321,7 @@ class DescribeDBInstanceAttributeResponseBodyItemsDBInstanceAttribute(TeaModel):
|
|
|
26316
26321
|
# * **Enable**\
|
|
26317
26322
|
# * **Disabled**\
|
|
26318
26323
|
self.super_permission_mode = super_permission_mode
|
|
26324
|
+
self.support_compression = support_compression
|
|
26319
26325
|
# The ID of the temporary instance that is attached to the primary instance.
|
|
26320
26326
|
self.temp_dbinstance_id = temp_dbinstance_id
|
|
26321
26327
|
# The end time of the temporary upgrade of the instance.
|
|
@@ -26388,6 +26394,10 @@ class DescribeDBInstanceAttributeResponseBodyItemsDBInstanceAttribute(TeaModel):
|
|
|
26388
26394
|
result['ColdDataEnabled'] = self.cold_data_enabled
|
|
26389
26395
|
if self.collation is not None:
|
|
26390
26396
|
result['Collation'] = self.collation
|
|
26397
|
+
if self.compression_mode is not None:
|
|
26398
|
+
result['CompressionMode'] = self.compression_mode
|
|
26399
|
+
if self.compression_ratio is not None:
|
|
26400
|
+
result['CompressionRatio'] = self.compression_ratio
|
|
26391
26401
|
if self.connection_mode is not None:
|
|
26392
26402
|
result['ConnectionMode'] = self.connection_mode
|
|
26393
26403
|
if self.connection_string is not None:
|
|
@@ -26504,6 +26514,8 @@ class DescribeDBInstanceAttributeResponseBodyItemsDBInstanceAttribute(TeaModel):
|
|
|
26504
26514
|
result['SlaveZones'] = self.slave_zones.to_map()
|
|
26505
26515
|
if self.super_permission_mode is not None:
|
|
26506
26516
|
result['SuperPermissionMode'] = self.super_permission_mode
|
|
26517
|
+
if self.support_compression is not None:
|
|
26518
|
+
result['SupportCompression'] = self.support_compression
|
|
26507
26519
|
if self.temp_dbinstance_id is not None:
|
|
26508
26520
|
result['TempDBInstanceId'] = self.temp_dbinstance_id
|
|
26509
26521
|
if self.temp_upgrade_time_end is not None:
|
|
@@ -26553,6 +26565,10 @@ class DescribeDBInstanceAttributeResponseBodyItemsDBInstanceAttribute(TeaModel):
|
|
|
26553
26565
|
self.cold_data_enabled = m.get('ColdDataEnabled')
|
|
26554
26566
|
if m.get('Collation') is not None:
|
|
26555
26567
|
self.collation = m.get('Collation')
|
|
26568
|
+
if m.get('CompressionMode') is not None:
|
|
26569
|
+
self.compression_mode = m.get('CompressionMode')
|
|
26570
|
+
if m.get('CompressionRatio') is not None:
|
|
26571
|
+
self.compression_ratio = m.get('CompressionRatio')
|
|
26556
26572
|
if m.get('ConnectionMode') is not None:
|
|
26557
26573
|
self.connection_mode = m.get('ConnectionMode')
|
|
26558
26574
|
if m.get('ConnectionString') is not None:
|
|
@@ -26674,6 +26690,8 @@ class DescribeDBInstanceAttributeResponseBodyItemsDBInstanceAttribute(TeaModel):
|
|
|
26674
26690
|
self.slave_zones = temp_model.from_map(m['SlaveZones'])
|
|
26675
26691
|
if m.get('SuperPermissionMode') is not None:
|
|
26676
26692
|
self.super_permission_mode = m.get('SuperPermissionMode')
|
|
26693
|
+
if m.get('SupportCompression') is not None:
|
|
26694
|
+
self.support_compression = m.get('SupportCompression')
|
|
26677
26695
|
if m.get('TempDBInstanceId') is not None:
|
|
26678
26696
|
self.temp_dbinstance_id = m.get('TempDBInstanceId')
|
|
26679
26697
|
if m.get('TempUpgradeTimeEnd') is not None:
|
|
@@ -69685,6 +69703,7 @@ class ModifyDBInstanceSpecRequest(TeaModel):
|
|
|
69685
69703
|
bursting_enabled: bool = None,
|
|
69686
69704
|
category: str = None,
|
|
69687
69705
|
cold_data_enabled: bool = None,
|
|
69706
|
+
compression_mode: str = None,
|
|
69688
69707
|
dbinstance_class: str = None,
|
|
69689
69708
|
dbinstance_id: str = None,
|
|
69690
69709
|
dbinstance_storage: int = None,
|
|
@@ -69747,6 +69766,7 @@ class ModifyDBInstanceSpecRequest(TeaModel):
|
|
|
69747
69766
|
self.category = category
|
|
69748
69767
|
# A reserved parameter.
|
|
69749
69768
|
self.cold_data_enabled = cold_data_enabled
|
|
69769
|
+
self.compression_mode = compression_mode
|
|
69750
69770
|
# The new instance type of the instance. For more information, see [Primary ApsaraDB RDS instance types](https://help.aliyun.com/document_detail/26312.html). You can also call the DescribeAvailableClasses operation to query the instance types that are supported by an instance.
|
|
69751
69771
|
#
|
|
69752
69772
|
# > * You must specify at least one of DBInstanceClass and **DBInstanceStorage**.
|
|
@@ -69889,6 +69909,8 @@ class ModifyDBInstanceSpecRequest(TeaModel):
|
|
|
69889
69909
|
result['Category'] = self.category
|
|
69890
69910
|
if self.cold_data_enabled is not None:
|
|
69891
69911
|
result['ColdDataEnabled'] = self.cold_data_enabled
|
|
69912
|
+
if self.compression_mode is not None:
|
|
69913
|
+
result['CompressionMode'] = self.compression_mode
|
|
69892
69914
|
if self.dbinstance_class is not None:
|
|
69893
69915
|
result['DBInstanceClass'] = self.dbinstance_class
|
|
69894
69916
|
if self.dbinstance_id is not None:
|
|
@@ -69955,6 +69977,8 @@ class ModifyDBInstanceSpecRequest(TeaModel):
|
|
|
69955
69977
|
self.category = m.get('Category')
|
|
69956
69978
|
if m.get('ColdDataEnabled') is not None:
|
|
69957
69979
|
self.cold_data_enabled = m.get('ColdDataEnabled')
|
|
69980
|
+
if m.get('CompressionMode') is not None:
|
|
69981
|
+
self.compression_mode = m.get('CompressionMode')
|
|
69958
69982
|
if m.get('DBInstanceClass') is not None:
|
|
69959
69983
|
self.dbinstance_class = m.get('DBInstanceClass')
|
|
69960
69984
|
if m.get('DBInstanceId') is not None:
|
|
@@ -70019,6 +70043,7 @@ class ModifyDBInstanceSpecShrinkRequest(TeaModel):
|
|
|
70019
70043
|
bursting_enabled: bool = None,
|
|
70020
70044
|
category: str = None,
|
|
70021
70045
|
cold_data_enabled: bool = None,
|
|
70046
|
+
compression_mode: str = None,
|
|
70022
70047
|
dbinstance_class: str = None,
|
|
70023
70048
|
dbinstance_id: str = None,
|
|
70024
70049
|
dbinstance_storage: int = None,
|
|
@@ -70081,6 +70106,7 @@ class ModifyDBInstanceSpecShrinkRequest(TeaModel):
|
|
|
70081
70106
|
self.category = category
|
|
70082
70107
|
# A reserved parameter.
|
|
70083
70108
|
self.cold_data_enabled = cold_data_enabled
|
|
70109
|
+
self.compression_mode = compression_mode
|
|
70084
70110
|
# The new instance type of the instance. For more information, see [Primary ApsaraDB RDS instance types](https://help.aliyun.com/document_detail/26312.html). You can also call the DescribeAvailableClasses operation to query the instance types that are supported by an instance.
|
|
70085
70111
|
#
|
|
70086
70112
|
# > * You must specify at least one of DBInstanceClass and **DBInstanceStorage**.
|
|
@@ -70222,6 +70248,8 @@ class ModifyDBInstanceSpecShrinkRequest(TeaModel):
|
|
|
70222
70248
|
result['Category'] = self.category
|
|
70223
70249
|
if self.cold_data_enabled is not None:
|
|
70224
70250
|
result['ColdDataEnabled'] = self.cold_data_enabled
|
|
70251
|
+
if self.compression_mode is not None:
|
|
70252
|
+
result['CompressionMode'] = self.compression_mode
|
|
70225
70253
|
if self.dbinstance_class is not None:
|
|
70226
70254
|
result['DBInstanceClass'] = self.dbinstance_class
|
|
70227
70255
|
if self.dbinstance_id is not None:
|
|
@@ -70288,6 +70316,8 @@ class ModifyDBInstanceSpecShrinkRequest(TeaModel):
|
|
|
70288
70316
|
self.category = m.get('Category')
|
|
70289
70317
|
if m.get('ColdDataEnabled') is not None:
|
|
70290
70318
|
self.cold_data_enabled = m.get('ColdDataEnabled')
|
|
70319
|
+
if m.get('CompressionMode') is not None:
|
|
70320
|
+
self.compression_mode = m.get('CompressionMode')
|
|
70291
70321
|
if m.get('DBInstanceClass') is not None:
|
|
70292
70322
|
self.dbinstance_class = m.get('DBInstanceClass')
|
|
70293
70323
|
if m.get('DBInstanceId') is not None:
|
|
@@ -81207,10 +81237,12 @@ class RunRCInstancesRequestSystemDisk(TeaModel):
|
|
|
81207
81237
|
def __init__(
|
|
81208
81238
|
self,
|
|
81209
81239
|
category: str = None,
|
|
81240
|
+
performance_level: str = None,
|
|
81210
81241
|
size: int = None,
|
|
81211
81242
|
):
|
|
81212
81243
|
# The type of the system disk. Set the value to **cloud_essd**, which indicates ESSDs.
|
|
81213
81244
|
self.category = category
|
|
81245
|
+
self.performance_level = performance_level
|
|
81214
81246
|
# The size of the system disk. Unit: GiB. Only performance level 1 (PL1) ESSDs are supported. Valid values: 20 to 2048.
|
|
81215
81247
|
self.size = size
|
|
81216
81248
|
|
|
@@ -81225,6 +81257,8 @@ class RunRCInstancesRequestSystemDisk(TeaModel):
|
|
|
81225
81257
|
result = dict()
|
|
81226
81258
|
if self.category is not None:
|
|
81227
81259
|
result['Category'] = self.category
|
|
81260
|
+
if self.performance_level is not None:
|
|
81261
|
+
result['PerformanceLevel'] = self.performance_level
|
|
81228
81262
|
if self.size is not None:
|
|
81229
81263
|
result['Size'] = self.size
|
|
81230
81264
|
return result
|
|
@@ -81233,6 +81267,8 @@ class RunRCInstancesRequestSystemDisk(TeaModel):
|
|
|
81233
81267
|
m = m or dict()
|
|
81234
81268
|
if m.get('Category') is not None:
|
|
81235
81269
|
self.category = m.get('Category')
|
|
81270
|
+
if m.get('PerformanceLevel') is not None:
|
|
81271
|
+
self.performance_level = m.get('PerformanceLevel')
|
|
81236
81272
|
if m.get('Size') is not None:
|
|
81237
81273
|
self.size = m.get('Size')
|
|
81238
81274
|
return self
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
alibabacloud_rds20140815/__init__.py,sha256=a6KlLFCsq3WzlLy_NZINl5x83YXP1SB-_GpUeM0x0wQ,21
|
|
2
|
+
alibabacloud_rds20140815/client.py,sha256=9ceKvPlkgL7j07jbGX2rK6gCfxi4cmpmx_-fmUWvGUQ,2369717
|
|
3
|
+
alibabacloud_rds20140815/models.py,sha256=8S7xYUa6qhjxpYkrgL7z9j0iE_vI7FQW_T9EWtaN0Jg,3372723
|
|
4
|
+
alibabacloud_rds20140815-9.1.0.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
+
alibabacloud_rds20140815-9.1.0.dist-info/METADATA,sha256=rlu3QD5hyBWIAiAUg22SL-6srJ4uXlaCYoAOTiNTz7Q,2312
|
|
6
|
+
alibabacloud_rds20140815-9.1.0.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
7
|
+
alibabacloud_rds20140815-9.1.0.dist-info/top_level.txt,sha256=JrnffxBPffQ-kwp8_cVNsbxBsxm7QysAdoFB1xAdY70,25
|
|
8
|
+
alibabacloud_rds20140815-9.1.0.dist-info/RECORD,,
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
alibabacloud_rds20140815/__init__.py,sha256=apdoX-3g0-nqnB7IIVxnEop3ksR9ccEPZ_5NSDe7icE,21
|
|
2
|
-
alibabacloud_rds20140815/client.py,sha256=JvXoton1v2PPgMctTRATRnTkqabn6lHyeNSyL8OJDCY,2369465
|
|
3
|
-
alibabacloud_rds20140815/models.py,sha256=2Xyeml1aRCmIVQdf_Dg6z-md-ze6RUG_8Raju6V5Mp4,3370847
|
|
4
|
-
alibabacloud_rds20140815-9.0.0.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
-
alibabacloud_rds20140815-9.0.0.dist-info/METADATA,sha256=-AvNmHnnHZDQWj0AprbeMA8SaGlfqbOgWuNMFwmJYTg,2312
|
|
6
|
-
alibabacloud_rds20140815-9.0.0.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
7
|
-
alibabacloud_rds20140815-9.0.0.dist-info/top_level.txt,sha256=JrnffxBPffQ-kwp8_cVNsbxBsxm7QysAdoFB1xAdY70,25
|
|
8
|
-
alibabacloud_rds20140815-9.0.0.dist-info/RECORD,,
|
{alibabacloud_rds20140815-9.0.0.dist-info → alibabacloud_rds20140815-9.1.0.dist-info}/LICENSE
RENAMED
|
File without changes
|
|
File without changes
|
{alibabacloud_rds20140815-9.0.0.dist-info → alibabacloud_rds20140815-9.1.0.dist-info}/top_level.txt
RENAMED
|
File without changes
|