alibabacloud-polardb20170801 6.1.4__tar.gz → 6.1.6__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.4 → alibabacloud_polardb20170801-6.1.6}/ChangeLog.md +12 -0
- {alibabacloud_polardb20170801-6.1.4 → alibabacloud_polardb20170801-6.1.6}/PKG-INFO +1 -1
- alibabacloud_polardb20170801-6.1.6/alibabacloud_polardb20170801/__init__.py +1 -0
- {alibabacloud_polardb20170801-6.1.4 → alibabacloud_polardb20170801-6.1.6}/alibabacloud_polardb20170801/models.py +30 -0
- {alibabacloud_polardb20170801-6.1.4 → alibabacloud_polardb20170801-6.1.6}/alibabacloud_polardb20170801.egg-info/PKG-INFO +1 -1
- {alibabacloud_polardb20170801-6.1.4 → alibabacloud_polardb20170801-6.1.6}/setup.py +1 -1
- alibabacloud_polardb20170801-6.1.4/alibabacloud_polardb20170801/__init__.py +0 -1
- {alibabacloud_polardb20170801-6.1.4 → alibabacloud_polardb20170801-6.1.6}/LICENSE +0 -0
- {alibabacloud_polardb20170801-6.1.4 → alibabacloud_polardb20170801-6.1.6}/MANIFEST.in +0 -0
- {alibabacloud_polardb20170801-6.1.4 → alibabacloud_polardb20170801-6.1.6}/README-CN.md +0 -0
- {alibabacloud_polardb20170801-6.1.4 → alibabacloud_polardb20170801-6.1.6}/README.md +0 -0
- {alibabacloud_polardb20170801-6.1.4 → alibabacloud_polardb20170801-6.1.6}/alibabacloud_polardb20170801/client.py +0 -0
- {alibabacloud_polardb20170801-6.1.4 → alibabacloud_polardb20170801-6.1.6}/alibabacloud_polardb20170801.egg-info/SOURCES.txt +0 -0
- {alibabacloud_polardb20170801-6.1.4 → alibabacloud_polardb20170801-6.1.6}/alibabacloud_polardb20170801.egg-info/dependency_links.txt +0 -0
- {alibabacloud_polardb20170801-6.1.4 → alibabacloud_polardb20170801-6.1.6}/alibabacloud_polardb20170801.egg-info/requires.txt +0 -0
- {alibabacloud_polardb20170801-6.1.4 → alibabacloud_polardb20170801-6.1.6}/alibabacloud_polardb20170801.egg-info/top_level.txt +0 -0
- {alibabacloud_polardb20170801-6.1.4 → alibabacloud_polardb20170801-6.1.6}/setup.cfg +0 -0
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
2025-11-14 Version: 6.1.5
|
|
2
|
+
- Update API DescribeApplicationAttribute: add response parameters Body.Endpoints.$.PortDescription.
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
2025-11-06 Version: 6.1.4
|
|
6
|
+
- Update API DescribeAIDBClusterAttribute: add response parameters Body.DBNodes.$.CreationTime.
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
2025-11-06 Version: 6.1.4
|
|
10
|
+
- Update API DescribeAIDBClusterAttribute: add response parameters Body.DBNodes.$.CreationTime.
|
|
11
|
+
|
|
12
|
+
|
|
1
13
|
2025-11-04 Version: 6.1.3
|
|
2
14
|
- Update API DescribeSlowLogs: add response parameters Body.Items.$.MaxExecutionTimeMs.
|
|
3
15
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '6.1.6'
|
|
@@ -12489,6 +12489,7 @@ class DescribeAIDBClusterAttributeResponseBody(TeaModel):
|
|
|
12489
12489
|
expire_time: str = None,
|
|
12490
12490
|
expired: bool = None,
|
|
12491
12491
|
internal_ip: str = None,
|
|
12492
|
+
kvcache_instance_id: str = None,
|
|
12492
12493
|
kube_cluster_id: str = None,
|
|
12493
12494
|
lock_mode: str = None,
|
|
12494
12495
|
max_qpm: str = None,
|
|
@@ -12516,6 +12517,7 @@ class DescribeAIDBClusterAttributeResponseBody(TeaModel):
|
|
|
12516
12517
|
self.expire_time = expire_time
|
|
12517
12518
|
self.expired = expired
|
|
12518
12519
|
self.internal_ip = internal_ip
|
|
12520
|
+
self.kvcache_instance_id = kvcache_instance_id
|
|
12519
12521
|
self.kube_cluster_id = kube_cluster_id
|
|
12520
12522
|
self.lock_mode = lock_mode
|
|
12521
12523
|
self.max_qpm = max_qpm
|
|
@@ -12579,6 +12581,8 @@ class DescribeAIDBClusterAttributeResponseBody(TeaModel):
|
|
|
12579
12581
|
result['Expired'] = self.expired
|
|
12580
12582
|
if self.internal_ip is not None:
|
|
12581
12583
|
result['InternalIp'] = self.internal_ip
|
|
12584
|
+
if self.kvcache_instance_id is not None:
|
|
12585
|
+
result['KVCacheInstanceId'] = self.kvcache_instance_id
|
|
12582
12586
|
if self.kube_cluster_id is not None:
|
|
12583
12587
|
result['KubeClusterId'] = self.kube_cluster_id
|
|
12584
12588
|
if self.lock_mode is not None:
|
|
@@ -12643,6 +12647,8 @@ class DescribeAIDBClusterAttributeResponseBody(TeaModel):
|
|
|
12643
12647
|
self.expired = m.get('Expired')
|
|
12644
12648
|
if m.get('InternalIp') is not None:
|
|
12645
12649
|
self.internal_ip = m.get('InternalIp')
|
|
12650
|
+
if m.get('KVCacheInstanceId') is not None:
|
|
12651
|
+
self.kvcache_instance_id = m.get('KVCacheInstanceId')
|
|
12646
12652
|
if m.get('KubeClusterId') is not None:
|
|
12647
12653
|
self.kube_cluster_id = m.get('KubeClusterId')
|
|
12648
12654
|
if m.get('LockMode') is not None:
|
|
@@ -15607,12 +15613,14 @@ class DescribeApplicationAttributeResponseBodyEndpoints(TeaModel):
|
|
|
15607
15613
|
ip: str = None,
|
|
15608
15614
|
net_type: str = None,
|
|
15609
15615
|
port: str = None,
|
|
15616
|
+
port_description: str = None,
|
|
15610
15617
|
):
|
|
15611
15618
|
self.description = description
|
|
15612
15619
|
self.endpoint_id = endpoint_id
|
|
15613
15620
|
self.ip = ip
|
|
15614
15621
|
self.net_type = net_type
|
|
15615
15622
|
self.port = port
|
|
15623
|
+
self.port_description = port_description
|
|
15616
15624
|
|
|
15617
15625
|
def validate(self):
|
|
15618
15626
|
pass
|
|
@@ -15633,6 +15641,8 @@ class DescribeApplicationAttributeResponseBodyEndpoints(TeaModel):
|
|
|
15633
15641
|
result['NetType'] = self.net_type
|
|
15634
15642
|
if self.port is not None:
|
|
15635
15643
|
result['Port'] = self.port
|
|
15644
|
+
if self.port_description is not None:
|
|
15645
|
+
result['PortDescription'] = self.port_description
|
|
15636
15646
|
return result
|
|
15637
15647
|
|
|
15638
15648
|
def from_map(self, m: dict = None):
|
|
@@ -15647,6 +15657,8 @@ class DescribeApplicationAttributeResponseBodyEndpoints(TeaModel):
|
|
|
15647
15657
|
self.net_type = m.get('NetType')
|
|
15648
15658
|
if m.get('Port') is not None:
|
|
15649
15659
|
self.port = m.get('Port')
|
|
15660
|
+
if m.get('PortDescription') is not None:
|
|
15661
|
+
self.port_description = m.get('PortDescription')
|
|
15650
15662
|
return self
|
|
15651
15663
|
|
|
15652
15664
|
|
|
@@ -40812,12 +40824,14 @@ class DescribePolarFsAttributeResponseBody(TeaModel):
|
|
|
40812
40824
|
accelerating_enable: str = None,
|
|
40813
40825
|
bandwidth: float = None,
|
|
40814
40826
|
bandwidth_base_line: float = None,
|
|
40827
|
+
bucket_id: str = None,
|
|
40815
40828
|
category: str = None,
|
|
40816
40829
|
client_download_path: str = None,
|
|
40817
40830
|
create_time: str = None,
|
|
40818
40831
|
dbtype: str = None,
|
|
40819
40832
|
expire_time: str = None,
|
|
40820
40833
|
expired: str = None,
|
|
40834
|
+
file_system_id: str = None,
|
|
40821
40835
|
lock_mode: str = None,
|
|
40822
40836
|
meta_url: str = None,
|
|
40823
40837
|
minor_version: str = None,
|
|
@@ -40830,6 +40844,7 @@ class DescribePolarFsAttributeResponseBody(TeaModel):
|
|
|
40830
40844
|
polar_fs_version: str = None,
|
|
40831
40845
|
region_id: str = None,
|
|
40832
40846
|
relative_db_cluster_id: str = None,
|
|
40847
|
+
relative_pfs_cluster_id: str = None,
|
|
40833
40848
|
request_id: str = None,
|
|
40834
40849
|
security_group_id: str = None,
|
|
40835
40850
|
storage_space: float = None,
|
|
@@ -40843,12 +40858,14 @@ class DescribePolarFsAttributeResponseBody(TeaModel):
|
|
|
40843
40858
|
self.accelerating_enable = accelerating_enable
|
|
40844
40859
|
self.bandwidth = bandwidth
|
|
40845
40860
|
self.bandwidth_base_line = bandwidth_base_line
|
|
40861
|
+
self.bucket_id = bucket_id
|
|
40846
40862
|
self.category = category
|
|
40847
40863
|
self.client_download_path = client_download_path
|
|
40848
40864
|
self.create_time = create_time
|
|
40849
40865
|
self.dbtype = dbtype
|
|
40850
40866
|
self.expire_time = expire_time
|
|
40851
40867
|
self.expired = expired
|
|
40868
|
+
self.file_system_id = file_system_id
|
|
40852
40869
|
self.lock_mode = lock_mode
|
|
40853
40870
|
self.meta_url = meta_url
|
|
40854
40871
|
self.minor_version = minor_version
|
|
@@ -40861,6 +40878,7 @@ class DescribePolarFsAttributeResponseBody(TeaModel):
|
|
|
40861
40878
|
self.polar_fs_version = polar_fs_version
|
|
40862
40879
|
self.region_id = region_id
|
|
40863
40880
|
self.relative_db_cluster_id = relative_db_cluster_id
|
|
40881
|
+
self.relative_pfs_cluster_id = relative_pfs_cluster_id
|
|
40864
40882
|
# Id of the request
|
|
40865
40883
|
self.request_id = request_id
|
|
40866
40884
|
self.security_group_id = security_group_id
|
|
@@ -40889,6 +40907,8 @@ class DescribePolarFsAttributeResponseBody(TeaModel):
|
|
|
40889
40907
|
result['Bandwidth'] = self.bandwidth
|
|
40890
40908
|
if self.bandwidth_base_line is not None:
|
|
40891
40909
|
result['BandwidthBaseLine'] = self.bandwidth_base_line
|
|
40910
|
+
if self.bucket_id is not None:
|
|
40911
|
+
result['BucketId'] = self.bucket_id
|
|
40892
40912
|
if self.category is not None:
|
|
40893
40913
|
result['Category'] = self.category
|
|
40894
40914
|
if self.client_download_path is not None:
|
|
@@ -40901,6 +40921,8 @@ class DescribePolarFsAttributeResponseBody(TeaModel):
|
|
|
40901
40921
|
result['ExpireTime'] = self.expire_time
|
|
40902
40922
|
if self.expired is not None:
|
|
40903
40923
|
result['Expired'] = self.expired
|
|
40924
|
+
if self.file_system_id is not None:
|
|
40925
|
+
result['FileSystemId'] = self.file_system_id
|
|
40904
40926
|
if self.lock_mode is not None:
|
|
40905
40927
|
result['LockMode'] = self.lock_mode
|
|
40906
40928
|
if self.meta_url is not None:
|
|
@@ -40925,6 +40947,8 @@ class DescribePolarFsAttributeResponseBody(TeaModel):
|
|
|
40925
40947
|
result['RegionId'] = self.region_id
|
|
40926
40948
|
if self.relative_db_cluster_id is not None:
|
|
40927
40949
|
result['RelativeDbClusterId'] = self.relative_db_cluster_id
|
|
40950
|
+
if self.relative_pfs_cluster_id is not None:
|
|
40951
|
+
result['RelativePfsClusterId'] = self.relative_pfs_cluster_id
|
|
40928
40952
|
if self.request_id is not None:
|
|
40929
40953
|
result['RequestId'] = self.request_id
|
|
40930
40954
|
if self.security_group_id is not None:
|
|
@@ -40953,6 +40977,8 @@ class DescribePolarFsAttributeResponseBody(TeaModel):
|
|
|
40953
40977
|
self.bandwidth = m.get('Bandwidth')
|
|
40954
40978
|
if m.get('BandwidthBaseLine') is not None:
|
|
40955
40979
|
self.bandwidth_base_line = m.get('BandwidthBaseLine')
|
|
40980
|
+
if m.get('BucketId') is not None:
|
|
40981
|
+
self.bucket_id = m.get('BucketId')
|
|
40956
40982
|
if m.get('Category') is not None:
|
|
40957
40983
|
self.category = m.get('Category')
|
|
40958
40984
|
if m.get('ClientDownloadPath') is not None:
|
|
@@ -40965,6 +40991,8 @@ class DescribePolarFsAttributeResponseBody(TeaModel):
|
|
|
40965
40991
|
self.expire_time = m.get('ExpireTime')
|
|
40966
40992
|
if m.get('Expired') is not None:
|
|
40967
40993
|
self.expired = m.get('Expired')
|
|
40994
|
+
if m.get('FileSystemId') is not None:
|
|
40995
|
+
self.file_system_id = m.get('FileSystemId')
|
|
40968
40996
|
if m.get('LockMode') is not None:
|
|
40969
40997
|
self.lock_mode = m.get('LockMode')
|
|
40970
40998
|
if m.get('MetaUrl') is not None:
|
|
@@ -40990,6 +41018,8 @@ class DescribePolarFsAttributeResponseBody(TeaModel):
|
|
|
40990
41018
|
self.region_id = m.get('RegionId')
|
|
40991
41019
|
if m.get('RelativeDbClusterId') is not None:
|
|
40992
41020
|
self.relative_db_cluster_id = m.get('RelativeDbClusterId')
|
|
41021
|
+
if m.get('RelativePfsClusterId') is not None:
|
|
41022
|
+
self.relative_pfs_cluster_id = m.get('RelativePfsClusterId')
|
|
40993
41023
|
if m.get('RequestId') is not None:
|
|
40994
41024
|
self.request_id = m.get('RequestId')
|
|
40995
41025
|
if m.get('SecurityGroupId') is not None:
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = '6.1.4'
|
|
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
|