alibabacloud-polardb20170801 6.1.5__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.
Files changed (17) hide show
  1. {alibabacloud_polardb20170801-6.1.5 → alibabacloud_polardb20170801-6.1.6}/ChangeLog.md +4 -0
  2. {alibabacloud_polardb20170801-6.1.5 → alibabacloud_polardb20170801-6.1.6}/PKG-INFO +1 -1
  3. alibabacloud_polardb20170801-6.1.6/alibabacloud_polardb20170801/__init__.py +1 -0
  4. {alibabacloud_polardb20170801-6.1.5 → alibabacloud_polardb20170801-6.1.6}/alibabacloud_polardb20170801/models.py +24 -0
  5. {alibabacloud_polardb20170801-6.1.5 → alibabacloud_polardb20170801-6.1.6}/alibabacloud_polardb20170801.egg-info/PKG-INFO +1 -1
  6. {alibabacloud_polardb20170801-6.1.5 → alibabacloud_polardb20170801-6.1.6}/setup.py +1 -1
  7. alibabacloud_polardb20170801-6.1.5/alibabacloud_polardb20170801/__init__.py +0 -1
  8. {alibabacloud_polardb20170801-6.1.5 → alibabacloud_polardb20170801-6.1.6}/LICENSE +0 -0
  9. {alibabacloud_polardb20170801-6.1.5 → alibabacloud_polardb20170801-6.1.6}/MANIFEST.in +0 -0
  10. {alibabacloud_polardb20170801-6.1.5 → alibabacloud_polardb20170801-6.1.6}/README-CN.md +0 -0
  11. {alibabacloud_polardb20170801-6.1.5 → alibabacloud_polardb20170801-6.1.6}/README.md +0 -0
  12. {alibabacloud_polardb20170801-6.1.5 → alibabacloud_polardb20170801-6.1.6}/alibabacloud_polardb20170801/client.py +0 -0
  13. {alibabacloud_polardb20170801-6.1.5 → alibabacloud_polardb20170801-6.1.6}/alibabacloud_polardb20170801.egg-info/SOURCES.txt +0 -0
  14. {alibabacloud_polardb20170801-6.1.5 → alibabacloud_polardb20170801-6.1.6}/alibabacloud_polardb20170801.egg-info/dependency_links.txt +0 -0
  15. {alibabacloud_polardb20170801-6.1.5 → alibabacloud_polardb20170801-6.1.6}/alibabacloud_polardb20170801.egg-info/requires.txt +0 -0
  16. {alibabacloud_polardb20170801-6.1.5 → alibabacloud_polardb20170801-6.1.6}/alibabacloud_polardb20170801.egg-info/top_level.txt +0 -0
  17. {alibabacloud_polardb20170801-6.1.5 → alibabacloud_polardb20170801-6.1.6}/setup.cfg +0 -0
@@ -1,3 +1,7 @@
1
+ 2025-11-14 Version: 6.1.5
2
+ - Update API DescribeApplicationAttribute: add response parameters Body.Endpoints.$.PortDescription.
3
+
4
+
1
5
  2025-11-06 Version: 6.1.4
2
6
  - Update API DescribeAIDBClusterAttribute: add response parameters Body.DBNodes.$.CreationTime.
3
7
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: alibabacloud_polardb20170801
3
- Version: 6.1.5
3
+ Version: 6.1.6
4
4
  Summary: Alibaba Cloud ApsaraDB for POLARDB (20170801) SDK Library for Python
5
5
  Home-page: https://github.com/aliyun/alibabacloud-python-sdk
6
6
  Author: Alibaba Cloud SDK
@@ -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:
@@ -40818,12 +40824,14 @@ class DescribePolarFsAttributeResponseBody(TeaModel):
40818
40824
  accelerating_enable: str = None,
40819
40825
  bandwidth: float = None,
40820
40826
  bandwidth_base_line: float = None,
40827
+ bucket_id: str = None,
40821
40828
  category: str = None,
40822
40829
  client_download_path: str = None,
40823
40830
  create_time: str = None,
40824
40831
  dbtype: str = None,
40825
40832
  expire_time: str = None,
40826
40833
  expired: str = None,
40834
+ file_system_id: str = None,
40827
40835
  lock_mode: str = None,
40828
40836
  meta_url: str = None,
40829
40837
  minor_version: str = None,
@@ -40836,6 +40844,7 @@ class DescribePolarFsAttributeResponseBody(TeaModel):
40836
40844
  polar_fs_version: str = None,
40837
40845
  region_id: str = None,
40838
40846
  relative_db_cluster_id: str = None,
40847
+ relative_pfs_cluster_id: str = None,
40839
40848
  request_id: str = None,
40840
40849
  security_group_id: str = None,
40841
40850
  storage_space: float = None,
@@ -40849,12 +40858,14 @@ class DescribePolarFsAttributeResponseBody(TeaModel):
40849
40858
  self.accelerating_enable = accelerating_enable
40850
40859
  self.bandwidth = bandwidth
