tencentcloud-sdk-python 3.0.1340__py2.py3-none-any.whl → 3.0.1341__py2.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.
- tencentcloud/__init__.py +1 -1
- tencentcloud/autoscaling/v20180419/autoscaling_client.py +26 -0
- tencentcloud/autoscaling/v20180419/models.py +94 -0
- tencentcloud/cdc/v20201214/models.py +29 -74
- tencentcloud/cdwch/v20200915/models.py +124 -0
- tencentcloud/cdz/v20221123/models.py +0 -8
- tencentcloud/cynosdb/v20190107/models.py +0 -290
- tencentcloud/dbbrain/v20210527/models.py +15 -0
- tencentcloud/hunyuan/v20230901/hunyuan_client.py +25 -0
- tencentcloud/hunyuan/v20230901/models.py +532 -0
- tencentcloud/lcic/v20220817/models.py +4 -4
- tencentcloud/lighthouse/v20200324/lighthouse_client.py +12 -3
- tencentcloud/lighthouse/v20200324/models.py +139 -39
- tencentcloud/lke/v20231130/lke_client.py +1 -1
- tencentcloud/lke/v20231130/models.py +6 -6
- tencentcloud/ocr/v20181119/models.py +82 -0
- tencentcloud/ssl/v20191205/models.py +7 -319
- tencentcloud/tchd/v20230306/models.py +168 -0
- tencentcloud/tchd/v20230306/tchd_client.py +24 -0
- tencentcloud/wedata/v20210820/models.py +133 -254
- {tencentcloud_sdk_python-3.0.1340.dist-info → tencentcloud_sdk_python-3.0.1341.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1340.dist-info → tencentcloud_sdk_python-3.0.1341.dist-info}/RECORD +25 -25
- {tencentcloud_sdk_python-3.0.1340.dist-info → tencentcloud_sdk_python-3.0.1341.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1340.dist-info → tencentcloud_sdk_python-3.0.1341.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1340.dist-info → tencentcloud_sdk_python-3.0.1341.dist-info}/top_level.txt +0 -0
@@ -912,7 +912,6 @@ class DedicatedCluster(AbstractModel):
|
|
912
912
|
:param _Zone: 专用集群所属可用区名称。
|
913
913
|
:type Zone: str
|
914
914
|
:param _Description: 专用集群的描述。
|
915
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
916
915
|
:type Description: str
|
917
916
|
:param _Name: 专用集群的名称。
|
918
917
|
:type Name: str
|
@@ -922,6 +921,8 @@ class DedicatedCluster(AbstractModel):
|
|
922
921
|
:type CreateTime: str
|
923
922
|
:param _SiteId: 专用集群所属的站点id。
|
924
923
|
:type SiteId: str
|
924
|
+
:param _RunningStatus: 专用集群的运营状态
|
925
|
+
:type RunningStatus: str
|
925
926
|
"""
|
926
927
|
self._DedicatedClusterId = None
|
927
928
|
self._Zone = None
|
@@ -930,6 +931,7 @@ class DedicatedCluster(AbstractModel):
|
|
930
931
|
self._LifecycleStatus = None
|
931
932
|
self._CreateTime = None
|
932
933
|
self._SiteId = None
|
934
|
+
self._RunningStatus = None
|
933
935
|
|
934
936
|
@property
|
935
937
|
def DedicatedClusterId(self):
|
@@ -956,7 +958,6 @@ class DedicatedCluster(AbstractModel):
|
|
956
958
|
@property
|
957
959
|
def Description(self):
|
958
960
|
"""专用集群的描述。
|
959
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
960
961
|
:rtype: str
|
961
962
|
"""
|
962
963
|
return self._Description
|
@@ -1009,6 +1010,17 @@ class DedicatedCluster(AbstractModel):
|
|
1009
1010
|
def SiteId(self, SiteId):
|
1010
1011
|
self._SiteId = SiteId
|
1011
1012
|
|
1013
|
+
@property
|
1014
|
+
def RunningStatus(self):
|
1015
|
+
"""专用集群的运营状态
|
1016
|
+
:rtype: str
|
1017
|
+
"""
|
1018
|
+
return self._RunningStatus
|
1019
|
+
|
1020
|
+
@RunningStatus.setter
|
1021
|
+
def RunningStatus(self, RunningStatus):
|
1022
|
+
self._RunningStatus = RunningStatus
|
1023
|
+
|
1012
1024
|
|
1013
1025
|
def _deserialize(self, params):
|
1014
1026
|
self._DedicatedClusterId = params.get("DedicatedClusterId")
|
@@ -1018,6 +1030,7 @@ class DedicatedCluster(AbstractModel):
|
|
1018
1030
|
self._LifecycleStatus = params.get("LifecycleStatus")
|
1019
1031
|
self._CreateTime = params.get("CreateTime")
|
1020
1032
|
self._SiteId = params.get("SiteId")
|
1033
|
+
self._RunningStatus = params.get("RunningStatus")
|
1021
1034
|
memeber_set = set(params.keys())
|
1022
1035
|
for name, value in vars(self).items():
|
1023
1036
|
property_name = name[1:]
|
@@ -1304,45 +1317,43 @@ class DedicatedClusterOrder(AbstractModel):
|
|
1304
1317
|
:param _Action: 订单类型,创建CREATE或扩容EXTEND
|
1305
1318
|
:type Action: str
|
1306
1319
|
:param _DedicatedClusterOrderItems: 子订单详情列表
|
1307
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1308
1320
|
:type DedicatedClusterOrderItems: list of DedicatedClusterOrderItem
|
1309
1321
|
:param _Cpu: cpu值
|
1310
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1311
1322
|
:type Cpu: int
|
1312
1323
|
:param _Mem: mem值
|
1313
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1314
1324
|
:type Mem: int
|
1315
1325
|
:param _Gpu: gpu值
|
1316
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1317
1326
|
:type Gpu: int
|
1318
1327
|
:param _PayStatus: 0代表未支付,1代表已支付
|
1319
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1320
1328
|
:type PayStatus: int
|
1321
1329
|
:param _PayType: 支付方式,一次性、按月、按年
|
1322
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1323
1330
|
:type PayType: str
|
1324
1331
|
:param _TimeUnit: 购买时长的单位
|
1325
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1326
1332
|
:type TimeUnit: str
|
1327
1333
|
:param _TimeSpan: 购买时长
|
1328
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1329
1334
|
:type TimeSpan: int
|
1330
1335
|
:param _OrderType: 订单类型
|
1331
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1332
1336
|
:type OrderType: str
|
1333
1337
|
:param _CheckStatus: 验收状态
|
1338
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1334
1339
|
:type CheckStatus: str
|
1335
1340
|
:param _DeliverExpectTime: 交付预期时间
|
1341
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1336
1342
|
:type DeliverExpectTime: str
|
1337
1343
|
:param _DeliverFinishTime: 交付实际完成时间
|
1344
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1338
1345
|
:type DeliverFinishTime: str
|
1339
1346
|
:param _CheckExpectTime: 验收预期时间
|
1347
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1340
1348
|
:type CheckExpectTime: str
|
1341
1349
|
:param _CheckFinishTime: 验收实际完成时间
|
1350
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1342
1351
|
:type CheckFinishTime: str
|
1343
1352
|
:param _OrderSLA: 订单SLA
|
1353
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1344
1354
|
:type OrderSLA: str
|
1345
1355
|
:param _OrderPayPlan: 订单支付计划
|
1356
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1346
1357
|
:type OrderPayPlan: str
|
1347
1358
|
"""
|
1348
1359
|
self._DedicatedClusterId = None
|
@@ -1497,7 +1508,6 @@ class DedicatedClusterOrder(AbstractModel):
|
|
1497
1508
|
@property
|
1498
1509
|
def DedicatedClusterOrderItems(self):
|
1499
1510
|
"""子订单详情列表
|
1500
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1501
1511
|
:rtype: list of DedicatedClusterOrderItem
|
1502
1512
|
"""
|
1503
1513
|
return self._DedicatedClusterOrderItems
|
@@ -1509,7 +1519,6 @@ class DedicatedClusterOrder(AbstractModel):
|
|
1509
1519
|
@property
|
1510
1520
|
def Cpu(self):
|
1511
1521
|
"""cpu值
|
1512
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1513
1522
|
:rtype: int
|
1514
1523
|
"""
|
1515
1524
|
return self._Cpu
|
@@ -1521,7 +1530,6 @@ class DedicatedClusterOrder(AbstractModel):
|
|
1521
1530
|
@property
|
1522
1531
|
def Mem(self):
|
1523
1532
|
"""mem值
|
1524
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1525
1533
|
:rtype: int
|
1526
1534
|
"""
|
1527
1535
|
return self._Mem
|
@@ -1533,7 +1541,6 @@ class DedicatedClusterOrder(AbstractModel):
|
|
1533
1541
|
@property
|
1534
1542
|
def Gpu(self):
|
1535
1543
|
"""gpu值
|
1536
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1537
1544
|
:rtype: int
|
1538
1545
|
"""
|
1539
1546
|
return self._Gpu
|
@@ -1545,7 +1552,6 @@ class DedicatedClusterOrder(AbstractModel):
|
|
1545
1552
|
@property
|
1546
1553
|
def PayStatus(self):
|
1547
1554
|
"""0代表未支付,1代表已支付
|
1548
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1549
1555
|
:rtype: int
|
1550
1556
|
"""
|
1551
1557
|
return self._PayStatus
|
@@ -1557,7 +1563,6 @@ class DedicatedClusterOrder(AbstractModel):
|
|
1557
1563
|
@property
|
1558
1564
|
def PayType(self):
|
1559
1565
|
"""支付方式,一次性、按月、按年
|
1560
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1561
1566
|
:rtype: str
|
1562
1567
|
"""
|
1563
1568
|
return self._PayType
|
@@ -1569,7 +1574,6 @@ class DedicatedClusterOrder(AbstractModel):
|
|
1569
1574
|
@property
|
1570
1575
|
def TimeUnit(self):
|
1571
1576
|
"""购买时长的单位
|
1572
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1573
1577
|
:rtype: str
|
1574
1578
|
"""
|
1575
1579
|
return self._TimeUnit
|
@@ -1581,7 +1585,6 @@ class DedicatedClusterOrder(AbstractModel):
|
|
1581
1585
|
@property
|
1582
1586
|
def TimeSpan(self):
|
1583
1587
|
"""购买时长
|
1584
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1585
1588
|
:rtype: int
|
1586
1589
|
"""
|
1587
1590
|
return self._TimeSpan
|
@@ -1593,7 +1596,6 @@ class DedicatedClusterOrder(AbstractModel):
|
|
1593
1596
|
@property
|
1594
1597
|
def OrderType(self):
|
1595
1598
|
"""订单类型
|
1596
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1597
1599
|
:rtype: str
|
1598
1600
|
"""
|
1599
1601
|
return self._OrderType
|
@@ -1605,6 +1607,7 @@ class DedicatedClusterOrder(AbstractModel):
|
|
1605
1607
|
@property
|
1606
1608
|
def CheckStatus(self):
|
1607
1609
|
"""验收状态
|
1610
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1608
1611
|
:rtype: str
|
1609
1612
|
"""
|
1610
1613
|
return self._CheckStatus
|
@@ -1616,6 +1619,7 @@ class DedicatedClusterOrder(AbstractModel):
|
|
1616
1619
|
@property
|
1617
1620
|
def DeliverExpectTime(self):
|
1618
1621
|
"""交付预期时间
|
1622
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1619
1623
|
:rtype: str
|
1620
1624
|
"""
|
1621
1625
|
return self._DeliverExpectTime
|
@@ -1627,6 +1631,7 @@ class DedicatedClusterOrder(AbstractModel):
|
|
1627
1631
|
@property
|
1628
1632
|
def DeliverFinishTime(self):
|
1629
1633
|
"""交付实际完成时间
|
1634
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1630
1635
|
:rtype: str
|
1631
1636
|
"""
|
1632
1637
|
return self._DeliverFinishTime
|
@@ -1638,6 +1643,7 @@ class DedicatedClusterOrder(AbstractModel):
|
|
1638
1643
|
@property
|
1639
1644
|
def CheckExpectTime(self):
|
1640
1645
|
"""验收预期时间
|
1646
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1641
1647
|
:rtype: str
|
1642
1648
|
"""
|
1643
1649
|
return self._CheckExpectTime
|
@@ -1649,6 +1655,7 @@ class DedicatedClusterOrder(AbstractModel):
|
|
1649
1655
|
@property
|
1650
1656
|
def CheckFinishTime(self):
|
1651
1657
|
"""验收实际完成时间
|
1658
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1652
1659
|
:rtype: str
|
1653
1660
|
"""
|
1654
1661
|
return self._CheckFinishTime
|
@@ -1660,6 +1667,7 @@ class DedicatedClusterOrder(AbstractModel):
|
|
1660
1667
|
@property
|
1661
1668
|
def OrderSLA(self):
|
1662
1669
|
"""订单SLA
|
1670
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1663
1671
|
:rtype: str
|
1664
1672
|
"""
|
1665
1673
|
return self._OrderSLA
|
@@ -1671,6 +1679,7 @@ class DedicatedClusterOrder(AbstractModel):
|
|
1671
1679
|
@property
|
1672
1680
|
def OrderPayPlan(self):
|
1673
1681
|
"""订单支付计划
|
1682
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1674
1683
|
:rtype: str
|
1675
1684
|
"""
|
1676
1685
|
return self._OrderPayPlan
|
@@ -1763,13 +1772,10 @@ class DedicatedClusterOrderItem(AbstractModel):
|
|
1763
1772
|
:param _TypeName: 规格英文名
|
1764
1773
|
:type TypeName: str
|
1765
1774
|
:param _ComputeFormat: 规格展示
|
1766
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1767
1775
|
:type ComputeFormat: str
|
1768
1776
|
:param _TypeFamily: 规格类型
|
1769
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1770
1777
|
:type TypeFamily: str
|
1771
1778
|
:param _SubOrderPayStatus: 0未支付,1已支付
|
1772
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1773
1779
|
:type SubOrderPayStatus: int
|
1774
1780
|
"""
|
1775
1781
|
self._DedicatedClusterTypeId = None
|
@@ -1971,7 +1977,6 @@ class DedicatedClusterOrderItem(AbstractModel):
|
|
1971
1977
|
@property
|
1972
1978
|
def ComputeFormat(self):
|
1973
1979
|
"""规格展示
|
1974
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1975
1980
|
:rtype: str
|
1976
1981
|
"""
|
1977
1982
|
return self._ComputeFormat
|
@@ -1983,7 +1988,6 @@ class DedicatedClusterOrderItem(AbstractModel):
|
|
1983
1988
|
@property
|
1984
1989
|
def TypeFamily(self):
|
1985
1990
|
"""规格类型
|
1986
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1987
1991
|
:rtype: str
|
1988
1992
|
"""
|
1989
1993
|
return self._TypeFamily
|
@@ -1995,7 +1999,6 @@ class DedicatedClusterOrderItem(AbstractModel):
|
|
1995
1999
|
@property
|
1996
2000
|
def SubOrderPayStatus(self):
|
1997
2001
|
"""0未支付,1已支付
|
1998
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1999
2002
|
:rtype: int
|
2000
2003
|
"""
|
2001
2004
|
return self._SubOrderPayStatus
|
@@ -2045,7 +2048,6 @@ class DedicatedClusterType(AbstractModel):
|
|
2045
2048
|
:param _DedicatedClusterTypeId: 配置id
|
2046
2049
|
:type DedicatedClusterTypeId: str
|
2047
2050
|
:param _Description: 配置描述,对应描述
|
2048
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2049
2051
|
:type Description: str
|
2050
2052
|
:param _Name: 配置名称,对应计算资源类型
|
2051
2053
|
:type Name: str
|
@@ -2089,7 +2091,6 @@ class DedicatedClusterType(AbstractModel):
|
|
2089
2091
|
@property
|
2090
2092
|
def Description(self):
|
2091
2093
|
"""配置描述,对应描述
|
2092
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2093
2094
|
:rtype: str
|
2094
2095
|
"""
|
2095
2096
|
return self._Description
|
@@ -4321,7 +4322,6 @@ class HostInfo(AbstractModel):
|
|
4321
4322
|
:param _ExpireTime: 到期时间
|
4322
4323
|
:type ExpireTime: str
|
4323
4324
|
:param _HostId: 宿主机id
|
4324
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4325
4325
|
:type HostId: str
|
4326
4326
|
"""
|
4327
4327
|
self._HostIp = None
|
@@ -4449,7 +4449,6 @@ class HostInfo(AbstractModel):
|
|
4449
4449
|
@property
|
4450
4450
|
def HostId(self):
|
4451
4451
|
"""宿主机id
|
4452
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4453
4452
|
:rtype: str
|
4454
4453
|
"""
|
4455
4454
|
return self._HostId
|
@@ -4698,10 +4697,8 @@ class InBandwidth(AbstractModel):
|
|
4698
4697
|
def __init__(self):
|
4699
4698
|
r"""
|
4700
4699
|
:param _Timestamps: 时间戳
|
4701
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4702
4700
|
:type Timestamps: list of float
|
4703
4701
|
:param _Values: 时间对应的值
|
4704
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4705
4702
|
:type Values: list of float
|
4706
4703
|
"""
|
4707
4704
|
self._Timestamps = None
|
@@ -4710,7 +4707,6 @@ class InBandwidth(AbstractModel):
|
|
4710
4707
|
@property
|
4711
4708
|
def Timestamps(self):
|
4712
4709
|
"""时间戳
|
4713
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4714
4710
|
:rtype: list of float
|
4715
4711
|
"""
|
4716
4712
|
return self._Timestamps
|
@@ -4722,7 +4718,6 @@ class InBandwidth(AbstractModel):
|
|
4722
4718
|
@property
|
4723
4719
|
def Values(self):
|
4724
4720
|
"""时间对应的值
|
4725
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4726
4721
|
:rtype: list of float
|
4727
4722
|
"""
|
4728
4723
|
return self._Values
|
@@ -4753,16 +4748,12 @@ class LocalNetInfo(AbstractModel):
|
|
4753
4748
|
def __init__(self):
|
4754
4749
|
r"""
|
4755
4750
|
:param _Protocol: 协议
|
4756
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4757
4751
|
:type Protocol: str
|
4758
4752
|
:param _VpcId: 网络id
|
4759
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4760
4753
|
:type VpcId: str
|
4761
4754
|
:param _BGPRoute: 路由信息
|
4762
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4763
4755
|
:type BGPRoute: str
|
4764
4756
|
:param _LocalIp: 本地IP
|
4765
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4766
4757
|
:type LocalIp: str
|
4767
4758
|
"""
|
4768
4759
|
self._Protocol = None
|
@@ -4773,7 +4764,6 @@ class LocalNetInfo(AbstractModel):
|
|
4773
4764
|
@property
|
4774
4765
|
def Protocol(self):
|
4775
4766
|
"""协议
|
4776
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4777
4767
|
:rtype: str
|
4778
4768
|
"""
|
4779
4769
|
return self._Protocol
|
@@ -4785,7 +4775,6 @@ class LocalNetInfo(AbstractModel):
|
|
4785
4775
|
@property
|
4786
4776
|
def VpcId(self):
|
4787
4777
|
"""网络id
|
4788
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4789
4778
|
:rtype: str
|
4790
4779
|
"""
|
4791
4780
|
return self._VpcId
|
@@ -4797,7 +4786,6 @@ class LocalNetInfo(AbstractModel):
|
|
4797
4786
|
@property
|
4798
4787
|
def BGPRoute(self):
|
4799
4788
|
"""路由信息
|
4800
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4801
4789
|
:rtype: str
|
4802
4790
|
"""
|
4803
4791
|
return self._BGPRoute
|
@@ -4809,7 +4797,6 @@ class LocalNetInfo(AbstractModel):
|
|
4809
4797
|
@property
|
4810
4798
|
def LocalIp(self):
|
4811
4799
|
"""本地IP
|
4812
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
4813
4800
|
:rtype: str
|
4814
4801
|
"""
|
4815
4802
|
return self._LocalIp
|
@@ -5534,10 +5521,8 @@ class OutBandwidth(AbstractModel):
|
|
5534
5521
|
def __init__(self):
|
5535
5522
|
r"""
|
5536
5523
|
:param _Timestamps: 时间戳
|
5537
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5538
5524
|
:type Timestamps: list of float
|
5539
5525
|
:param _Values: 对应时间的值
|
5540
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5541
5526
|
:type Values: list of float
|
5542
5527
|
"""
|
5543
5528
|
self._Timestamps = None
|
@@ -5546,7 +5531,6 @@ class OutBandwidth(AbstractModel):
|
|
5546
5531
|
@property
|
5547
5532
|
def Timestamps(self):
|
5548
5533
|
"""时间戳
|
5549
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5550
5534
|
:rtype: list of float
|
5551
5535
|
"""
|
5552
5536
|
return self._Timestamps
|
@@ -5558,7 +5542,6 @@ class OutBandwidth(AbstractModel):
|
|
5558
5542
|
@property
|
5559
5543
|
def Values(self):
|
5560
5544
|
"""对应时间的值
|
5561
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5562
5545
|
:rtype: list of float
|
5563
5546
|
"""
|
5564
5547
|
return self._Values
|
@@ -5645,40 +5628,28 @@ class SetInfo(AbstractModel):
|
|
5645
5628
|
def __init__(self):
|
5646
5629
|
r"""
|
5647
5630
|
:param _SetId: 云硬盘仓库id
|
5648
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5649
5631
|
:type SetId: str
|
5650
5632
|
:param _SetName: 云硬盘仓库名称
|
5651
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5652
5633
|
:type SetName: str
|
5653
5634
|
:param _SetType: 云硬盘仓库类型
|
5654
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5655
5635
|
:type SetType: str
|
5656
5636
|
:param _SetSize: 云硬盘仓库容量
|
5657
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5658
5637
|
:type SetSize: float
|
5659
5638
|
:param _SetStatus: 云硬盘仓库状态
|
5660
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5661
5639
|
:type SetStatus: str
|
5662
5640
|
:param _CreateTime: 云硬盘仓库创建时间
|
5663
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5664
5641
|
:type CreateTime: str
|
5665
5642
|
:param _ReadTraffic: 读流量
|
5666
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5667
5643
|
:type ReadTraffic: :class:`tencentcloud.cdc.v20201214.models.DetailData`
|
5668
5644
|
:param _WriteTraffic: 写流量
|
5669
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5670
5645
|
:type WriteTraffic: :class:`tencentcloud.cdc.v20201214.models.DetailData`
|
5671
5646
|
:param _ReadIO: 读IO
|
5672
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5673
5647
|
:type ReadIO: :class:`tencentcloud.cdc.v20201214.models.DetailData`
|
5674
5648
|
:param _WriteIO: 写IO
|
5675
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5676
5649
|
:type WriteIO: :class:`tencentcloud.cdc.v20201214.models.DetailData`
|
5677
5650
|
:param _Await: 平均等待时间
|
5678
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5679
5651
|
:type Await: :class:`tencentcloud.cdc.v20201214.models.DetailData`
|
5680
5652
|
:param _Util: 利用率
|
5681
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5682
5653
|
:type Util: :class:`tencentcloud.cdc.v20201214.models.DetailData`
|
5683
5654
|
"""
|
5684
5655
|
self._SetId = None
|
@@ -5697,7 +5668,6 @@ class SetInfo(AbstractModel):
|
|
5697
5668
|
@property
|
5698
5669
|
def SetId(self):
|
5699
5670
|
"""云硬盘仓库id
|
5700
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5701
5671
|
:rtype: str
|
5702
5672
|
"""
|
5703
5673
|
return self._SetId
|
@@ -5709,7 +5679,6 @@ class SetInfo(AbstractModel):
|
|
5709
5679
|
@property
|
5710
5680
|
def SetName(self):
|
5711
5681
|
"""云硬盘仓库名称
|
5712
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5713
5682
|
:rtype: str
|
5714
5683
|
"""
|
5715
5684
|
return self._SetName
|
@@ -5721,7 +5690,6 @@ class SetInfo(AbstractModel):
|
|
5721
5690
|
@property
|
5722
5691
|
def SetType(self):
|
5723
5692
|
"""云硬盘仓库类型
|
5724
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5725
5693
|
:rtype: str
|
5726
5694
|
"""
|
5727
5695
|
return self._SetType
|
@@ -5733,7 +5701,6 @@ class SetInfo(AbstractModel):
|
|
5733
5701
|
@property
|
5734
5702
|
def SetSize(self):
|
5735
5703
|
"""云硬盘仓库容量
|
5736
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5737
5704
|
:rtype: float
|
5738
5705
|
"""
|
5739
5706
|
return self._SetSize
|
@@ -5745,7 +5712,6 @@ class SetInfo(AbstractModel):
|
|
5745
5712
|
@property
|
5746
5713
|
def SetStatus(self):
|
5747
5714
|
"""云硬盘仓库状态
|
5748
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5749
5715
|
:rtype: str
|
5750
5716
|
"""
|
5751
5717
|
return self._SetStatus
|
@@ -5757,7 +5723,6 @@ class SetInfo(AbstractModel):
|
|
5757
5723
|
@property
|
5758
5724
|
def CreateTime(self):
|
5759
5725
|
"""云硬盘仓库创建时间
|
5760
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5761
5726
|
:rtype: str
|
5762
5727
|
"""
|
5763
5728
|
return self._CreateTime
|
@@ -5769,7 +5734,6 @@ class SetInfo(AbstractModel):
|
|
5769
5734
|
@property
|
5770
5735
|
def ReadTraffic(self):
|
5771
5736
|
"""读流量
|
5772
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5773
5737
|
:rtype: :class:`tencentcloud.cdc.v20201214.models.DetailData`
|
5774
5738
|
"""
|
5775
5739
|
return self._ReadTraffic
|
@@ -5781,7 +5745,6 @@ class SetInfo(AbstractModel):
|
|
5781
5745
|
@property
|
5782
5746
|
def WriteTraffic(self):
|
5783
5747
|
"""写流量
|
5784
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5785
5748
|
:rtype: :class:`tencentcloud.cdc.v20201214.models.DetailData`
|
5786
5749
|
"""
|
5787
5750
|
return self._WriteTraffic
|
@@ -5793,7 +5756,6 @@ class SetInfo(AbstractModel):
|
|
5793
5756
|
@property
|
5794
5757
|
def ReadIO(self):
|
5795
5758
|
"""读IO
|
5796
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5797
5759
|
:rtype: :class:`tencentcloud.cdc.v20201214.models.DetailData`
|
5798
5760
|
"""
|
5799
5761
|
return self._ReadIO
|
@@ -5805,7 +5767,6 @@ class SetInfo(AbstractModel):
|
|
5805
5767
|
@property
|
5806
5768
|
def WriteIO(self):
|
5807
5769
|
"""写IO
|
5808
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5809
5770
|
:rtype: :class:`tencentcloud.cdc.v20201214.models.DetailData`
|
5810
5771
|
"""
|
5811
5772
|
return self._WriteIO
|
@@ -5817,7 +5778,6 @@ class SetInfo(AbstractModel):
|
|
5817
5778
|
@property
|
5818
5779
|
def Await(self):
|
5819
5780
|
"""平均等待时间
|
5820
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5821
5781
|
:rtype: :class:`tencentcloud.cdc.v20201214.models.DetailData`
|
5822
5782
|
"""
|
5823
5783
|
return self._Await
|
@@ -5829,7 +5789,6 @@ class SetInfo(AbstractModel):
|
|
5829
5789
|
@property
|
5830
5790
|
def Util(self):
|
5831
5791
|
"""利用率
|
5832
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5833
5792
|
:rtype: :class:`tencentcloud.cdc.v20201214.models.DetailData`
|
5834
5793
|
"""
|
5835
5794
|
return self._Util
|
@@ -5886,7 +5845,6 @@ class Site(AbstractModel):
|
|
5886
5845
|
:param _SiteId: 站点id
|
5887
5846
|
:type SiteId: str
|
5888
5847
|
:param _Description: 站点描述
|
5889
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5890
5848
|
:type Description: str
|
5891
5849
|
:param _CreateTime: 站点创建时间
|
5892
5850
|
:type CreateTime: str
|
@@ -5921,7 +5879,6 @@ class Site(AbstractModel):
|
|
5921
5879
|
@property
|
5922
5880
|
def Description(self):
|
5923
5881
|
"""站点描述
|
5924
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5925
5882
|
:rtype: str
|
5926
5883
|
"""
|
5927
5884
|
return self._Description
|
@@ -6362,7 +6319,6 @@ class VpngwBandwidthData(AbstractModel):
|
|
6362
6319
|
def __init__(self):
|
6363
6320
|
r"""
|
6364
6321
|
:param _OutBandwidth: 出带宽流量
|
6365
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6366
6322
|
:type OutBandwidth: :class:`tencentcloud.cdc.v20201214.models.OutBandwidth`
|
6367
6323
|
:param _InBandwidth: 入带宽流量
|
6368
6324
|
:type InBandwidth: :class:`tencentcloud.cdc.v20201214.models.InBandwidth`
|
@@ -6373,7 +6329,6 @@ class VpngwBandwidthData(AbstractModel):
|
|
6373
6329
|
@property
|
6374
6330
|
def OutBandwidth(self):
|
6375
6331
|
"""出带宽流量
|
6376
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6377
6332
|
:rtype: :class:`tencentcloud.cdc.v20201214.models.OutBandwidth`
|
6378
6333
|
"""
|
6379
6334
|
return self._OutBandwidth
|