alibabacloud-polardb20170801 6.1.2__tar.gz → 6.1.3__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_polardb20170801-6.1.2 → alibabacloud_polardb20170801-6.1.3}/ChangeLog.md +5 -0
- {alibabacloud_polardb20170801-6.1.2 → alibabacloud_polardb20170801-6.1.3}/PKG-INFO +1 -1
- alibabacloud_polardb20170801-6.1.3/alibabacloud_polardb20170801/__init__.py +1 -0
- {alibabacloud_polardb20170801-6.1.2 → alibabacloud_polardb20170801-6.1.3}/alibabacloud_polardb20170801/models.py +6 -0
- {alibabacloud_polardb20170801-6.1.2 → alibabacloud_polardb20170801-6.1.3}/alibabacloud_polardb20170801.egg-info/PKG-INFO +1 -1
- {alibabacloud_polardb20170801-6.1.2 → alibabacloud_polardb20170801-6.1.3}/setup.py +1 -1
- alibabacloud_polardb20170801-6.1.2/alibabacloud_polardb20170801/__init__.py +0 -1
- {alibabacloud_polardb20170801-6.1.2 → alibabacloud_polardb20170801-6.1.3}/LICENSE +0 -0
- {alibabacloud_polardb20170801-6.1.2 → alibabacloud_polardb20170801-6.1.3}/MANIFEST.in +0 -0
- {alibabacloud_polardb20170801-6.1.2 → alibabacloud_polardb20170801-6.1.3}/README-CN.md +0 -0
- {alibabacloud_polardb20170801-6.1.2 → alibabacloud_polardb20170801-6.1.3}/README.md +0 -0
- {alibabacloud_polardb20170801-6.1.2 → alibabacloud_polardb20170801-6.1.3}/alibabacloud_polardb20170801/client.py +0 -0
- {alibabacloud_polardb20170801-6.1.2 → alibabacloud_polardb20170801-6.1.3}/alibabacloud_polardb20170801.egg-info/SOURCES.txt +0 -0
- {alibabacloud_polardb20170801-6.1.2 → alibabacloud_polardb20170801-6.1.3}/alibabacloud_polardb20170801.egg-info/dependency_links.txt +0 -0
- {alibabacloud_polardb20170801-6.1.2 → alibabacloud_polardb20170801-6.1.3}/alibabacloud_polardb20170801.egg-info/requires.txt +0 -0
- {alibabacloud_polardb20170801-6.1.2 → alibabacloud_polardb20170801-6.1.3}/alibabacloud_polardb20170801.egg-info/top_level.txt +0 -0
- {alibabacloud_polardb20170801-6.1.2 → alibabacloud_polardb20170801-6.1.3}/setup.cfg +0 -0
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
2025-10-30 Version: 6.1.2
|
|
2
|
+
- Update API DescribeMetaList: add response parameters Body.Items.$.Size.
|
|
3
|
+
- Update API ModifyLogBackupPolicy: add request parameters AdvancedLogPolicies.
|
|
4
|
+
|
|
5
|
+
|
|
1
6
|
2025-10-29 Version: 6.1.1
|
|
2
7
|
- Update API DescribeAIDBClusterAttribute: add response parameters Body.DBNodes.$.PublicIp.
|
|
3
8
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '6.1.3'
|
|
@@ -43669,6 +43669,7 @@ class DescribeSlowLogsResponseBodyItemsSQLSlowLog(TeaModel):
|
|
|
43669
43669
|
dbname: str = None,
|
|
43670
43670
|
dbnode_id: str = None,
|
|
43671
43671
|
max_execution_time: int = None,
|
|
43672
|
+
max_execution_time_ms: str = None,
|
|
43672
43673
|
max_lock_time: int = None,
|
|
43673
43674
|
parse_max_row_count: int = None,
|
|
43674
43675
|
parse_total_row_counts: int = None,
|
|
@@ -43688,6 +43689,7 @@ class DescribeSlowLogsResponseBodyItemsSQLSlowLog(TeaModel):
|
|
|
43688
43689
|
self.dbnode_id = dbnode_id
|
|
43689
43690
|
# The longest execution duration of a specific SQL statement in the query. Unit: seconds.
|
|
43690
43691
|
self.max_execution_time = max_execution_time
|
|
43692
|
+
self.max_execution_time_ms = max_execution_time_ms
|
|
43691
43693
|
# The longest lock duration that was caused by a specific SQL statement in the query. Unit: seconds.
|
|
43692
43694
|
self.max_lock_time = max_lock_time
|
|
43693
43695
|
# The largest number of rows that were parsed by a specific SQL statement in the query.
|
|
@@ -43726,6 +43728,8 @@ class DescribeSlowLogsResponseBodyItemsSQLSlowLog(TeaModel):
|
|
|
43726
43728
|
result['DBNodeId'] = self.dbnode_id
|
|
43727
43729
|
if self.max_execution_time is not None:
|
|
43728
43730
|
result['MaxExecutionTime'] = self.max_execution_time
|
|
43731
|
+
if self.max_execution_time_ms is not None:
|
|
43732
|
+
result['MaxExecutionTimeMs'] = self.max_execution_time_ms
|
|
43729
43733
|
if self.max_lock_time is not None:
|
|
43730
43734
|
result['MaxLockTime'] = self.max_lock_time
|
|
43731
43735
|
if self.parse_max_row_count is not None:
|
|
@@ -43758,6 +43762,8 @@ class DescribeSlowLogsResponseBodyItemsSQLSlowLog(TeaModel):
|
|
|
43758
43762
|
self.dbnode_id = m.get('DBNodeId')
|
|
43759
43763
|
if m.get('MaxExecutionTime') is not None:
|
|
43760
43764
|
self.max_execution_time = m.get('MaxExecutionTime')
|
|
43765
|
+
if m.get('MaxExecutionTimeMs') is not None:
|
|
43766
|
+
self.max_execution_time_ms = m.get('MaxExecutionTimeMs')
|
|
43761
43767
|
if m.get('MaxLockTime') is not None:
|
|
43762
43768
|
self.max_lock_time = m.get('MaxLockTime')
|
|
43763
43769
|
if m.get('ParseMaxRowCount') is not None:
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = '6.1.2'
|
|
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
|