tencentcloud-sdk-python 3.0.1356__py2.py3-none-any.whl → 3.0.1357__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/billing/v20180709/billing_client.py +0 -25
- tencentcloud/billing/v20180709/models.py +0 -512
- tencentcloud/cdb/v20170320/models.py +32 -4
- tencentcloud/ess/v20201111/ess_client.py +4 -2
- tencentcloud/ess/v20201111/models.py +206 -10
- tencentcloud/essbasic/v20210526/models.py +162 -12
- tencentcloud/gaap/v20180529/models.py +0 -90
- tencentcloud/gwlb/v20240906/models.py +20 -0
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +23 -0
- tencentcloud/iotexplorer/v20190423/models.py +254 -0
- tencentcloud/iotvideo/v20211125/iotvideo_client.py +23 -0
- tencentcloud/iotvideo/v20211125/models.py +254 -0
- tencentcloud/lowcode/v20210108/errorcodes.py +3 -0
- tencentcloud/mps/v20190612/models.py +28 -36
- tencentcloud/oceanus/v20190422/models.py +12 -0
- tencentcloud/ocr/v20181119/models.py +2 -2
- tencentcloud/ses/v20201002/models.py +15 -0
- tencentcloud/smop/v20201203/smop_client.py +3 -1
- tencentcloud/taf/v20200210/models.py +0 -270
- tencentcloud/taf/v20200210/taf_client.py +0 -23
- tencentcloud/tat/v20201028/errorcodes.py +6 -0
- tencentcloud/tat/v20201028/models.py +50 -2
- tencentcloud/tcss/v20201101/models.py +83 -8
- tencentcloud/tse/v20201207/models.py +0 -182
- tencentcloud/tsf/v20180326/models.py +12 -282
- tencentcloud/vpc/v20170312/errorcodes.py +3 -0
- tencentcloud/vpc/v20170312/models.py +25 -132
- {tencentcloud_sdk_python-3.0.1356.dist-info → tencentcloud_sdk_python-3.0.1357.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1356.dist-info → tencentcloud_sdk_python-3.0.1357.dist-info}/RECORD +33 -33
- {tencentcloud_sdk_python-3.0.1356.dist-info → tencentcloud_sdk_python-3.0.1357.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1356.dist-info → tencentcloud_sdk_python-3.0.1357.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1356.dist-info → tencentcloud_sdk_python-3.0.1357.dist-info}/top_level.txt +0 -0
@@ -23436,10 +23436,12 @@ class DescribeAssetImageDetailResponse(AbstractModel):
|
|
23436
23436
|
:type CreateTime: str
|
23437
23437
|
:param _Size: 镜像大小
|
23438
23438
|
:type Size: int
|
23439
|
-
:param _HostCnt: 关联主机个数
|
23439
|
+
:param _HostCnt: 关联主机个数(包含普通节点数和超级节点数)
|
23440
23440
|
:type HostCnt: int
|
23441
23441
|
:param _ContainerCnt: 关联容器个数
|
23442
23442
|
:type ContainerCnt: int
|
23443
|
+
:param _SuperNodeCnt: 超级节点数
|
23444
|
+
:type SuperNodeCnt: int
|
23443
23445
|
:param _ScanTime: 最近扫描时间
|
23444
23446
|
:type ScanTime: str
|
23445
23447
|
:param _VulCnt: 漏洞个数
|
@@ -23494,6 +23496,7 @@ class DescribeAssetImageDetailResponse(AbstractModel):
|
|
23494
23496
|
self._Size = None
|
23495
23497
|
self._HostCnt = None
|
23496
23498
|
self._ContainerCnt = None
|
23499
|
+
self._SuperNodeCnt = None
|
23497
23500
|
self._ScanTime = None
|
23498
23501
|
self._VulCnt = None
|
23499
23502
|
self._RiskCnt = None
|
@@ -23575,7 +23578,7 @@ class DescribeAssetImageDetailResponse(AbstractModel):
|
|
23575
23578
|
|
23576
23579
|
@property
|
23577
23580
|
def HostCnt(self):
|
23578
|
-
"""关联主机个数
|
23581
|
+
"""关联主机个数(包含普通节点数和超级节点数)
|
23579
23582
|
:rtype: int
|
23580
23583
|
"""
|
23581
23584
|
return self._HostCnt
|
@@ -23595,6 +23598,17 @@ class DescribeAssetImageDetailResponse(AbstractModel):
|
|
23595
23598
|
def ContainerCnt(self, ContainerCnt):
|
23596
23599
|
self._ContainerCnt = ContainerCnt
|
23597
23600
|
|
23601
|
+
@property
|
23602
|
+
def SuperNodeCnt(self):
|
23603
|
+
"""超级节点数
|
23604
|
+
:rtype: int
|
23605
|
+
"""
|
23606
|
+
return self._SuperNodeCnt
|
23607
|
+
|
23608
|
+
@SuperNodeCnt.setter
|
23609
|
+
def SuperNodeCnt(self, SuperNodeCnt):
|
23610
|
+
self._SuperNodeCnt = SuperNodeCnt
|
23611
|
+
|
23598
23612
|
@property
|
23599
23613
|
def ScanTime(self):
|
23600
23614
|
"""最近扫描时间
|
@@ -23857,6 +23871,7 @@ class DescribeAssetImageDetailResponse(AbstractModel):
|
|
23857
23871
|
self._Size = params.get("Size")
|
23858
23872
|
self._HostCnt = params.get("HostCnt")
|
23859
23873
|
self._ContainerCnt = params.get("ContainerCnt")
|
23874
|
+
self._SuperNodeCnt = params.get("SuperNodeCnt")
|
23860
23875
|
self._ScanTime = params.get("ScanTime")
|
23861
23876
|
self._VulCnt = params.get("VulCnt")
|
23862
23877
|
self._RiskCnt = params.get("RiskCnt")
|
@@ -39696,6 +39711,8 @@ State为4时,有效值为: ISOLATE(隔离) DESTROED(已销毁)
|
|
39696
39711
|
:type DefendClusterCoresCnt: int
|
39697
39712
|
:param _DefendHostCoresCnt: 已防护主机核数
|
39698
39713
|
:type DefendHostCoresCnt: int
|
39714
|
+
:param _TrialCoresCnt: 试用的专业版核数
|
39715
|
+
:type TrialCoresCnt: int
|
39699
39716
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
39700
39717
|
:type RequestId: str
|
39701
39718
|
"""
|
@@ -39719,6 +39736,7 @@ State为4时,有效值为: ISOLATE(隔离) DESTROED(已销毁)
|
|
39719
39736
|
self._FlexibleCoresLimit = None
|
39720
39737
|
self._DefendClusterCoresCnt = None
|
39721
39738
|
self._DefendHostCoresCnt = None
|
39739
|
+
self._TrialCoresCnt = None
|
39722
39740
|
self._RequestId = None
|
39723
39741
|
|
39724
39742
|
@property
|
@@ -39942,6 +39960,17 @@ State为4时,有效值为: ISOLATE(隔离) DESTROED(已销毁)
|
|
39942
39960
|
def DefendHostCoresCnt(self, DefendHostCoresCnt):
|
39943
39961
|
self._DefendHostCoresCnt = DefendHostCoresCnt
|
39944
39962
|
|
39963
|
+
@property
|
39964
|
+
def TrialCoresCnt(self):
|
39965
|
+
"""试用的专业版核数
|
39966
|
+
:rtype: int
|
39967
|
+
"""
|
39968
|
+
return self._TrialCoresCnt
|
39969
|
+
|
39970
|
+
@TrialCoresCnt.setter
|
39971
|
+
def TrialCoresCnt(self, TrialCoresCnt):
|
39972
|
+
self._TrialCoresCnt = TrialCoresCnt
|
39973
|
+
|
39945
39974
|
@property
|
39946
39975
|
def RequestId(self):
|
39947
39976
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
@@ -39975,6 +40004,7 @@ State为4时,有效值为: ISOLATE(隔离) DESTROED(已销毁)
|
|
39975
40004
|
self._FlexibleCoresLimit = params.get("FlexibleCoresLimit")
|
39976
40005
|
self._DefendClusterCoresCnt = params.get("DefendClusterCoresCnt")
|
39977
40006
|
self._DefendHostCoresCnt = params.get("DefendHostCoresCnt")
|
40007
|
+
self._TrialCoresCnt = params.get("TrialCoresCnt")
|
39978
40008
|
self._RequestId = params.get("RequestId")
|
39979
40009
|
|
39980
40010
|
|
@@ -54148,8 +54178,10 @@ class EscapeWhiteListInfo(AbstractModel):
|
|
54148
54178
|
:type ImageName: str
|
54149
54179
|
:param _ID: 白名单记录ID
|
54150
54180
|
:type ID: int
|
54151
|
-
:param _HostCount:
|
54181
|
+
:param _HostCount: 关联主机数量(包含普通节点和超级节点数量)
|
54152
54182
|
:type HostCount: int
|
54183
|
+
:param _SuperNodeCount: 关联超级节点数量
|
54184
|
+
:type SuperNodeCount: int
|
54153
54185
|
:param _ContainerCount: 关联容器数量
|
54154
54186
|
:type ContainerCount: int
|
54155
54187
|
:param _EventType: 加白事件类型
|
@@ -54165,6 +54197,7 @@ class EscapeWhiteListInfo(AbstractModel):
|
|
54165
54197
|
self._ImageName = None
|
54166
54198
|
self._ID = None
|
54167
54199
|
self._HostCount = None
|
54200
|
+
self._SuperNodeCount = None
|
54168
54201
|
self._ContainerCount = None
|
54169
54202
|
self._EventType = None
|
54170
54203
|
self._InsertTime = None
|
@@ -54206,7 +54239,7 @@ class EscapeWhiteListInfo(AbstractModel):
|
|
54206
54239
|
|
54207
54240
|
@property
|
54208
54241
|
def HostCount(self):
|
54209
|
-
"""
|
54242
|
+
"""关联主机数量(包含普通节点和超级节点数量)
|
54210
54243
|
:rtype: int
|
54211
54244
|
"""
|
54212
54245
|
return self._HostCount
|
@@ -54215,6 +54248,17 @@ class EscapeWhiteListInfo(AbstractModel):
|
|
54215
54248
|
def HostCount(self, HostCount):
|
54216
54249
|
self._HostCount = HostCount
|
54217
54250
|
|
54251
|
+
@property
|
54252
|
+
def SuperNodeCount(self):
|
54253
|
+
"""关联超级节点数量
|
54254
|
+
:rtype: int
|
54255
|
+
"""
|
54256
|
+
return self._SuperNodeCount
|
54257
|
+
|
54258
|
+
@SuperNodeCount.setter
|
54259
|
+
def SuperNodeCount(self, SuperNodeCount):
|
54260
|
+
self._SuperNodeCount = SuperNodeCount
|
54261
|
+
|
54218
54262
|
@property
|
54219
54263
|
def ContainerCount(self):
|
54220
54264
|
"""关联容器数量
|
@@ -54276,6 +54320,7 @@ class EscapeWhiteListInfo(AbstractModel):
|
|
54276
54320
|
self._ImageName = params.get("ImageName")
|
54277
54321
|
self._ID = params.get("ID")
|
54278
54322
|
self._HostCount = params.get("HostCount")
|
54323
|
+
self._SuperNodeCount = params.get("SuperNodeCount")
|
54279
54324
|
self._ContainerCount = params.get("ContainerCount")
|
54280
54325
|
self._EventType = params.get("EventType")
|
54281
54326
|
self._InsertTime = params.get("InsertTime")
|
@@ -58550,8 +58595,10 @@ class ImagesInfo(AbstractModel):
|
|
58550
58595
|
:type CreateTime: str
|
58551
58596
|
:param _Size: 镜像大小
|
58552
58597
|
:type Size: int
|
58553
|
-
:param _HostCnt: 主机个数
|
58598
|
+
:param _HostCnt: 主机个数(包含普通节点数和超级节点数)
|
58554
58599
|
:type HostCnt: int
|
58600
|
+
:param _SuperNodeCnt: 超级节点数
|
58601
|
+
:type SuperNodeCnt: int
|
58555
58602
|
:param _ContainerCnt: 容器个数
|
58556
58603
|
:type ContainerCnt: int
|
58557
58604
|
:param _ScanTime: 扫描时间
|
@@ -58602,6 +58649,7 @@ class ImagesInfo(AbstractModel):
|
|
58602
58649
|
self._CreateTime = None
|
58603
58650
|
self._Size = None
|
58604
58651
|
self._HostCnt = None
|
58652
|
+
self._SuperNodeCnt = None
|
58605
58653
|
self._ContainerCnt = None
|
58606
58654
|
self._ScanTime = None
|
58607
58655
|
self._VulCnt = None
|
@@ -58671,7 +58719,7 @@ class ImagesInfo(AbstractModel):
|
|
58671
58719
|
|
58672
58720
|
@property
|
58673
58721
|
def HostCnt(self):
|
58674
|
-
"""主机个数
|
58722
|
+
"""主机个数(包含普通节点数和超级节点数)
|
58675
58723
|
:rtype: int
|
58676
58724
|
"""
|
58677
58725
|
return self._HostCnt
|
@@ -58680,6 +58728,17 @@ class ImagesInfo(AbstractModel):
|
|
58680
58728
|
def HostCnt(self, HostCnt):
|
58681
58729
|
self._HostCnt = HostCnt
|
58682
58730
|
|
58731
|
+
@property
|
58732
|
+
def SuperNodeCnt(self):
|
58733
|
+
"""超级节点数
|
58734
|
+
:rtype: int
|
58735
|
+
"""
|
58736
|
+
return self._SuperNodeCnt
|
58737
|
+
|
58738
|
+
@SuperNodeCnt.setter
|
58739
|
+
def SuperNodeCnt(self, SuperNodeCnt):
|
58740
|
+
self._SuperNodeCnt = SuperNodeCnt
|
58741
|
+
|
58683
58742
|
@property
|
58684
58743
|
def ContainerCnt(self):
|
58685
58744
|
"""容器个数
|
@@ -58929,6 +58988,7 @@ class ImagesInfo(AbstractModel):
|
|
58929
58988
|
self._CreateTime = params.get("CreateTime")
|
58930
58989
|
self._Size = params.get("Size")
|
58931
58990
|
self._HostCnt = params.get("HostCnt")
|
58991
|
+
self._SuperNodeCnt = params.get("SuperNodeCnt")
|
58932
58992
|
self._ContainerCnt = params.get("ContainerCnt")
|
58933
58993
|
self._ScanTime = params.get("ScanTime")
|
58934
58994
|
self._VulCnt = params.get("VulCnt")
|
@@ -76326,8 +76386,10 @@ class VulAffectedImageInfo(AbstractModel):
|
|
76326
76386
|
:type ImageID: str
|
76327
76387
|
:param _ImageName: 镜像名称
|
76328
76388
|
:type ImageName: str
|
76329
|
-
:param _HostCount: 关联的主机数
|
76389
|
+
:param _HostCount: 关联的主机数(包含普通节点数和超级节点数)
|
76330
76390
|
:type HostCount: int
|
76391
|
+
:param _SuperNodeCount: 关联的超级节点数
|
76392
|
+
:type SuperNodeCount: int
|
76331
76393
|
:param _ContainerCount: 关联的容器数
|
76332
76394
|
:type ContainerCount: int
|
76333
76395
|
:param _ComponentList: 组件列表
|
@@ -76336,6 +76398,7 @@ class VulAffectedImageInfo(AbstractModel):
|
|
76336
76398
|
self._ImageID = None
|
76337
76399
|
self._ImageName = None
|
76338
76400
|
self._HostCount = None
|
76401
|
+
self._SuperNodeCount = None
|
76339
76402
|
self._ContainerCount = None
|
76340
76403
|
self._ComponentList = None
|
76341
76404
|
|
@@ -76363,7 +76426,7 @@ class VulAffectedImageInfo(AbstractModel):
|
|
76363
76426
|
|
76364
76427
|
@property
|
76365
76428
|
def HostCount(self):
|
76366
|
-
"""关联的主机数
|
76429
|
+
"""关联的主机数(包含普通节点数和超级节点数)
|
76367
76430
|
:rtype: int
|
76368
76431
|
"""
|
76369
76432
|
return self._HostCount
|
@@ -76372,6 +76435,17 @@ class VulAffectedImageInfo(AbstractModel):
|
|
76372
76435
|
def HostCount(self, HostCount):
|
76373
76436
|
self._HostCount = HostCount
|
76374
76437
|
|
76438
|
+
@property
|
76439
|
+
def SuperNodeCount(self):
|
76440
|
+
"""关联的超级节点数
|
76441
|
+
:rtype: int
|
76442
|
+
"""
|
76443
|
+
return self._SuperNodeCount
|
76444
|
+
|
76445
|
+
@SuperNodeCount.setter
|
76446
|
+
def SuperNodeCount(self, SuperNodeCount):
|
76447
|
+
self._SuperNodeCount = SuperNodeCount
|
76448
|
+
|
76375
76449
|
@property
|
76376
76450
|
def ContainerCount(self):
|
76377
76451
|
"""关联的容器数
|
@@ -76399,6 +76473,7 @@ class VulAffectedImageInfo(AbstractModel):
|
|
76399
76473
|
self._ImageID = params.get("ImageID")
|
76400
76474
|
self._ImageName = params.get("ImageName")
|
76401
76475
|
self._HostCount = params.get("HostCount")
|
76476
|
+
self._SuperNodeCount = params.get("SuperNodeCount")
|
76402
76477
|
self._ContainerCount = params.get("ContainerCount")
|
76403
76478
|
if params.get("ComponentList") is not None:
|
76404
76479
|
self._ComponentList = []
|