alibabacloud-polardb20170801 6.1.3__py3-none-any.whl → 6.1.4__py3-none-any.whl
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/__init__.py +1 -1
- alibabacloud_polardb20170801/client.py +8 -0
- alibabacloud_polardb20170801/models.py +6 -0
- {alibabacloud_polardb20170801-6.1.3.dist-info → alibabacloud_polardb20170801-6.1.4.dist-info}/METADATA +1 -1
- alibabacloud_polardb20170801-6.1.4.dist-info/RECORD +8 -0
- alibabacloud_polardb20170801-6.1.3.dist-info/RECORD +0 -8
- {alibabacloud_polardb20170801-6.1.3.dist-info → alibabacloud_polardb20170801-6.1.4.dist-info}/LICENSE +0 -0
- {alibabacloud_polardb20170801-6.1.3.dist-info → alibabacloud_polardb20170801-6.1.4.dist-info}/WHEEL +0 -0
- {alibabacloud_polardb20170801-6.1.3.dist-info → alibabacloud_polardb20170801-6.1.4.dist-info}/top_level.txt +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = '6.1.
|
|
1
|
+
__version__ = '6.1.4'
|
|
@@ -20441,6 +20441,8 @@ class Client(OpenApiClient):
|
|
|
20441
20441
|
runtime: util_models.RuntimeOptions,
|
|
20442
20442
|
) -> polardb_20170801_models.DescribeRdsVpcsResponse:
|
|
20443
20443
|
"""
|
|
20444
|
+
@summary 查询vpc
|
|
20445
|
+
|
|
20444
20446
|
@param request: DescribeRdsVpcsRequest
|
|
20445
20447
|
@param runtime: runtime options for this request RuntimeOptions
|
|
20446
20448
|
@return: DescribeRdsVpcsResponse
|
|
@@ -20488,6 +20490,8 @@ class Client(OpenApiClient):
|
|
|
20488
20490
|
runtime: util_models.RuntimeOptions,
|
|
20489
20491
|
) -> polardb_20170801_models.DescribeRdsVpcsResponse:
|
|
20490
20492
|
"""
|
|
20493
|
+
@summary 查询vpc
|
|
20494
|
+
|
|
20491
20495
|
@param request: DescribeRdsVpcsRequest
|
|
20492
20496
|
@param runtime: runtime options for this request RuntimeOptions
|
|
20493
20497
|
@return: DescribeRdsVpcsResponse
|
|
@@ -20534,6 +20538,8 @@ class Client(OpenApiClient):
|
|
|
20534
20538
|
request: polardb_20170801_models.DescribeRdsVpcsRequest,
|
|
20535
20539
|
) -> polardb_20170801_models.DescribeRdsVpcsResponse:
|
|
20536
20540
|
"""
|
|
20541
|
+
@summary 查询vpc
|
|
20542
|
+
|
|
20537
20543
|
@param request: DescribeRdsVpcsRequest
|
|
20538
20544
|
@return: DescribeRdsVpcsResponse
|
|
20539
20545
|
"""
|
|
@@ -20545,6 +20551,8 @@ class Client(OpenApiClient):
|
|
|
20545
20551
|
request: polardb_20170801_models.DescribeRdsVpcsRequest,
|
|
20546
20552
|
) -> polardb_20170801_models.DescribeRdsVpcsResponse:
|
|
20547
20553
|
"""
|
|
20554
|
+
@summary 查询vpc
|
|
20555
|
+
|
|
20548
20556
|
@param request: DescribeRdsVpcsRequest
|
|
20549
20557
|
@return: DescribeRdsVpcsResponse
|
|
20550
20558
|
"""
|
|
@@ -12236,6 +12236,7 @@ class DescribeAIDBClusterAttributeResponseBodyDBNodes(TeaModel):
|
|
|
12236
12236
|
self,
|
|
12237
12237
|
child_volumes: List[DescribeAIDBClusterAttributeResponseBodyDBNodesChildVolumes] = None,
|
|
12238
12238
|
cpu_cores: str = None,
|
|
12239
|
+
creation_time: str = None,
|
|
12239
12240
|
dbnode_class: str = None,
|
|
12240
12241
|
dbnode_description: str = None,
|
|
12241
12242
|
dbnode_id: str = None,
|
|
@@ -12251,6 +12252,7 @@ class DescribeAIDBClusterAttributeResponseBodyDBNodes(TeaModel):
|
|
|
12251
12252
|
):
|
|
12252
12253
|
self.child_volumes = child_volumes
|
|
12253
12254
|
self.cpu_cores = cpu_cores
|
|
12255
|
+
self.creation_time = creation_time
|
|
12254
12256
|
self.dbnode_class = dbnode_class
|
|
12255
12257
|
self.dbnode_description = dbnode_description
|
|
12256
12258
|
self.dbnode_id = dbnode_id
|
|
@@ -12282,6 +12284,8 @@ class DescribeAIDBClusterAttributeResponseBodyDBNodes(TeaModel):
|
|
|
12282
12284
|
result['ChildVolumes'].append(k.to_map() if k else None)
|
|
12283
12285
|
if self.cpu_cores is not None:
|
|
12284
12286
|
result['CpuCores'] = self.cpu_cores
|
|
12287
|
+
if self.creation_time is not None:
|
|
12288
|
+
result['CreationTime'] = self.creation_time
|
|
12285
12289
|
if self.dbnode_class is not None:
|
|
12286
12290
|
result['DBNodeClass'] = self.dbnode_class
|
|
12287
12291
|
if self.dbnode_description is not None:
|
|
@@ -12317,6 +12321,8 @@ class DescribeAIDBClusterAttributeResponseBodyDBNodes(TeaModel):
|
|
|
12317
12321
|
self.child_volumes.append(temp_model.from_map(k))
|
|
12318
12322
|
if m.get('CpuCores') is not None:
|
|
12319
12323
|
self.cpu_cores = m.get('CpuCores')
|
|
12324
|
+
if m.get('CreationTime') is not None:
|
|
12325
|
+
self.creation_time = m.get('CreationTime')
|
|
12320
12326
|
if m.get('DBNodeClass') is not None:
|
|
12321
12327
|
self.dbnode_class = m.get('DBNodeClass')
|
|
12322
12328
|
if m.get('DBNodeDescription') is not None:
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
alibabacloud_polardb20170801/__init__.py,sha256=o3ctHIiC9kPNVgMkLe6g0R1IyGeFUmCogyNVpvuOCHc,21
|
|
2
|
+
alibabacloud_polardb20170801/client.py,sha256=f5QX_frOhOit3QSk-V5v0re7__Q-asCE_0Z-lAex8QI,1564488
|
|
3
|
+
alibabacloud_polardb20170801/models.py,sha256=1vU57y5u-FMdTB3sif0rey-qidTfAn504d-_5RdSqDs,2354603
|
|
4
|
+
alibabacloud_polardb20170801-6.1.4.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
+
alibabacloud_polardb20170801-6.1.4.dist-info/METADATA,sha256=bGyRw1hxJ69OeGMCZ_A_b1o9oyqCHneR-HwrhSFRWnU,2353
|
|
6
|
+
alibabacloud_polardb20170801-6.1.4.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
7
|
+
alibabacloud_polardb20170801-6.1.4.dist-info/top_level.txt,sha256=p7IsMztEzFGUKapMvBUvPuZ0usUOM4d9QfpzT_xtDG4,29
|
|
8
|
+
alibabacloud_polardb20170801-6.1.4.dist-info/RECORD,,
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
alibabacloud_polardb20170801/__init__.py,sha256=-HfedZqpve-PeaAyZ6PGqIYIrRzKH0En84rByupKBC4,21
|
|
2
|
-
alibabacloud_polardb20170801/client.py,sha256=qXOt_ToK_Bs4Afgu9X0hr3c3LBtWlVZM7k36VJazeqY,1564344
|
|
3
|
-
alibabacloud_polardb20170801/models.py,sha256=FB6tVJ0WB553EKUSUXZXBK9XBhG3k6s7_silQDGUUng,2354325
|
|
4
|
-
alibabacloud_polardb20170801-6.1.3.dist-info/LICENSE,sha256=0CFItL6bHvxqS44T6vlLoW2R4Zaic304OO3WxN0oXF0,600
|
|
5
|
-
alibabacloud_polardb20170801-6.1.3.dist-info/METADATA,sha256=JOHkUhHQ1QgfczYT3nGxd-n2IHV5ABgo04OK7pTBZI4,2353
|
|
6
|
-
alibabacloud_polardb20170801-6.1.3.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
7
|
-
alibabacloud_polardb20170801-6.1.3.dist-info/top_level.txt,sha256=p7IsMztEzFGUKapMvBUvPuZ0usUOM4d9QfpzT_xtDG4,29
|
|
8
|
-
alibabacloud_polardb20170801-6.1.3.dist-info/RECORD,,
|
|
File without changes
|
{alibabacloud_polardb20170801-6.1.3.dist-info → alibabacloud_polardb20170801-6.1.4.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|