alibabacloud-rds20140815 11.1.0__tar.gz → 11.1.1__tar.gz
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-11.1.0 → alibabacloud_rds20140815-11.1.1}/ChangeLog.md +14 -0
- {alibabacloud_rds20140815-11.1.0 → alibabacloud_rds20140815-11.1.1}/PKG-INFO +1 -1
- alibabacloud_rds20140815-11.1.1/alibabacloud_rds20140815/__init__.py +1 -0
- {alibabacloud_rds20140815-11.1.0 → alibabacloud_rds20140815-11.1.1}/alibabacloud_rds20140815/models.py +6 -0
- {alibabacloud_rds20140815-11.1.0 → alibabacloud_rds20140815-11.1.1}/alibabacloud_rds20140815.egg-info/PKG-INFO +1 -1
- {alibabacloud_rds20140815-11.1.0 → alibabacloud_rds20140815-11.1.1}/setup.py +1 -1
- alibabacloud_rds20140815-11.1.0/alibabacloud_rds20140815/__init__.py +0 -1
- {alibabacloud_rds20140815-11.1.0 → alibabacloud_rds20140815-11.1.1}/LICENSE +0 -0
- {alibabacloud_rds20140815-11.1.0 → alibabacloud_rds20140815-11.1.1}/MANIFEST.in +0 -0
- {alibabacloud_rds20140815-11.1.0 → alibabacloud_rds20140815-11.1.1}/README-CN.md +0 -0
- {alibabacloud_rds20140815-11.1.0 → alibabacloud_rds20140815-11.1.1}/README.md +0 -0
- {alibabacloud_rds20140815-11.1.0 → alibabacloud_rds20140815-11.1.1}/alibabacloud_rds20140815/client.py +0 -0
- {alibabacloud_rds20140815-11.1.0 → alibabacloud_rds20140815-11.1.1}/alibabacloud_rds20140815.egg-info/SOURCES.txt +0 -0
- {alibabacloud_rds20140815-11.1.0 → alibabacloud_rds20140815-11.1.1}/alibabacloud_rds20140815.egg-info/dependency_links.txt +0 -0
- {alibabacloud_rds20140815-11.1.0 → alibabacloud_rds20140815-11.1.1}/alibabacloud_rds20140815.egg-info/requires.txt +0 -0
- {alibabacloud_rds20140815-11.1.0 → alibabacloud_rds20140815-11.1.1}/alibabacloud_rds20140815.egg-info/top_level.txt +0 -0
- {alibabacloud_rds20140815-11.1.0 → alibabacloud_rds20140815-11.1.1}/setup.cfg +0 -0
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
2025-04-09 Version: 11.1.0
|
|
2
|
+
- Support API DescribeRCInstanceTypeFamilies.
|
|
3
|
+
- Support API DescribeRCInstanceTypes.
|
|
4
|
+
- Support API ModifyRCDiskSpec.
|
|
5
|
+
- Update API DescribeDBInstanceAttribute: add response parameters Body.Items.$.ReadOnlyStatus.
|
|
6
|
+
- Update API DescribeRCInstanceAttribute: add response parameters Body.AutoRenew.
|
|
7
|
+
- Update API DescribeRCInstances: add response parameters Body.RCInstances.$.Cpu.
|
|
8
|
+
- Update API DescribeRCInstances: add response parameters Body.RCInstances.$.DeploymentSetId.
|
|
9
|
+
- Update API DescribeRCInstances: add response parameters Body.RCInstances.$.ExpiredTime.
|
|
10
|
+
- Update API DescribeRCInstances: add response parameters Body.RCInstances.$.ImageId.
|
|
11
|
+
- Update API DescribeRCInstances: add response parameters Body.RCInstances.$.Memory.
|
|
12
|
+
- Update API DescribeRCInstances: add response parameters Body.RCInstances.$.VpcAttributes.
|
|
13
|
+
|
|
14
|
+
|
|
1
15
|
2025-03-26 Version: 11.0.0
|
|
2
16
|
- Support API DescribeRCSecurityGroupList.
|
|
3
17
|
- Support API MigrateDBNodes.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '11.1.1'
|
|
@@ -37701,12 +37701,14 @@ class DescribeDBProxyPerformanceResponseBodyPerformanceKeysPerformanceKey(TeaMod
|
|
|
37701
37701
|
def __init__(
|
|
37702
37702
|
self,
|
|
37703
37703
|
key: str = None,
|
|
37704
|
+
node: str = None,
|
|
37704
37705
|
service: str = None,
|
|
37705
37706
|
value_format: str = None,
|
|
37706
37707
|
values: DescribeDBProxyPerformanceResponseBodyPerformanceKeysPerformanceKeyValues = None,
|
|
37707
37708
|
):
|
|
37708
37709
|
# The performance parameter.
|
|
37709
37710
|
self.key = key
|
|
37711
|
+
self.node = node
|
|
37710
37712
|
# The service dimension.
|
|
37711
37713
|
self.service = service
|
|
37712
37714
|
# The format in which the value of the performance metric is returned.
|
|
@@ -37726,6 +37728,8 @@ class DescribeDBProxyPerformanceResponseBodyPerformanceKeysPerformanceKey(TeaMod
|
|
|
37726
37728
|
result = dict()
|
|
37727
37729
|
if self.key is not None:
|
|
37728
37730
|
result['Key'] = self.key
|
|
37731
|
+
if self.node is not None:
|
|
37732
|
+
result['Node'] = self.node
|
|
37729
37733
|
if self.service is not None:
|
|
37730
37734
|
result['Service'] = self.service
|
|
37731
37735
|
if self.value_format is not None:
|
|
@@ -37738,6 +37742,8 @@ class DescribeDBProxyPerformanceResponseBodyPerformanceKeysPerformanceKey(TeaMod
|
|
|
37738
37742
|
m = m or dict()
|
|
37739
37743
|
if m.get('Key') is not None:
|
|
37740
37744
|
self.key = m.get('Key')
|
|
37745
|
+
if m.get('Node') is not None:
|
|
37746
|
+
self.node = m.get('Node')
|
|
37741
37747
|
if m.get('Service') is not None:
|
|
37742
37748
|
self.service = m.get('Service')
|
|
37743
37749
|
if m.get('ValueFormat') is not None:
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = '11.1.0'
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|