tencentcloud-sdk-python 3.0.1145__py2.py3-none-any.whl → 3.0.1147__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/cdwdoris/v20211228/models.py +96 -0
- tencentcloud/ckafka/v20190819/models.py +434 -2
- tencentcloud/cls/v20201016/models.py +1 -1
- tencentcloud/csip/v20221121/csip_client.py +23 -0
- tencentcloud/csip/v20221121/models.py +234 -0
- tencentcloud/cwp/v20180228/models.py +6 -4
- tencentcloud/dnspod/v20210323/models.py +1 -1
- tencentcloud/ess/v20201111/models.py +12 -0
- tencentcloud/essbasic/v20210526/essbasic_client.py +3 -78
- tencentcloud/essbasic/v20210526/models.py +2 -47
- tencentcloud/tcss/v20201101/models.py +316 -0
- tencentcloud/tcss/v20201101/tcss_client.py +23 -0
- tencentcloud/tke/v20220501/models.py +1 -1
- tencentcloud/tse/v20201207/models.py +25 -0
- tencentcloud/vod/v20180717/models.py +3 -2
- {tencentcloud_sdk_python-3.0.1145.dist-info → tencentcloud_sdk_python-3.0.1147.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1145.dist-info → tencentcloud_sdk_python-3.0.1147.dist-info}/RECORD +21 -21
- {tencentcloud_sdk_python-3.0.1145.dist-info → tencentcloud_sdk_python-3.0.1147.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1145.dist-info → tencentcloud_sdk_python-3.0.1147.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1145.dist-info → tencentcloud_sdk_python-3.0.1147.dist-info}/top_level.txt +0 -0
@@ -28662,6 +28662,150 @@ class DescribeEscapeWhiteListResponse(AbstractModel):
|
|
28662
28662
|
self._RequestId = params.get("RequestId")
|
28663
28663
|
|
28664
28664
|
|
28665
|
+
class DescribeEventEscapeImageListRequest(AbstractModel):
|
28666
|
+
"""DescribeEventEscapeImageList请求参数结构体
|
28667
|
+
|
28668
|
+
"""
|
28669
|
+
|
28670
|
+
def __init__(self):
|
28671
|
+
r"""
|
28672
|
+
:param _Limit: 需要返回的数量,默认为10,最大值为100
|
28673
|
+
:type Limit: int
|
28674
|
+
:param _Offset: 偏移量,默认为0。
|
28675
|
+
:type Offset: int
|
28676
|
+
:param _Filters: 过滤参数:
|
28677
|
+
EventType: 事件类型(MOUNT_SENSITIVE_PTAH:敏感路径挂载 PRIVILEGE_CONTAINER_START:特权容器)
|
28678
|
+
Status: 事件状态(EVENT_UNDEAL:未处理,EVENT_DEALED:已处理,EVENT_INGNORE:忽略)
|
28679
|
+
ImageID: 镜像id
|
28680
|
+
ImageName:镜像名称
|
28681
|
+
:type Filters: list of RunTimeFilters
|
28682
|
+
:param _Order: 升序降序,asc desc
|
28683
|
+
:type Order: str
|
28684
|
+
:param _By: 排序字段
|
28685
|
+
:type By: str
|
28686
|
+
"""
|
28687
|
+
self._Limit = None
|
28688
|
+
self._Offset = None
|
28689
|
+
self._Filters = None
|
28690
|
+
self._Order = None
|
28691
|
+
self._By = None
|
28692
|
+
|
28693
|
+
@property
|
28694
|
+
def Limit(self):
|
28695
|
+
return self._Limit
|
28696
|
+
|
28697
|
+
@Limit.setter
|
28698
|
+
def Limit(self, Limit):
|
28699
|
+
self._Limit = Limit
|
28700
|
+
|
28701
|
+
@property
|
28702
|
+
def Offset(self):
|
28703
|
+
return self._Offset
|
28704
|
+
|
28705
|
+
@Offset.setter
|
28706
|
+
def Offset(self, Offset):
|
28707
|
+
self._Offset = Offset
|
28708
|
+
|
28709
|
+
@property
|
28710
|
+
def Filters(self):
|
28711
|
+
return self._Filters
|
28712
|
+
|
28713
|
+
@Filters.setter
|
28714
|
+
def Filters(self, Filters):
|
28715
|
+
self._Filters = Filters
|
28716
|
+
|
28717
|
+
@property
|
28718
|
+
def Order(self):
|
28719
|
+
return self._Order
|
28720
|
+
|
28721
|
+
@Order.setter
|
28722
|
+
def Order(self, Order):
|
28723
|
+
self._Order = Order
|
28724
|
+
|
28725
|
+
@property
|
28726
|
+
def By(self):
|
28727
|
+
return self._By
|
28728
|
+
|
28729
|
+
@By.setter
|
28730
|
+
def By(self, By):
|
28731
|
+
self._By = By
|
28732
|
+
|
28733
|
+
|
28734
|
+
def _deserialize(self, params):
|
28735
|
+
self._Limit = params.get("Limit")
|
28736
|
+
self._Offset = params.get("Offset")
|
28737
|
+
if params.get("Filters") is not None:
|
28738
|
+
self._Filters = []
|
28739
|
+
for item in params.get("Filters"):
|
28740
|
+
obj = RunTimeFilters()
|
28741
|
+
obj._deserialize(item)
|
28742
|
+
self._Filters.append(obj)
|
28743
|
+
self._Order = params.get("Order")
|
28744
|
+
self._By = params.get("By")
|
28745
|
+
memeber_set = set(params.keys())
|
28746
|
+
for name, value in vars(self).items():
|
28747
|
+
property_name = name[1:]
|
28748
|
+
if property_name in memeber_set:
|
28749
|
+
memeber_set.remove(property_name)
|
28750
|
+
if len(memeber_set) > 0:
|
28751
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
28752
|
+
|
28753
|
+
|
28754
|
+
|
28755
|
+
class DescribeEventEscapeImageListResponse(AbstractModel):
|
28756
|
+
"""DescribeEventEscapeImageList返回参数结构体
|
28757
|
+
|
28758
|
+
"""
|
28759
|
+
|
28760
|
+
def __init__(self):
|
28761
|
+
r"""
|
28762
|
+
:param _List: 风险容器镜像列表
|
28763
|
+
:type List: list of EventEscapeImageInfo
|
28764
|
+
:param _TotalCount: 事件总数量
|
28765
|
+
:type TotalCount: int
|
28766
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
28767
|
+
:type RequestId: str
|
28768
|
+
"""
|
28769
|
+
self._List = None
|
28770
|
+
self._TotalCount = None
|
28771
|
+
self._RequestId = None
|
28772
|
+
|
28773
|
+
@property
|
28774
|
+
def List(self):
|
28775
|
+
return self._List
|
28776
|
+
|
28777
|
+
@List.setter
|
28778
|
+
def List(self, List):
|
28779
|
+
self._List = List
|
28780
|
+
|
28781
|
+
@property
|
28782
|
+
def TotalCount(self):
|
28783
|
+
return self._TotalCount
|
28784
|
+
|
28785
|
+
@TotalCount.setter
|
28786
|
+
def TotalCount(self, TotalCount):
|
28787
|
+
self._TotalCount = TotalCount
|
28788
|
+
|
28789
|
+
@property
|
28790
|
+
def RequestId(self):
|
28791
|
+
return self._RequestId
|
28792
|
+
|
28793
|
+
@RequestId.setter
|
28794
|
+
def RequestId(self, RequestId):
|
28795
|
+
self._RequestId = RequestId
|
28796
|
+
|
28797
|
+
|
28798
|
+
def _deserialize(self, params):
|
28799
|
+
if params.get("List") is not None:
|
28800
|
+
self._List = []
|
28801
|
+
for item in params.get("List"):
|
28802
|
+
obj = EventEscapeImageInfo()
|
28803
|
+
obj._deserialize(item)
|
28804
|
+
self._List.append(obj)
|
28805
|
+
self._TotalCount = params.get("TotalCount")
|
28806
|
+
self._RequestId = params.get("RequestId")
|
28807
|
+
|
28808
|
+
|
28665
28809
|
class DescribeExportJobDownloadURLRequest(AbstractModel):
|
28666
28810
|
"""DescribeExportJobDownloadURL请求参数结构体
|
28667
28811
|
|
@@ -44970,6 +45114,178 @@ class EscapeWhiteListInfo(AbstractModel):
|
|
44970
45114
|
|
44971
45115
|
|
44972
45116
|
|
45117
|
+
class EventEscapeImageInfo(AbstractModel):
|
45118
|
+
"""风险容器信息
|
45119
|
+
|
45120
|
+
"""
|
45121
|
+
|
45122
|
+
def __init__(self):
|
45123
|
+
r"""
|
45124
|
+
:param _ImageId: 镜像id,用于跳转
|
45125
|
+
:type ImageId: str
|
45126
|
+
:param _UniqueKey: 唯一值
|
45127
|
+
:type UniqueKey: str
|
45128
|
+
:param _EventType: 事件类型
|
45129
|
+
ESCAPE_CGROUPS:利用cgroup机制逃逸
|
45130
|
+
ESCAPE_TAMPER_SENSITIVE_FILE:篡改敏感文件逃逸
|
45131
|
+
ESCAPE_DOCKER_API:访问Docker API接口逃逸
|
45132
|
+
ESCAPE_VUL_OCCURRED:逃逸漏洞利用
|
45133
|
+
MOUNT_SENSITIVE_PTAH:敏感路径挂载
|
45134
|
+
PRIVILEGE_CONTAINER_START:特权容器
|
45135
|
+
PRIVILEGE:程序提权逃逸
|
45136
|
+
:type EventType: str
|
45137
|
+
:param _OriginEventType: 原始事件类型
|
45138
|
+
:type OriginEventType: str
|
45139
|
+
:param _ImageName: 镜像名
|
45140
|
+
:type ImageName: str
|
45141
|
+
:param _ContainerCount: 容器数量
|
45142
|
+
:type ContainerCount: int
|
45143
|
+
:param _FoundTime: 生成时间
|
45144
|
+
:type FoundTime: str
|
45145
|
+
:param _LatestFoundTime: 最近生成时间
|
45146
|
+
:type LatestFoundTime: str
|
45147
|
+
:param _EventCount: 事件数量
|
45148
|
+
:type EventCount: int
|
45149
|
+
:param _Status: 状态,EVENT_UNDEAL:未处理,EVENT_DEALED:已处理,EVENT_INGNORE:忽略
|
45150
|
+
:type Status: str
|
45151
|
+
:param _Description: 风险描述
|
45152
|
+
:type Description: str
|
45153
|
+
:param _Solution: 解决方案
|
45154
|
+
:type Solution: str
|
45155
|
+
"""
|
45156
|
+
self._ImageId = None
|
45157
|
+
self._UniqueKey = None
|
45158
|
+
self._EventType = None
|
45159
|
+
self._OriginEventType = None
|
45160
|
+
self._ImageName = None
|
45161
|
+
self._ContainerCount = None
|
45162
|
+
self._FoundTime = None
|
45163
|
+
self._LatestFoundTime = None
|
45164
|
+
self._EventCount = None
|
45165
|
+
self._Status = None
|
45166
|
+
self._Description = None
|
45167
|
+
self._Solution = None
|
45168
|
+
|
45169
|
+
@property
|
45170
|
+
def ImageId(self):
|
45171
|
+
return self._ImageId
|
45172
|
+
|
45173
|
+
@ImageId.setter
|
45174
|
+
def ImageId(self, ImageId):
|
45175
|
+
self._ImageId = ImageId
|
45176
|
+
|
45177
|
+
@property
|
45178
|
+
def UniqueKey(self):
|
45179
|
+
return self._UniqueKey
|
45180
|
+
|
45181
|
+
@UniqueKey.setter
|
45182
|
+
def UniqueKey(self, UniqueKey):
|
45183
|
+
self._UniqueKey = UniqueKey
|
45184
|
+
|
45185
|
+
@property
|
45186
|
+
def EventType(self):
|
45187
|
+
return self._EventType
|
45188
|
+
|
45189
|
+
@EventType.setter
|
45190
|
+
def EventType(self, EventType):
|
45191
|
+
self._EventType = EventType
|
45192
|
+
|
45193
|
+
@property
|
45194
|
+
def OriginEventType(self):
|
45195
|
+
return self._OriginEventType
|
45196
|
+
|
45197
|
+
@OriginEventType.setter
|
45198
|
+
def OriginEventType(self, OriginEventType):
|
45199
|
+
self._OriginEventType = OriginEventType
|
45200
|
+
|
45201
|
+
@property
|
45202
|
+
def ImageName(self):
|
45203
|
+
return self._ImageName
|
45204
|
+
|
45205
|
+
@ImageName.setter
|
45206
|
+
def ImageName(self, ImageName):
|
45207
|
+
self._ImageName = ImageName
|
45208
|
+
|
45209
|
+
@property
|
45210
|
+
def ContainerCount(self):
|
45211
|
+
return self._ContainerCount
|
45212
|
+
|
45213
|
+
@ContainerCount.setter
|
45214
|
+
def ContainerCount(self, ContainerCount):
|
45215
|
+
self._ContainerCount = ContainerCount
|
45216
|
+
|
45217
|
+
@property
|
45218
|
+
def FoundTime(self):
|
45219
|
+
return self._FoundTime
|
45220
|
+
|
45221
|
+
@FoundTime.setter
|
45222
|
+
def FoundTime(self, FoundTime):
|
45223
|
+
self._FoundTime = FoundTime
|
45224
|
+
|
45225
|
+
@property
|
45226
|
+
def LatestFoundTime(self):
|
45227
|
+
return self._LatestFoundTime
|
45228
|
+
|
45229
|
+
@LatestFoundTime.setter
|
45230
|
+
def LatestFoundTime(self, LatestFoundTime):
|
45231
|
+
self._LatestFoundTime = LatestFoundTime
|
45232
|
+
|
45233
|
+
@property
|
45234
|
+
def EventCount(self):
|
45235
|
+
return self._EventCount
|
45236
|
+
|
45237
|
+
@EventCount.setter
|
45238
|
+
def EventCount(self, EventCount):
|
45239
|
+
self._EventCount = EventCount
|
45240
|
+
|
45241
|
+
@property
|
45242
|
+
def Status(self):
|
45243
|
+
return self._Status
|
45244
|
+
|
45245
|
+
@Status.setter
|
45246
|
+
def Status(self, Status):
|
45247
|
+
self._Status = Status
|
45248
|
+
|
45249
|
+
@property
|
45250
|
+
def Description(self):
|
45251
|
+
return self._Description
|
45252
|
+
|
45253
|
+
@Description.setter
|
45254
|
+
def Description(self, Description):
|
45255
|
+
self._Description = Description
|
45256
|
+
|
45257
|
+
@property
|
45258
|
+
def Solution(self):
|
45259
|
+
return self._Solution
|
45260
|
+
|
45261
|
+
@Solution.setter
|
45262
|
+
def Solution(self, Solution):
|
45263
|
+
self._Solution = Solution
|
45264
|
+
|
45265
|
+
|
45266
|
+
def _deserialize(self, params):
|
45267
|
+
self._ImageId = params.get("ImageId")
|
45268
|
+
self._UniqueKey = params.get("UniqueKey")
|
45269
|
+
self._EventType = params.get("EventType")
|
45270
|
+
self._OriginEventType = params.get("OriginEventType")
|
45271
|
+
self._ImageName = params.get("ImageName")
|
45272
|
+
self._ContainerCount = params.get("ContainerCount")
|
45273
|
+
self._FoundTime = params.get("FoundTime")
|
45274
|
+
self._LatestFoundTime = params.get("LatestFoundTime")
|
45275
|
+
self._EventCount = params.get("EventCount")
|
45276
|
+
self._Status = params.get("Status")
|
45277
|
+
self._Description = params.get("Description")
|
45278
|
+
self._Solution = params.get("Solution")
|
45279
|
+
memeber_set = set(params.keys())
|
45280
|
+
for name, value in vars(self).items():
|
45281
|
+
property_name = name[1:]
|
45282
|
+
if property_name in memeber_set:
|
45283
|
+
memeber_set.remove(property_name)
|
45284
|
+
if len(memeber_set) > 0:
|
45285
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
45286
|
+
|
45287
|
+
|
45288
|
+
|
44973
45289
|
class ExportJobInfo(AbstractModel):
|
44974
45290
|
"""导出任务详情
|
44975
45291
|
|
@@ -3824,6 +3824,29 @@ class TcssClient(AbstractClient):
|
|
3824
3824
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
3825
3825
|
|
3826
3826
|
|
3827
|
+
def DescribeEventEscapeImageList(self, request):
|
3828
|
+
"""DescribeRiskContainerImageList查询风险容器镜像列表
|
3829
|
+
|
3830
|
+
:param request: Request instance for DescribeEventEscapeImageList.
|
3831
|
+
:type request: :class:`tencentcloud.tcss.v20201101.models.DescribeEventEscapeImageListRequest`
|
3832
|
+
:rtype: :class:`tencentcloud.tcss.v20201101.models.DescribeEventEscapeImageListResponse`
|
3833
|
+
|
3834
|
+
"""
|
3835
|
+
try:
|
3836
|
+
params = request._serialize()
|
3837
|
+
headers = request.headers
|
3838
|
+
body = self.call("DescribeEventEscapeImageList", params, headers=headers)
|
3839
|
+
response = json.loads(body)
|
3840
|
+
model = models.DescribeEventEscapeImageListResponse()
|
3841
|
+
model._deserialize(response["Response"])
|
3842
|
+
return model
|
3843
|
+
except Exception as e:
|
3844
|
+
if isinstance(e, TencentCloudSDKException):
|
3845
|
+
raise
|
3846
|
+
else:
|
3847
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
3848
|
+
|
3849
|
+
|
3827
3850
|
def DescribeExportJobDownloadURL(self, request):
|
3828
3851
|
"""查询导出任务下载URL
|
3829
3852
|
|
@@ -1742,7 +1742,7 @@ class InstanceChargePrepaid(AbstractModel):
|
|
1742
1742
|
:type Period: int
|
1743
1743
|
:param _RenewFlag: 预付费续费方式:
|
1744
1744
|
- NOTIFY_AND_AUTO_RENEW:通知用户过期,且自动续费 (默认)
|
1745
|
-
- NOTIFY_AND_MANUAL_RENEW
|
1745
|
+
- NOTIFY_AND_MANUAL_RENEW:通知用户过期,但不自动续费
|
1746
1746
|
- DISABLE_NOTIFY_AND_MANUAL_RENEW:不通知用户过期,也不自动续费
|
1747
1747
|
|
1748
1748
|
:type RenewFlag: str
|
@@ -5672,6 +5672,11 @@ zk专业版跨地域部署开启了固定Leader所在地域,需要满足以下
|
|
5672
5672
|
- 固定Leader所在地域当前仅支持跨两个地域
|
5673
5673
|
- leader地域的副本数必须是3/2 + 1,5/2+1,7/2+1,也就是 2,3,4
|
5674
5674
|
:type EngineRegionInfos: list of EngineRegionInfo
|
5675
|
+
:param _StorageType: zk标准版请填CLOUD_PREMIUM,zk标准版无法选择磁盘类型和磁盘容量,默认为CLOUD_PREMIUM
|
5676
|
+
zk专业版可以为:CLOUD_SSD,CLOUD_SSD_PLUS,CLOUD_PREMIUM
|
5677
|
+
:type StorageType: str
|
5678
|
+
:param _StorageCapacity: zk标准版请填50,zk标准版无法选择磁盘类型和磁盘容量,磁盘容量默认为50
|
5679
|
+
:type StorageCapacity: int
|
5675
5680
|
:param _StorageOption: zk专业版至多有两个盘,且磁盘的容量在50-3200之间
|
5676
5681
|
如果只有一个磁盘,storageCapacity与storageOption里面的capacity应该一致
|
5677
5682
|
:type StorageOption: list of StorageOption
|
@@ -5694,6 +5699,8 @@ zk专业版跨地域部署开启了固定Leader所在地域,需要满足以下
|
|
5694
5699
|
self._PrepaidPeriod = None
|
5695
5700
|
self._PrepaidRenewFlag = None
|
5696
5701
|
self._EngineRegionInfos = None
|
5702
|
+
self._StorageType = None
|
5703
|
+
self._StorageCapacity = None
|
5697
5704
|
self._StorageOption = None
|
5698
5705
|
self._AffinityConstraint = None
|
5699
5706
|
|
@@ -5825,6 +5832,22 @@ zk专业版跨地域部署开启了固定Leader所在地域,需要满足以下
|
|
5825
5832
|
def EngineRegionInfos(self, EngineRegionInfos):
|
5826
5833
|
self._EngineRegionInfos = EngineRegionInfos
|
5827
5834
|
|
5835
|
+
@property
|
5836
|
+
def StorageType(self):
|
5837
|
+
return self._StorageType
|
5838
|
+
|
5839
|
+
@StorageType.setter
|
5840
|
+
def StorageType(self, StorageType):
|
5841
|
+
self._StorageType = StorageType
|
5842
|
+
|
5843
|
+
@property
|
5844
|
+
def StorageCapacity(self):
|
5845
|
+
return self._StorageCapacity
|
5846
|
+
|
5847
|
+
@StorageCapacity.setter
|
5848
|
+
def StorageCapacity(self, StorageCapacity):
|
5849
|
+
self._StorageCapacity = StorageCapacity
|
5850
|
+
|
5828
5851
|
@property
|
5829
5852
|
def StorageOption(self):
|
5830
5853
|
return self._StorageOption
|
@@ -5876,6 +5899,8 @@ zk专业版跨地域部署开启了固定Leader所在地域,需要满足以下
|
|
5876
5899
|
obj = EngineRegionInfo()
|
5877
5900
|
obj._deserialize(item)
|
5878
5901
|
self._EngineRegionInfos.append(obj)
|
5902
|
+
self._StorageType = params.get("StorageType")
|
5903
|
+
self._StorageCapacity = params.get("StorageCapacity")
|
5879
5904
|
if params.get("StorageOption") is not None:
|
5880
5905
|
self._StorageOption = []
|
5881
5906
|
for item in params.get("StorageOption"):
|
@@ -24605,7 +24605,8 @@ class DescribeTaskDetailResponse(AbstractModel):
|
|
24605
24605
|
:param _Status: 任务状态,取值:
|
24606
24606
|
<li>WAITING:等待中;</li>
|
24607
24607
|
<li>PROCESSING:处理中;</li>
|
24608
|
-
<li>FINISH
|
24608
|
+
<li>FINISH:已完成;</li>
|
24609
|
+
<li>ABORTED:已终止。</li>
|
24609
24610
|
:type Status: str
|
24610
24611
|
:param _CreateTime: 任务的创建时间,采用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
|
24611
24612
|
:type CreateTime: str
|
@@ -55524,7 +55525,7 @@ class TaskSimpleInfo(AbstractModel):
|
|
55524
55525
|
r"""
|
55525
55526
|
:param _TaskId: 任务 ID。
|
55526
55527
|
:type TaskId: str
|
55527
|
-
:param _Status: 任务状态。取值:WAITING(等待中)、PROCESSING(处理中)、FINISH
|
55528
|
+
:param _Status: 任务状态。取值:WAITING(等待中)、PROCESSING(处理中)、FINISH(已完成)、ABORTED(已终止)。
|
55528
55529
|
:type Status: str
|
55529
55530
|
:param _FileId: 视频 ID。
|
55530
55531
|
:type FileId: str
|
{tencentcloud_sdk_python-3.0.1145.dist-info → tencentcloud_sdk_python-3.0.1147.dist-info}/RECORD
RENAMED
@@ -50,7 +50,7 @@ QcloudApi/modules/vod.py,sha256=l05_qYx0l5bq6LJ8mAX2YO3pRXzxY3JMdDHV1N_SRKE,679
|
|
50
50
|
QcloudApi/modules/vpc.py,sha256=JBiNpcnrAwf_UJ_UdpxQybKeCTfeveJ9R1B-vO1_w_U,679
|
51
51
|
QcloudApi/modules/wenzhi.py,sha256=hr1rRLU8TxxSfejMqV2O4alO_yXF3C0tfZMSzziu54Q,685
|
52
52
|
QcloudApi/modules/yunsou.py,sha256=JlgzMjnJaho6axFVhSTAv6DS0HLcjl0LJL02q6qI2yY,685
|
53
|
-
tencentcloud/__init__.py,sha256=
|
53
|
+
tencentcloud/__init__.py,sha256=V6b8JUmEUVi3rkmtbb6mSdehifVH1E05w5Uz32FhHGs,631
|
54
54
|
tencentcloud/aa/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
55
55
|
tencentcloud/aa/v20200224/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
56
56
|
tencentcloud/aa/v20200224/aa_client.py,sha256=L7P5zpJElo9WoLSkhvLxnfpEGCZ1q2e5Fzx3wLEioAA,2184
|
@@ -292,7 +292,7 @@ tencentcloud/cdwdoris/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3h
|
|
292
292
|
tencentcloud/cdwdoris/v20211228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
293
293
|
tencentcloud/cdwdoris/v20211228/cdwdoris_client.py,sha256=b5_LhuUzCX77xiz9_BRuzMq1gWLaZLDDJhpqIVovdqQ,16479
|
294
294
|
tencentcloud/cdwdoris/v20211228/errorcodes.py,sha256=i5AghJAxSuSI3xB3eKtkZA1cnY_dQYmNEeTnn2ePSFM,703
|
295
|
-
tencentcloud/cdwdoris/v20211228/models.py,sha256=
|
295
|
+
tencentcloud/cdwdoris/v20211228/models.py,sha256=P-9Hgk8ENKh6ZWq1FiwwFbkvOOygTTC028wGs1Nihq0,132125
|
296
296
|
tencentcloud/cdwpg/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
297
297
|
tencentcloud/cdwpg/v20201230/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
298
298
|
tencentcloud/cdwpg/v20201230/cdwpg_client.py,sha256=6mJ-BXoxzrrYgsckYJJUyKp-o5D5rkTHmsGjRRq2YpA,8165
|
@@ -350,7 +350,7 @@ tencentcloud/ckafka/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
|
|
350
350
|
tencentcloud/ckafka/v20190819/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
351
351
|
tencentcloud/ckafka/v20190819/ckafka_client.py,sha256=xNJhaTtg0S3VAYeW4utKz6TTqGWTEUH4kZZrc-zkweg,75510
|
352
352
|
tencentcloud/ckafka/v20190819/errorcodes.py,sha256=sPYGdgXWt4BcCbJaKnm15NxxtU6Izt8UZNd84ZQExBQ,3315
|
353
|
-
tencentcloud/ckafka/v20190819/models.py,sha256=
|
353
|
+
tencentcloud/ckafka/v20190819/models.py,sha256=Y5QyEPjwiwFJsjIWSEHSCFW-JTmFjN1-7rU-NDaduxE,822080
|
354
354
|
tencentcloud/clb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
355
355
|
tencentcloud/clb/v20180317/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
356
356
|
tencentcloud/clb/v20180317/clb_client.py,sha256=nh3jUzeAnA6uOK7qKu0PJYGzMbWhXPCfr-Jl4IyyLEk,98330
|
@@ -375,7 +375,7 @@ tencentcloud/cls/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
375
375
|
tencentcloud/cls/v20201016/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
376
376
|
tencentcloud/cls/v20201016/cls_client.py,sha256=44lVhzEDtNGhytJsea0T_23OEwk-0OLIOlVqib-CSNo,96929
|
377
377
|
tencentcloud/cls/v20201016/errorcodes.py,sha256=DA-WVSxt_AIKZrzHmd_UyXAyamqGSvILR_cfD16msH4,11155
|
378
|
-
tencentcloud/cls/v20201016/models.py,sha256=
|
378
|
+
tencentcloud/cls/v20201016/models.py,sha256=R25jyTOMVwwYvItT2vErLDp9_ZO_RS9_cNvmDnNvSpU,651366
|
379
379
|
tencentcloud/cme/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
380
380
|
tencentcloud/cme/v20191029/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
381
381
|
tencentcloud/cme/v20191029/cme_client.py,sha256=8p6sB5c5yqbFXsuoRE-tpGvaE0CwqzgwzEimXV_CUGw,55451
|
@@ -423,9 +423,9 @@ tencentcloud/cr/v20180321/errorcodes.py,sha256=DF36YdZGjctz_I8edgUOijDt6p8JUS3ew
|
|
423
423
|
tencentcloud/cr/v20180321/models.py,sha256=I8hHWsrXDFSoAhZqJJSj0bhkqhq8nuVPu9yn4yIB1Js,136120
|
424
424
|
tencentcloud/csip/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
425
425
|
tencentcloud/csip/v20221121/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
426
|
-
tencentcloud/csip/v20221121/csip_client.py,sha256=
|
426
|
+
tencentcloud/csip/v20221121/csip_client.py,sha256=IYqq4tHpJyfqpGte4ej_sO-b_EoqWd_vBKFw1axwoag,37929
|
427
427
|
tencentcloud/csip/v20221121/errorcodes.py,sha256=2y2EJLTrMm-Ru0J3RAq8x59OHTtWQrRQMTQOf3_D1v0,1836
|
428
|
-
tencentcloud/csip/v20221121/models.py,sha256=
|
428
|
+
tencentcloud/csip/v20221121/models.py,sha256=SXZXDnjFDESM5lIN7hvFFnz1QsyBt5UO62qaETPpB9Y,535363
|
429
429
|
tencentcloud/csxg/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
430
430
|
tencentcloud/csxg/v20230303/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
431
431
|
tencentcloud/csxg/v20230303/csxg_client.py,sha256=IyFLCHPkfK-hrL6wkab5-ktmKOpp_9821lEhsiIX9IA,5397
|
@@ -440,7 +440,7 @@ tencentcloud/cwp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
440
440
|
tencentcloud/cwp/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
441
441
|
tencentcloud/cwp/v20180228/cwp_client.py,sha256=QbntzatTEuPRg1JqJGao1fYzxD7FOlMqWEagYFGnSZg,477877
|
442
442
|
tencentcloud/cwp/v20180228/errorcodes.py,sha256=ufR6JVtlmHjo7-mJn7-UBZhFCiqHrVagbLRYr9dncyM,4402
|
443
|
-
tencentcloud/cwp/v20180228/models.py,sha256=
|
443
|
+
tencentcloud/cwp/v20180228/models.py,sha256=D0bt06IuSeIpwHBF_hJhgC81Qyf5h95qpllf-rXGfxg,2525002
|
444
444
|
tencentcloud/cws/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
445
445
|
tencentcloud/cws/v20180312/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
446
446
|
tencentcloud/cws/v20180312/cws_client.py,sha256=sN_4qU4vLv0x6Ep9P1m7fMGRT3yshhACTeJ1Y3xGnZo,18593
|
@@ -499,7 +499,7 @@ tencentcloud/dnspod/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
|
|
499
499
|
tencentcloud/dnspod/v20210323/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
500
500
|
tencentcloud/dnspod/v20210323/dnspod_client.py,sha256=xEPJUhz1jfAbNwqZvN9V1r2DQaKfu05Bh_2RFzcLMS0,67581
|
501
501
|
tencentcloud/dnspod/v20210323/errorcodes.py,sha256=SMH_-_khOHcJ0bpIAUk7-1RRFaSds4mmB-eirF7PrHI,25939
|
502
|
-
tencentcloud/dnspod/v20210323/models.py,sha256=
|
502
|
+
tencentcloud/dnspod/v20210323/models.py,sha256=vpsxIYqiFFWZilOqkDxoRXYUCCvn4kYcRzV0hpYzSEE,379608
|
503
503
|
tencentcloud/domain/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
504
504
|
tencentcloud/domain/v20180808/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
505
505
|
tencentcloud/domain/v20180808/domain_client.py,sha256=ggSdjBvy94geu0Q1Bh5gnednv0MeE3gEFvnkZ3aL2xw,38906
|
@@ -582,7 +582,7 @@ tencentcloud/ess/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
582
582
|
tencentcloud/ess/v20201111/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
583
583
|
tencentcloud/ess/v20201111/errorcodes.py,sha256=2n89U4czb0w4J8VyN7uMdYmbK8tGlK8nJHuVZbGrKRg,25736
|
584
584
|
tencentcloud/ess/v20201111/ess_client.py,sha256=ZhKbm9GGPHtqutKIjskmedb1yEdx0AtBOlTr1W4gRMw,134354
|
585
|
-
tencentcloud/ess/v20201111/models.py,sha256=
|
585
|
+
tencentcloud/ess/v20201111/models.py,sha256=wbbvD0iNLjaWidMlkhsnw46NTBEt4ReVSL7LQkKSPwA,809765
|
586
586
|
tencentcloud/essbasic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
587
587
|
tencentcloud/essbasic/v20201222/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
588
588
|
tencentcloud/essbasic/v20201222/errorcodes.py,sha256=cZPs0vLmArRFQoZqxM4alb0WeBF9f0V0IHmt65dUdxs,5392
|
@@ -590,8 +590,8 @@ tencentcloud/essbasic/v20201222/essbasic_client.py,sha256=kua9joup-BLKbyITYpVovM
|
|
590
590
|
tencentcloud/essbasic/v20201222/models.py,sha256=Q2E6jmVT1emRziwRN-qj8XpdzpxvqqHTKOEQz8JaM_s,270905
|
591
591
|
tencentcloud/essbasic/v20210526/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
592
592
|
tencentcloud/essbasic/v20210526/errorcodes.py,sha256=L1_0J4AOPtBTgtVqauXq0aVisXRe03bOUWFB0QCnXRs,18219
|
593
|
-
tencentcloud/essbasic/v20210526/essbasic_client.py,sha256=
|
594
|
-
tencentcloud/essbasic/v20210526/models.py,sha256=
|
593
|
+
tencentcloud/essbasic/v20210526/essbasic_client.py,sha256=RMjEa_zeDuv8OlKH8JbbpkEbm6IsperHT6IDB8MebLQ,134796
|
594
|
+
tencentcloud/essbasic/v20210526/models.py,sha256=wmDo32G_tJuDLAxZ9pG1z-7BruBUMWwH8TtF5MH3wb0,739598
|
595
595
|
tencentcloud/facefusion/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
596
596
|
tencentcloud/facefusion/v20181201/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
597
597
|
tencentcloud/facefusion/v20181201/errorcodes.py,sha256=v269JghsRzIpaQbiHgyqn8wKNfvjYkVM7SjaPBRQYPs,5731
|
@@ -1153,8 +1153,8 @@ tencentcloud/tcr/v20190924/tcr_client.py,sha256=_WQf4BifqAitXjb5Kyg_R1g7CExuhSzl
|
|
1153
1153
|
tencentcloud/tcss/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1154
1154
|
tencentcloud/tcss/v20201101/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1155
1155
|
tencentcloud/tcss/v20201101/errorcodes.py,sha256=euCyJ7MoXWDjpZzcMXRqRCkAguFBt0VYJgOOLy37_M0,3916
|
1156
|
-
tencentcloud/tcss/v20201101/models.py,sha256=
|
1157
|
-
tencentcloud/tcss/v20201101/tcss_client.py,sha256=
|
1156
|
+
tencentcloud/tcss/v20201101/models.py,sha256=hq7XH5ooiJABgcOEbn3KAYYhNGNCd3vVsIWVspfGMY0,1876016
|
1157
|
+
tencentcloud/tcss/v20201101/tcss_client.py,sha256=M7oTh4wWiTLHNuCLYSIOmX4Hz2_hVI7Cud8QJSNhDVE,324854
|
1158
1158
|
tencentcloud/tdcpg/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1159
1159
|
tencentcloud/tdcpg/v20211118/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1160
1160
|
tencentcloud/tdcpg/v20211118/errorcodes.py,sha256=UxO191n6TTQXM-6YqRnTQNP5Gy59DYWY4pkgoKbxv2Y,6249
|
@@ -1257,7 +1257,7 @@ tencentcloud/tke/v20180525/models.py,sha256=aAoH3CmIoalj7YOgMdTUHyFOi_SzuV_fqNFO
|
|
1257
1257
|
tencentcloud/tke/v20180525/tke_client.py,sha256=B67Sq3NN-jhNTJc4vd15Ka5Z9b8F0X6pm0p_mESgLg0,207337
|
1258
1258
|
tencentcloud/tke/v20220501/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1259
1259
|
tencentcloud/tke/v20220501/errorcodes.py,sha256=1d5UObbunCeop2dF1ynMu5MNaVtKXkfVKZwkKxaRGII,2032
|
1260
|
-
tencentcloud/tke/v20220501/models.py,sha256=
|
1260
|
+
tencentcloud/tke/v20220501/models.py,sha256=_OBHzWdUWlMpN8ZeyLre6UpxSYdq6A2CpCXahpplT34,132505
|
1261
1261
|
tencentcloud/tke/v20220501/tke_client.py,sha256=CBkITPSEoDknRWKrHGmeAMk4SXuc00iUO7P50FWAboI,5359
|
1262
1262
|
tencentcloud/tkgdq/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1263
1263
|
tencentcloud/tkgdq/v20190411/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -1311,7 +1311,7 @@ tencentcloud/trtc/v20190722/trtc_client.py,sha256=cp0pNwvk3-XwdZRK3JQu5QgqbvHFTQ
|
|
1311
1311
|
tencentcloud/tse/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1312
1312
|
tencentcloud/tse/v20201207/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1313
1313
|
tencentcloud/tse/v20201207/errorcodes.py,sha256=HVL21WZbHbQ-ti83Y7kcle8DhijhQB8k6LE3AIRm_t8,6304
|
1314
|
-
tencentcloud/tse/v20201207/models.py,sha256=
|
1314
|
+
tencentcloud/tse/v20201207/models.py,sha256=irwhiuSceslQMwWZL1590AXW78v2UiKZLqFsiq34js4,702547
|
1315
1315
|
tencentcloud/tse/v20201207/tse_client.py,sha256=3tGGVUFNqTkJ2lZu_DqhfmA_s_UaulHLiFxRdXFN_Sw,107645
|
1316
1316
|
tencentcloud/tsf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1317
1317
|
tencentcloud/tsf/v20180326/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -1358,7 +1358,7 @@ tencentcloud/vms/v20200902/vms_client.py,sha256=2f8nOfEmBZ86jgNEXuVPOdwjNYTZM5Io
|
|
1358
1358
|
tencentcloud/vod/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1359
1359
|
tencentcloud/vod/v20180717/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1360
1360
|
tencentcloud/vod/v20180717/errorcodes.py,sha256=QvTgtMpe14l077vZd21tVYlF53WuVr4ibrZm0HPVmAg,25737
|
1361
|
-
tencentcloud/vod/v20180717/models.py,sha256=
|
1361
|
+
tencentcloud/vod/v20180717/models.py,sha256=jHGPypBoY82f4NlD0KP9NJvuTYJg2t0W7g9PxN4LsrE,1995148
|
1362
1362
|
tencentcloud/vod/v20180717/vod_client.py,sha256=1f9TJRUkLifoUNRwCK4Y0c4j6vYCBTZzghr-wV6f40M,202665
|
1363
1363
|
tencentcloud/vpc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1364
1364
|
tencentcloud/vpc/v20170312/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -1419,8 +1419,8 @@ tencentcloud/yunsou/v20191115/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
|
|
1419
1419
|
tencentcloud/yunsou/v20191115/errorcodes.py,sha256=zB4-XPxmvEhgHoLsKlbayJVRLEagPDcs-UAheVZCoAc,1301
|
1420
1420
|
tencentcloud/yunsou/v20191115/models.py,sha256=sNTR9ixO8CV9yKQahrhOsEJlxOK5d7aXBoIBIPxfJsQ,23137
|
1421
1421
|
tencentcloud/yunsou/v20191115/yunsou_client.py,sha256=ly73Hr8rGamWa6AAvQjurKgd4L83PRY5WjcDv4ziQC8,2741
|
1422
|
-
tencentcloud_sdk_python-3.0.
|
1423
|
-
tencentcloud_sdk_python-3.0.
|
1424
|
-
tencentcloud_sdk_python-3.0.
|
1425
|
-
tencentcloud_sdk_python-3.0.
|
1426
|
-
tencentcloud_sdk_python-3.0.
|
1422
|
+
tencentcloud_sdk_python-3.0.1147.dist-info/LICENSE,sha256=AJyIQ6mPzTpsFn6i0cG6OPVdhJ85l_mfdoOR7J4DnRw,11351
|
1423
|
+
tencentcloud_sdk_python-3.0.1147.dist-info/METADATA,sha256=Wcw_WyceJ3CcJio8ssCyipEIFP8KYNKk67YmFyg9dx4,1511
|
1424
|
+
tencentcloud_sdk_python-3.0.1147.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
1425
|
+
tencentcloud_sdk_python-3.0.1147.dist-info/top_level.txt,sha256=7kItXWSGlPDkhHTt2qPSt8zrlsPHLfRofR1QJo6eV_A,23
|
1426
|
+
tencentcloud_sdk_python-3.0.1147.dist-info/RECORD,,
|
{tencentcloud_sdk_python-3.0.1145.dist-info → tencentcloud_sdk_python-3.0.1147.dist-info}/LICENSE
RENAMED
File without changes
|
{tencentcloud_sdk_python-3.0.1145.dist-info → tencentcloud_sdk_python-3.0.1147.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|