alibabacloud-polardb20170801 6.1.6__tar.gz → 6.1.8__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.6 → alibabacloud_polardb20170801-6.1.8}/ChangeLog.md +11 -0
- {alibabacloud_polardb20170801-6.1.6 → alibabacloud_polardb20170801-6.1.8}/PKG-INFO +1 -1
- alibabacloud_polardb20170801-6.1.8/alibabacloud_polardb20170801/__init__.py +1 -0
- {alibabacloud_polardb20170801-6.1.6 → alibabacloud_polardb20170801-6.1.8}/alibabacloud_polardb20170801/client.py +5 -4
- {alibabacloud_polardb20170801-6.1.6 → alibabacloud_polardb20170801-6.1.8}/alibabacloud_polardb20170801/models.py +12 -0
- {alibabacloud_polardb20170801-6.1.6 → alibabacloud_polardb20170801-6.1.8}/alibabacloud_polardb20170801.egg-info/PKG-INFO +1 -1
- {alibabacloud_polardb20170801-6.1.6 → alibabacloud_polardb20170801-6.1.8}/setup.py +1 -1
- alibabacloud_polardb20170801-6.1.6/alibabacloud_polardb20170801/__init__.py +0 -1
- {alibabacloud_polardb20170801-6.1.6 → alibabacloud_polardb20170801-6.1.8}/LICENSE +0 -0
- {alibabacloud_polardb20170801-6.1.6 → alibabacloud_polardb20170801-6.1.8}/MANIFEST.in +0 -0
- {alibabacloud_polardb20170801-6.1.6 → alibabacloud_polardb20170801-6.1.8}/README-CN.md +0 -0
- {alibabacloud_polardb20170801-6.1.6 → alibabacloud_polardb20170801-6.1.8}/README.md +0 -0
- {alibabacloud_polardb20170801-6.1.6 → alibabacloud_polardb20170801-6.1.8}/alibabacloud_polardb20170801.egg-info/SOURCES.txt +0 -0
- {alibabacloud_polardb20170801-6.1.6 → alibabacloud_polardb20170801-6.1.8}/alibabacloud_polardb20170801.egg-info/dependency_links.txt +0 -0
- {alibabacloud_polardb20170801-6.1.6 → alibabacloud_polardb20170801-6.1.8}/alibabacloud_polardb20170801.egg-info/requires.txt +0 -0
- {alibabacloud_polardb20170801-6.1.6 → alibabacloud_polardb20170801-6.1.8}/alibabacloud_polardb20170801.egg-info/top_level.txt +0 -0
- {alibabacloud_polardb20170801-6.1.6 → alibabacloud_polardb20170801-6.1.8}/setup.cfg +0 -0
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
2025-11-26 Version: 6.1.7
|
|
2
|
+
- Update API DescribeExtensions: add request parameters ExtensionName.
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
2025-11-25 Version: 6.1.6
|
|
6
|
+
- Update API DescribeAIDBClusterAttribute: add response parameters Body.KVCacheInstanceId.
|
|
7
|
+
- Update API DescribePolarFsAttribute: add response parameters Body.BucketId.
|
|
8
|
+
- Update API DescribePolarFsAttribute: add response parameters Body.FileSystemId.
|
|
9
|
+
- Update API DescribePolarFsAttribute: add response parameters Body.RelativePfsClusterId.
|
|
10
|
+
|
|
11
|
+
|
|
1
12
|
2025-11-14 Version: 6.1.5
|
|
2
13
|
- Update API DescribeApplicationAttribute: add response parameters Body.Endpoints.$.PortDescription.
|
|
3
14
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '6.1.8'
|
|
@@ -29,12 +29,9 @@ class Client(OpenApiClient):
|
|
|
29
29
|
'cn-hangzhou': 'polardb.aliyuncs.com',
|
|
30
30
|
'cn-shanghai': 'polardb.aliyuncs.com',
|
|
31
31
|
'cn-shenzhen': 'polardb.aliyuncs.com',
|
|
32
|
-
'cn-
|
|
33
|
-
'cn-hongkong': 'polardb.aliyuncs.com',
|
|
32
|
+
'cn-heyuan': 'polardb.aliyuncs.com',
|
|
34
33
|
'cn-hangzhou-finance': 'polardb.aliyuncs.com',
|
|
35
34
|
'cn-shanghai-finance-1': 'polardb.aliyuncs.com',
|
|
36
|
-
'cn-shenzhen-finance-1': 'polardb.aliyuncs.com',
|
|
37
|
-
'cn-north-2-gov-1': 'polardb.aliyuncs.com',
|
|
38
35
|
'ap-northeast-2-pop': 'polardb.aliyuncs.com',
|
|
39
36
|
'cn-beijing-finance-1': 'polardb.aliyuncs.com',
|
|
40
37
|
'cn-beijing-finance-pop': 'polardb.aliyuncs.com',
|
|
@@ -17145,6 +17142,8 @@ class Client(OpenApiClient):
|
|
|
17145
17142
|
query['DBClusterId'] = request.dbcluster_id
|
|
17146
17143
|
if not UtilClient.is_unset(request.dbname):
|
|
17147
17144
|
query['DBName'] = request.dbname
|
|
17145
|
+
if not UtilClient.is_unset(request.extension_name):
|
|
17146
|
+
query['ExtensionName'] = request.extension_name
|
|
17148
17147
|
if not UtilClient.is_unset(request.owner_account):
|
|
17149
17148
|
query['OwnerAccount'] = request.owner_account
|
|
17150
17149
|
if not UtilClient.is_unset(request.owner_id):
|
|
@@ -17190,6 +17189,8 @@ class Client(OpenApiClient):
|
|
|
17190
17189
|
query['DBClusterId'] = request.dbcluster_id
|
|
17191
17190
|
if not UtilClient.is_unset(request.dbname):
|
|
17192
17191
|
query['DBName'] = request.dbname
|
|
17192
|
+
if not UtilClient.is_unset(request.extension_name):
|
|
17193
|
+
query['ExtensionName'] = request.extension_name
|
|
17193
17194
|
if not UtilClient.is_unset(request.owner_account):
|
|
17194
17195
|
query['OwnerAccount'] = request.owner_account
|
|
17195
17196
|
if not UtilClient.is_unset(request.owner_id):
|
|
@@ -16755,6 +16755,7 @@ class DescribeApplicationsResponseBodyItemsApplications(TeaModel):
|
|
|
16755
16755
|
application_id: str = None,
|
|
16756
16756
|
application_type: str = None,
|
|
16757
16757
|
creation_time: str = None,
|
|
16758
|
+
dbcluster_id: str = None,
|
|
16758
16759
|
description: str = None,
|
|
16759
16760
|
endpoints: DescribeApplicationsResponseBodyItemsApplicationsEndpoints = None,
|
|
16760
16761
|
engine_version: str = None,
|
|
@@ -16769,6 +16770,7 @@ class DescribeApplicationsResponseBodyItemsApplications(TeaModel):
|
|
|
16769
16770
|
self.application_id = application_id
|
|
16770
16771
|
self.application_type = application_type
|
|
16771
16772
|
self.creation_time = creation_time
|
|
16773
|
+
self.dbcluster_id = dbcluster_id
|
|
16772
16774
|
self.description = description
|
|
16773
16775
|
self.endpoints = endpoints
|
|
16774
16776
|
self.engine_version = engine_version
|
|
@@ -16796,6 +16798,8 @@ class DescribeApplicationsResponseBodyItemsApplications(TeaModel):
|
|
|
16796
16798
|
result['ApplicationType'] = self.application_type
|
|
16797
16799
|
if self.creation_time is not None:
|
|
16798
16800
|
result['CreationTime'] = self.creation_time
|
|
16801
|
+
if self.dbcluster_id is not None:
|
|
16802
|
+
result['DBClusterId'] = self.dbcluster_id
|
|
16799
16803
|
if self.description is not None:
|
|
16800
16804
|
result['Description'] = self.description
|
|
16801
16805
|
if self.endpoints is not None:
|
|
@@ -16826,6 +16830,8 @@ class DescribeApplicationsResponseBodyItemsApplications(TeaModel):
|
|
|
16826
16830
|
self.application_type = m.get('ApplicationType')
|
|
16827
16831
|
if m.get('CreationTime') is not None:
|
|
16828
16832
|
self.creation_time = m.get('CreationTime')
|
|
16833
|
+
if m.get('DBClusterId') is not None:
|
|
16834
|
+
self.dbcluster_id = m.get('DBClusterId')
|
|
16829
16835
|
if m.get('Description') is not None:
|
|
16830
16836
|
self.description = m.get('Description')
|
|
16831
16837
|
if m.get('Endpoints') is not None:
|
|
@@ -34254,6 +34260,7 @@ class DescribeExtensionsRequest(TeaModel):
|
|
|
34254
34260
|
self,
|
|
34255
34261
|
dbcluster_id: str = None,
|
|
34256
34262
|
dbname: str = None,
|
|
34263
|
+
extension_name: str = None,
|
|
34257
34264
|
owner_account: str = None,
|
|
34258
34265
|
owner_id: int = None,
|
|
34259
34266
|
resource_owner_account: str = None,
|
|
@@ -34263,6 +34270,7 @@ class DescribeExtensionsRequest(TeaModel):
|
|
|
34263
34270
|
self.dbcluster_id = dbcluster_id
|
|
34264
34271
|
# This parameter is required.
|
|
34265
34272
|
self.dbname = dbname
|
|
34273
|
+
self.extension_name = extension_name
|
|
34266
34274
|
self.owner_account = owner_account
|
|
34267
34275
|
self.owner_id = owner_id
|
|
34268
34276
|
self.resource_owner_account = resource_owner_account
|
|
@@ -34281,6 +34289,8 @@ class DescribeExtensionsRequest(TeaModel):
|
|
|
34281
34289
|
result['DBClusterId'] = self.dbcluster_id
|
|
34282
34290
|
if self.dbname is not None:
|
|
34283
34291
|
result['DBName'] = self.dbname
|
|
34292
|
+
if self.extension_name is not None:
|
|
34293
|
+
result['ExtensionName'] = self.extension_name
|
|
34284
34294
|
if self.owner_account is not None:
|
|
34285
34295
|
result['OwnerAccount'] = self.owner_account
|
|
34286
34296
|
if self.owner_id is not None:
|
|
@@ -34297,6 +34307,8 @@ class DescribeExtensionsRequest(TeaModel):
|
|
|
34297
34307
|
self.dbcluster_id = m.get('DBClusterId')
|
|
34298
34308
|
if m.get('DBName') is not None:
|
|
34299
34309
|
self.dbname = m.get('DBName')
|
|
34310
|
+
if m.get('ExtensionName') is not None:
|
|
34311
|
+
self.extension_name = m.get('ExtensionName')
|
|
34300
34312
|
if m.get('OwnerAccount') is not None:
|
|
34301
34313
|
self.owner_account = m.get('OwnerAccount')
|
|
34302
34314
|
if m.get('OwnerId') is not None:
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = '6.1.6'
|
|
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
|