Skip to content

Commit 805078d

Browse files
committed
Update API DescribeApplications: add response parameters Body.Items.$.DBClusterId.
1 parent 9a3d816 commit 805078d

File tree

5 files changed

+13
-6
lines changed

5 files changed

+13
-6
lines changed

polardb-20170801/ChangeLog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2025-11-27 Version: 6.1.8
2+
- Update API DescribeApplications: add response parameters Body.Items.$.DBClusterId.
3+
4+
15
2025-11-26 Version: 6.1.7
26
- Update API DescribeExtensions: add request parameters ExtensionName.
37

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '6.1.7'
1+
__version__ = '6.1.8'

polardb-20170801/alibabacloud_polardb20170801/client.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,9 @@ def __init__(
2929
'cn-hangzhou': 'polardb.aliyuncs.com',
3030
'cn-shanghai': 'polardb.aliyuncs.com',
3131
'cn-shenzhen': 'polardb.aliyuncs.com',
32-
'cn-guangzhou': 'polardb.aliyuncs.com',
33-
'cn-hongkong': 'polardb.aliyuncs.com',
32+
'cn-heyuan': 'polardb.aliyuncs.com',
3433
'cn-hangzhou-finance': 'polardb.aliyuncs.com',
3534
'cn-shanghai-finance-1': 'polardb.aliyuncs.com',
36-
'cn-shenzhen-finance-1': 'polardb.aliyuncs.com',
37-
'cn-north-2-gov-1': 'polardb.aliyuncs.com',
3835
'ap-northeast-2-pop': 'polardb.aliyuncs.com',
3936
'cn-beijing-finance-1': 'polardb.aliyuncs.com',
4037
'cn-beijing-finance-pop': 'polardb.aliyuncs.com',

polardb-20170801/alibabacloud_polardb20170801/models.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16755,6 +16755,7 @@ def __init__(
1675516755
application_id: str = None,
1675616756
application_type: str = None,
1675716757
creation_time: str = None,
16758+
dbcluster_id: str = None,
1675816759
description: str = None,
1675916760
endpoints: DescribeApplicationsResponseBodyItemsApplicationsEndpoints = None,
1676016761
engine_version: str = None,
@@ -16769,6 +16770,7 @@ def __init__(
1676916770
self.application_id = application_id
1677016771
self.application_type = application_type
1677116772
self.creation_time = creation_time
16773+
self.dbcluster_id = dbcluster_id
1677216774
self.description = description
1677316775
self.endpoints = endpoints
1677416776
self.engine_version = engine_version
@@ -16796,6 +16798,8 @@ def to_map(self):
1679616798
result['ApplicationType'] = self.application_type
1679716799
if self.creation_time is not None:
1679816800
result['CreationTime'] = self.creation_time
16801+
if self.dbcluster_id is not None:
16802+
result['DBClusterId'] = self.dbcluster_id
1679916803
if self.description is not None:
1680016804
result['Description'] = self.description
1680116805
if self.endpoints is not None:
@@ -16826,6 +16830,8 @@ def from_map(self, m: dict = None):
1682616830
self.application_type = m.get('ApplicationType')
1682716831
if m.get('CreationTime') is not None:
1682816832
self.creation_time = m.get('CreationTime')
16833+
if m.get('DBClusterId') is not None:
16834+
self.dbcluster_id = m.get('DBClusterId')
1682916835
if m.get('Description') is not None:
1683016836
self.description = m.get('Description')
1683116837
if m.get('Endpoints') is not None:

polardb-20170801/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"""
2525
setup module for alibabacloud_polardb20170801.
2626
27-
Created on 26/11/2025
27+
Created on 27/11/2025
2828
2929
@author: Alibaba Cloud SDK
3030
"""

0 commit comments

Comments
 (0)