40851
40860
  self.bandwidth_base_line = bandwidth_base_line
40861
+ self.bucket_id = bucket_id
40852
40862
  self.category = category
40853
40863
  self.client_download_path = client_download_path
40854
40864
  self.create_time = create_time
40855
40865
  self.dbtype = dbtype
40856
40866
  self.expire_time = expire_time
40857
40867
  self.expired = expired
40868
+ self.file_system_id = file_system_id
40858
40869
  self.lock_mode = lock_mode
40859
40870
  self.meta_url = meta_url
40860
40871
  self.minor_version = minor_version
@@ -40867,6 +40878,7 @@ class DescribePolarFsAttributeResponseBody(TeaModel):
40867
40878
  self.polar_fs_version = polar_fs_version
40868
40879
  self.region_id = region_id
40869
40880
  self.relative_db_cluster_id = relative_db_cluster_id
40881
+ self.relative_pfs_cluster_id = relative_pfs_cluster_id
40870
40882
  # Id of the request
40871
40883
  self.request_id = request_id
40872
40884
  self.security_group_id = security_group_id
@@ -40895,6 +40907,8 @@ class DescribePolarFsAttributeResponseBody(TeaModel):
40895
40907
  result['Bandwidth'] = self.bandwidth
40896
40908
  if self.bandwidth_base_line is not None:
40897
40909
  result['BandwidthBaseLine'] = self.bandwidth_base_line
40910
+ if self.bucket_id is not None:
40911
+ result['BucketId'] = self.bucket_id
40898
40912
  if self.category is not None:
40899
40913
  result['Category'] = self.category
40900
40914
  if self.client_download_path is not None:
@@ -40907,6 +40921,8 @@ class DescribePolarFsAttributeResponseBody(TeaModel):
40907
40921
  result['ExpireTime'] = self.expire_time
40908
40922
  if self.expired is not None:
40909
40923
  result['Expired'] = self.expired
40924
+ if self.file_system_id is not None:
40925
+ result['FileSystemId'] = self.file_system_id
40910
40926
  if self.lock_mode is not None:
40911
40927
  result['LockMode'] = self.lock_mode
40912
40928
  if self.meta_url is not None:
@@ -40931,6 +40947,8 @@ class DescribePolarFsAttributeResponseBody(TeaModel):
40931
40947
  result['RegionId'] = self.region_id
40932
40948
  if self.relative_db_cluster_id is not None:
40933
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
40934
40952
  if self.request_id is not None:
40935
40953
  result['RequestId'] = self.request_id
40936
40954
  if self.security_group_id is not None:
@@ -40959,6 +40977,8 @@ class DescribePolarFsAttributeResponseBody(TeaModel):
40959
40977
  self.bandwidth = m.get('Bandwidth')
40960
40978
  if m.get('BandwidthBaseLine') is not None:
40961
40979
  self.bandwidth_base_line = m.get('BandwidthBaseLine')
40980
+ if m.get('BucketId') is not None:
40981
+ self.bucket_id = m.get('BucketId')
40962
40982
  if m.get('Category') is not None:
40963
40983
  self.category = m.get('Category')
40964
40984
  if m.get('ClientDownloadPath') is not None:
@@ -40971,6 +40991,8 @@ class DescribePolarFsAttributeResponseBody(TeaModel):
40971
40991
  self.expire_time = m.get('ExpireTime')
40972
40992
  if m.get('Expired') is not None:
40973
40993
  self.expired = m.get('Expired')
40994
+ if m.get('FileSystemId') is not None:
40995
+ self.file_system_id = m.get('FileSystemId')
40974
40996
  if m.get('LockMode') is not None:
40975
40997
  self.lock_mode = m.get('LockMode')
40976
40998
  if m.get('MetaUrl') is not None:
@@ -40996,6 +41018,8 @@ class DescribePolarFsAttributeResponseBody(TeaModel):
40996
41018
  self.region_id = m.get('RegionId')
40997
41019
  if m.get('RelativeDbClusterId') is not None:
40998
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')
40999
41023
  if m.get('RequestId') is not None:
41000
41024
  self.request_id = m.get('RequestId')
41001
41025
  if m.get('SecurityGroupId') is not None:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: alibabacloud-polardb20170801
3
- Version: 6.1.5
3
+ Version: 6.1.6
4
4
  Summary: Alibaba Cloud ApsaraDB for POLARDB (20170801) SDK Library for Python
5
5
  Home-page: https://github.com/aliyun/alibabacloud-python-sdk
6
6
  Author: Alibaba Cloud SDK
@@ -24,7 +24,7 @@ from setuptools import setup, find_packages
24
24
  """
25
25
  setup module for alibabacloud_polardb20170801.
26
26
 
27
- Created on 14/11/2025
27
+ Created on 25/11/2025
28
28
 
29
29
  @author: Alibaba Cloud SDK
30
30
  """
@@ -1 +0,0 @@
1
- __version__ = '6.1.5'