tencentcloud-sdk-python 3.0.1157__py2.py3-none-any.whl → 3.0.1158__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/cls/v20201016/models.py +48 -4
- tencentcloud/dnspod/v20210323/dnspod_client.py +23 -0
- tencentcloud/dnspod/v20210323/models.py +82 -0
- tencentcloud/ess/v20201111/ess_client.py +1 -1
- tencentcloud/essbasic/v20210526/essbasic_client.py +3 -3
- tencentcloud/faceid/v20180301/models.py +3 -2
- tencentcloud/iotexplorer/v20190423/models.py +2 -2
- tencentcloud/lighthouse/v20200324/models.py +21 -11
- tencentcloud/monitor/v20180724/models.py +26 -0
- tencentcloud/redis/v20180412/models.py +154 -43
- tencentcloud/tcb/v20180608/models.py +90 -0
- tencentcloud/teo/v20220901/errorcodes.py +24 -0
- tencentcloud/teo/v20220901/models.py +18 -18
- tencentcloud/trp/v20210515/models.py +235 -0
- {tencentcloud_sdk_python-3.0.1157.dist-info → tencentcloud_sdk_python-3.0.1158.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1157.dist-info → tencentcloud_sdk_python-3.0.1158.dist-info}/RECORD +20 -20
- {tencentcloud_sdk_python-3.0.1157.dist-info → tencentcloud_sdk_python-3.0.1158.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1157.dist-info → tencentcloud_sdk_python-3.0.1158.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1157.dist-info → tencentcloud_sdk_python-3.0.1158.dist-info}/top_level.txt +0 -0
@@ -689,6 +689,21 @@ class CodePack(AbstractModel):
|
|
689
689
|
:param _RelateType: 码关系是否预关联
|
690
690
|
0:否, 1:是
|
691
691
|
:type RelateType: int
|
692
|
+
:param _SceneCode: 场景码
|
693
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
694
|
+
:type SceneCode: int
|
695
|
+
:param _CodeRule: 码规则
|
696
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
697
|
+
:type CodeRule: str
|
698
|
+
:param _UsedAmount: 已使用码数
|
699
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
700
|
+
:type UsedAmount: int
|
701
|
+
:param _SerialStart: 开始流水号
|
702
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
703
|
+
:type SerialStart: int
|
704
|
+
:param _SerialEnd: 结束流水号
|
705
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
706
|
+
:type SerialEnd: int
|
692
707
|
"""
|
693
708
|
self._PackId = None
|
694
709
|
self._CorpId = None
|
@@ -714,6 +729,11 @@ class CodePack(AbstractModel):
|
|
714
729
|
self._ProductSpecification = None
|
715
730
|
self._ProductId = None
|
716
731
|
self._RelateType = None
|
732
|
+
self._SceneCode = None
|
733
|
+
self._CodeRule = None
|
734
|
+
self._UsedAmount = None
|
735
|
+
self._SerialStart = None
|
736
|
+
self._SerialEnd = None
|
717
737
|
|
718
738
|
@property
|
719
739
|
def PackId(self):
|
@@ -907,6 +927,46 @@ class CodePack(AbstractModel):
|
|
907
927
|
def RelateType(self, RelateType):
|
908
928
|
self._RelateType = RelateType
|
909
929
|
|
930
|
+
@property
|
931
|
+
def SceneCode(self):
|
932
|
+
return self._SceneCode
|
933
|
+
|
934
|
+
@SceneCode.setter
|
935
|
+
def SceneCode(self, SceneCode):
|
936
|
+
self._SceneCode = SceneCode
|
937
|
+
|
938
|
+
@property
|
939
|
+
def CodeRule(self):
|
940
|
+
return self._CodeRule
|
941
|
+
|
942
|
+
@CodeRule.setter
|
943
|
+
def CodeRule(self, CodeRule):
|
944
|
+
self._CodeRule = CodeRule
|
945
|
+
|
946
|
+
@property
|
947
|
+
def UsedAmount(self):
|
948
|
+
return self._UsedAmount
|
949
|
+
|
950
|
+
@UsedAmount.setter
|
951
|
+
def UsedAmount(self, UsedAmount):
|
952
|
+
self._UsedAmount = UsedAmount
|
953
|
+
|
954
|
+
@property
|
955
|
+
def SerialStart(self):
|
956
|
+
return self._SerialStart
|
957
|
+
|
958
|
+
@SerialStart.setter
|
959
|
+
def SerialStart(self, SerialStart):
|
960
|
+
self._SerialStart = SerialStart
|
961
|
+
|
962
|
+
@property
|
963
|
+
def SerialEnd(self):
|
964
|
+
return self._SerialEnd
|
965
|
+
|
966
|
+
@SerialEnd.setter
|
967
|
+
def SerialEnd(self, SerialEnd):
|
968
|
+
self._SerialEnd = SerialEnd
|
969
|
+
|
910
970
|
|
911
971
|
def _deserialize(self, params):
|
912
972
|
self._PackId = params.get("PackId")
|
@@ -938,6 +998,11 @@ class CodePack(AbstractModel):
|
|
938
998
|
self._ProductSpecification = params.get("ProductSpecification")
|
939
999
|
self._ProductId = params.get("ProductId")
|
940
1000
|
self._RelateType = params.get("RelateType")
|
1001
|
+
self._SceneCode = params.get("SceneCode")
|
1002
|
+
self._CodeRule = params.get("CodeRule")
|
1003
|
+
self._UsedAmount = params.get("UsedAmount")
|
1004
|
+
self._SerialStart = params.get("SerialStart")
|
1005
|
+
self._SerialEnd = params.get("SerialEnd")
|
941
1006
|
memeber_set = set(params.keys())
|
942
1007
|
for name, value in vars(self).items():
|
943
1008
|
property_name = name[1:]
|
@@ -1327,6 +1392,8 @@ class CreateCodePackRequest(AbstractModel):
|
|
1327
1392
|
:type ProductId: str
|
1328
1393
|
:param _RelateType: 层级码时是否提前生成关联关系,默认为 1
|
1329
1394
|
:type RelateType: int
|
1395
|
+
:param _SceneCode: 场景值
|
1396
|
+
:type SceneCode: int
|
1330
1397
|
"""
|
1331
1398
|
self._MerchantId = None
|
1332
1399
|
self._CodeLength = None
|
@@ -1340,6 +1407,7 @@ class CreateCodePackRequest(AbstractModel):
|
|
1340
1407
|
self._SerialType = None
|
1341
1408
|
self._ProductId = None
|
1342
1409
|
self._RelateType = None
|
1410
|
+
self._SceneCode = None
|
1343
1411
|
|
1344
1412
|
@property
|
1345
1413
|
def MerchantId(self):
|
@@ -1437,6 +1505,14 @@ class CreateCodePackRequest(AbstractModel):
|
|
1437
1505
|
def RelateType(self, RelateType):
|
1438
1506
|
self._RelateType = RelateType
|
1439
1507
|
|
1508
|
+
@property
|
1509
|
+
def SceneCode(self):
|
1510
|
+
return self._SceneCode
|
1511
|
+
|
1512
|
+
@SceneCode.setter
|
1513
|
+
def SceneCode(self, SceneCode):
|
1514
|
+
self._SceneCode = SceneCode
|
1515
|
+
|
1440
1516
|
|
1441
1517
|
def _deserialize(self, params):
|
1442
1518
|
self._MerchantId = params.get("MerchantId")
|
@@ -1456,6 +1532,7 @@ class CreateCodePackRequest(AbstractModel):
|
|
1456
1532
|
self._SerialType = params.get("SerialType")
|
1457
1533
|
self._ProductId = params.get("ProductId")
|
1458
1534
|
self._RelateType = params.get("RelateType")
|
1535
|
+
self._SceneCode = params.get("SceneCode")
|
1459
1536
|
memeber_set = set(params.keys())
|
1460
1537
|
for name, value in vars(self).items():
|
1461
1538
|
property_name = name[1:]
|
@@ -1703,6 +1780,8 @@ class CreateCustomPackRequest(AbstractModel):
|
|
1703
1780
|
0: 否, 1:是
|
1704
1781
|
默认为1,仅对层级码有效
|
1705
1782
|
:type RelateType: int
|
1783
|
+
:param _SceneCode: 场景值
|
1784
|
+
:type SceneCode: int
|
1706
1785
|
"""
|
1707
1786
|
self._MerchantId = None
|
1708
1787
|
self._Amount = None
|
@@ -1716,6 +1795,7 @@ class CreateCustomPackRequest(AbstractModel):
|
|
1716
1795
|
self._SerialType = None
|
1717
1796
|
self._ProductId = None
|
1718
1797
|
self._RelateType = None
|
1798
|
+
self._SceneCode = None
|
1719
1799
|
|
1720
1800
|
@property
|
1721
1801
|
def MerchantId(self):
|
@@ -1813,6 +1893,14 @@ class CreateCustomPackRequest(AbstractModel):
|
|
1813
1893
|
def RelateType(self, RelateType):
|
1814
1894
|
self._RelateType = RelateType
|
1815
1895
|
|
1896
|
+
@property
|
1897
|
+
def SceneCode(self):
|
1898
|
+
return self._SceneCode
|
1899
|
+
|
1900
|
+
@SceneCode.setter
|
1901
|
+
def SceneCode(self, SceneCode):
|
1902
|
+
self._SceneCode = SceneCode
|
1903
|
+
|
1816
1904
|
|
1817
1905
|
def _deserialize(self, params):
|
1818
1906
|
self._MerchantId = params.get("MerchantId")
|
@@ -1837,6 +1925,7 @@ class CreateCustomPackRequest(AbstractModel):
|
|
1837
1925
|
self._SerialType = params.get("SerialType")
|
1838
1926
|
self._ProductId = params.get("ProductId")
|
1839
1927
|
self._RelateType = params.get("RelateType")
|
1928
|
+
self._SceneCode = params.get("SceneCode")
|
1840
1929
|
memeber_set = set(params.keys())
|
1841
1930
|
for name, value in vars(self).items():
|
1842
1931
|
property_name = name[1:]
|
@@ -4012,6 +4101,10 @@ class DescribeCodePacksRequest(AbstractModel):
|
|
4012
4101
|
:type ResType: str
|
4013
4102
|
:param _ResId: 资源ID ResType是 batch 时对应是批次ID, 是 order_in, order_out时,则是订单ID
|
4014
4103
|
:type ResId: str
|
4104
|
+
:param _SceneCode: 应用场景
|
4105
|
+
:type SceneCode: int
|
4106
|
+
:param _Status: 码包状态
|
4107
|
+
:type Status: str
|
4015
4108
|
"""
|
4016
4109
|
self._PageSize = None
|
4017
4110
|
self._PageNumber = None
|
@@ -4020,6 +4113,8 @@ class DescribeCodePacksRequest(AbstractModel):
|
|
4020
4113
|
self._SerialType = None
|
4021
4114
|
self._ResType = None
|
4022
4115
|
self._ResId = None
|
4116
|
+
self._SceneCode = None
|
4117
|
+
self._Status = None
|
4023
4118
|
|
4024
4119
|
@property
|
4025
4120
|
def PageSize(self):
|
@@ -4077,6 +4172,22 @@ class DescribeCodePacksRequest(AbstractModel):
|
|
4077
4172
|
def ResId(self, ResId):
|
4078
4173
|
self._ResId = ResId
|
4079
4174
|
|
4175
|
+
@property
|
4176
|
+
def SceneCode(self):
|
4177
|
+
return self._SceneCode
|
4178
|
+
|
4179
|
+
@SceneCode.setter
|
4180
|
+
def SceneCode(self, SceneCode):
|
4181
|
+
self._SceneCode = SceneCode
|
4182
|
+
|
4183
|
+
@property
|
4184
|
+
def Status(self):
|
4185
|
+
return self._Status
|
4186
|
+
|
4187
|
+
@Status.setter
|
4188
|
+
def Status(self, Status):
|
4189
|
+
self._Status = Status
|
4190
|
+
|
4080
4191
|
|
4081
4192
|
def _deserialize(self, params):
|
4082
4193
|
self._PageSize = params.get("PageSize")
|
@@ -4086,6 +4197,8 @@ class DescribeCodePacksRequest(AbstractModel):
|
|
4086
4197
|
self._SerialType = params.get("SerialType")
|
4087
4198
|
self._ResType = params.get("ResType")
|
4088
4199
|
self._ResId = params.get("ResId")
|
4200
|
+
self._SceneCode = params.get("SceneCode")
|
4201
|
+
self._Status = params.get("Status")
|
4089
4202
|
memeber_set = set(params.keys())
|
4090
4203
|
for name, value in vars(self).items():
|
4091
4204
|
property_name = name[1:]
|
@@ -6614,9 +6727,13 @@ class Job(AbstractModel):
|
|
6614
6727
|
:type JobId: int
|
6615
6728
|
:param _Status: 执行状态 init:初始化, pending: 执行中, done: 执行成功, error: 执行失败
|
6616
6729
|
:type Status: str
|
6730
|
+
:param _ErrorMessage: 任务错误信息
|
6731
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
6732
|
+
:type ErrorMessage: str
|
6617
6733
|
"""
|
6618
6734
|
self._JobId = None
|
6619
6735
|
self._Status = None
|
6736
|
+
self._ErrorMessage = None
|
6620
6737
|
|
6621
6738
|
@property
|
6622
6739
|
def JobId(self):
|
@@ -6634,10 +6751,19 @@ class Job(AbstractModel):
|
|
6634
6751
|
def Status(self, Status):
|
6635
6752
|
self._Status = Status
|
6636
6753
|
|
6754
|
+
@property
|
6755
|
+
def ErrorMessage(self):
|
6756
|
+
return self._ErrorMessage
|
6757
|
+
|
6758
|
+
@ErrorMessage.setter
|
6759
|
+
def ErrorMessage(self, ErrorMessage):
|
6760
|
+
self._ErrorMessage = ErrorMessage
|
6761
|
+
|
6637
6762
|
|
6638
6763
|
def _deserialize(self, params):
|
6639
6764
|
self._JobId = params.get("JobId")
|
6640
6765
|
self._Status = params.get("Status")
|
6766
|
+
self._ErrorMessage = params.get("ErrorMessage")
|
6641
6767
|
memeber_set = set(params.keys())
|
6642
6768
|
for name, value in vars(self).items():
|
6643
6769
|
property_name = name[1:]
|
@@ -8109,12 +8235,20 @@ class PackSpec(AbstractModel):
|
|
8109
8235
|
:param _CodeParts: 码段配置
|
8110
8236
|
注意:此字段可能返回 null,表示取不到有效值。
|
8111
8237
|
:type CodeParts: list of CodePart
|
8238
|
+
:param _Unit: 包装单位
|
8239
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
8240
|
+
:type Unit: str
|
8241
|
+
:param _SceneCode: 场景值
|
8242
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
8243
|
+
:type SceneCode: int
|
8112
8244
|
"""
|
8113
8245
|
self._Level = None
|
8114
8246
|
self._Rate = None
|
8115
8247
|
self._Amount = None
|
8116
8248
|
self._CustomId = None
|
8117
8249
|
self._CodeParts = None
|
8250
|
+
self._Unit = None
|
8251
|
+
self._SceneCode = None
|
8118
8252
|
|
8119
8253
|
@property
|
8120
8254
|
def Level(self):
|
@@ -8156,6 +8290,22 @@ class PackSpec(AbstractModel):
|
|
8156
8290
|
def CodeParts(self, CodeParts):
|
8157
8291
|
self._CodeParts = CodeParts
|
8158
8292
|
|
8293
|
+
@property
|
8294
|
+
def Unit(self):
|
8295
|
+
return self._Unit
|
8296
|
+
|
8297
|
+
@Unit.setter
|
8298
|
+
def Unit(self, Unit):
|
8299
|
+
self._Unit = Unit
|
8300
|
+
|
8301
|
+
@property
|
8302
|
+
def SceneCode(self):
|
8303
|
+
return self._SceneCode
|
8304
|
+
|
8305
|
+
@SceneCode.setter
|
8306
|
+
def SceneCode(self, SceneCode):
|
8307
|
+
self._SceneCode = SceneCode
|
8308
|
+
|
8159
8309
|
|
8160
8310
|
def _deserialize(self, params):
|
8161
8311
|
self._Level = params.get("Level")
|
@@ -8168,6 +8318,8 @@ class PackSpec(AbstractModel):
|
|
8168
8318
|
obj = CodePart()
|
8169
8319
|
obj._deserialize(item)
|
8170
8320
|
self._CodeParts.append(obj)
|
8321
|
+
self._Unit = params.get("Unit")
|
8322
|
+
self._SceneCode = params.get("SceneCode")
|
8171
8323
|
memeber_set = set(params.keys())
|
8172
8324
|
for name, value in vars(self).items():
|
8173
8325
|
property_name = name[1:]
|
@@ -9145,6 +9297,15 @@ class ScanLog(AbstractModel):
|
|
9145
9297
|
:param _ProductName: 产品名称
|
9146
9298
|
注意:此字段可能返回 null,表示取不到有效值。
|
9147
9299
|
:type ProductName: str
|
9300
|
+
:param _ProductLogo: 产品Logo
|
9301
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
9302
|
+
:type ProductLogo: str
|
9303
|
+
:param _Status: 风险状态
|
9304
|
+
0: 未知, 1:通过, 2:失败/风险, 3:存疑
|
9305
|
+
:type Status: int
|
9306
|
+
:param _Verify: 是否开启验证
|
9307
|
+
0:否, 1:是
|
9308
|
+
:type Verify: int
|
9148
9309
|
"""
|
9149
9310
|
self._LogId = None
|
9150
9311
|
self._Openid = None
|
@@ -9165,6 +9326,9 @@ class ScanLog(AbstractModel):
|
|
9165
9326
|
self._Type = None
|
9166
9327
|
self._MerchantName = None
|
9167
9328
|
self._ProductName = None
|
9329
|
+
self._ProductLogo = None
|
9330
|
+
self._Status = None
|
9331
|
+
self._Verify = None
|
9168
9332
|
|
9169
9333
|
@property
|
9170
9334
|
def LogId(self):
|
@@ -9318,6 +9482,30 @@ class ScanLog(AbstractModel):
|
|
9318
9482
|
def ProductName(self, ProductName):
|
9319
9483
|
self._ProductName = ProductName
|
9320
9484
|
|
9485
|
+
@property
|
9486
|
+
def ProductLogo(self):
|
9487
|
+
return self._ProductLogo
|
9488
|
+
|
9489
|
+
@ProductLogo.setter
|
9490
|
+
def ProductLogo(self, ProductLogo):
|
9491
|
+
self._ProductLogo = ProductLogo
|
9492
|
+
|
9493
|
+
@property
|
9494
|
+
def Status(self):
|
9495
|
+
return self._Status
|
9496
|
+
|
9497
|
+
@Status.setter
|
9498
|
+
def Status(self, Status):
|
9499
|
+
self._Status = Status
|
9500
|
+
|
9501
|
+
@property
|
9502
|
+
def Verify(self):
|
9503
|
+
return self._Verify
|
9504
|
+
|
9505
|
+
@Verify.setter
|
9506
|
+
def Verify(self, Verify):
|
9507
|
+
self._Verify = Verify
|
9508
|
+
|
9321
9509
|
|
9322
9510
|
def _deserialize(self, params):
|
9323
9511
|
self._LogId = params.get("LogId")
|
@@ -9339,6 +9527,9 @@ class ScanLog(AbstractModel):
|
|
9339
9527
|
self._Type = params.get("Type")
|
9340
9528
|
self._MerchantName = params.get("MerchantName")
|
9341
9529
|
self._ProductName = params.get("ProductName")
|
9530
|
+
self._ProductLogo = params.get("ProductLogo")
|
9531
|
+
self._Status = params.get("Status")
|
9532
|
+
self._Verify = params.get("Verify")
|
9342
9533
|
memeber_set = set(params.keys())
|
9343
9534
|
for name, value in vars(self).items():
|
9344
9535
|
property_name = name[1:]
|
@@ -9535,6 +9726,15 @@ class TraceCode(AbstractModel):
|
|
9535
9726
|
:type AgentId: int
|
9536
9727
|
:param _Level: 码层级 0: 最小级, 1: 一级, 2: 二级
|
9537
9728
|
:type Level: int
|
9729
|
+
:param _PackSpec: 码层级详情
|
9730
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
9731
|
+
:type PackSpec: list of PackSpec
|
9732
|
+
:param _SceneCode: 场景码
|
9733
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
9734
|
+
:type SceneCode: int
|
9735
|
+
:param _SerialCode: 流水码
|
9736
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
9737
|
+
:type SerialCode: int
|
9538
9738
|
"""
|
9539
9739
|
self._Code = None
|
9540
9740
|
self._CorpId = None
|
@@ -9549,6 +9749,9 @@ class TraceCode(AbstractModel):
|
|
9549
9749
|
self._ProductName = None
|
9550
9750
|
self._AgentId = None
|
9551
9751
|
self._Level = None
|
9752
|
+
self._PackSpec = None
|
9753
|
+
self._SceneCode = None
|
9754
|
+
self._SerialCode = None
|
9552
9755
|
|
9553
9756
|
@property
|
9554
9757
|
def Code(self):
|
@@ -9654,6 +9857,30 @@ class TraceCode(AbstractModel):
|
|
9654
9857
|
def Level(self, Level):
|
9655
9858
|
self._Level = Level
|
9656
9859
|
|
9860
|
+
@property
|
9861
|
+
def PackSpec(self):
|
9862
|
+
return self._PackSpec
|
9863
|
+
|
9864
|
+
@PackSpec.setter
|
9865
|
+
def PackSpec(self, PackSpec):
|
9866
|
+
self._PackSpec = PackSpec
|
9867
|
+
|
9868
|
+
@property
|
9869
|
+
def SceneCode(self):
|
9870
|
+
return self._SceneCode
|
9871
|
+
|
9872
|
+
@SceneCode.setter
|
9873
|
+
def SceneCode(self, SceneCode):
|
9874
|
+
self._SceneCode = SceneCode
|
9875
|
+
|
9876
|
+
@property
|
9877
|
+
def SerialCode(self):
|
9878
|
+
return self._SerialCode
|
9879
|
+
|
9880
|
+
@SerialCode.setter
|
9881
|
+
def SerialCode(self, SerialCode):
|
9882
|
+
self._SerialCode = SerialCode
|
9883
|
+
|
9657
9884
|
|
9658
9885
|
def _deserialize(self, params):
|
9659
9886
|
self._Code = params.get("Code")
|
@@ -9669,6 +9896,14 @@ class TraceCode(AbstractModel):
|
|
9669
9896
|
self._ProductName = params.get("ProductName")
|
9670
9897
|
self._AgentId = params.get("AgentId")
|
9671
9898
|
self._Level = params.get("Level")
|
9899
|
+
if params.get("PackSpec") is not None:
|
9900
|
+
self._PackSpec = []
|
9901
|
+
for item in params.get("PackSpec"):
|
9902
|
+
obj = PackSpec()
|
9903
|
+
obj._deserialize(item)
|
9904
|
+
self._PackSpec.append(obj)
|
9905
|
+
self._SceneCode = params.get("SceneCode")
|
9906
|
+
self._SerialCode = params.get("SerialCode")
|
9672
9907
|
memeber_set = set(params.keys())
|
9673
9908
|
for name, value in vars(self).items():
|
9674
9909
|
property_name = name[1:]
|
{tencentcloud_sdk_python-3.0.1157.dist-info → tencentcloud_sdk_python-3.0.1158.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=vl5p2h-l8t-zq7RvYDTsIkkxMNR4o1lPRqXiLGUk5_U,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
|
@@ -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=6F2750tSRvGcdt4vnenHNO7WCJtGjQJ0ghirbZdiybI,652967
|
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
|
@@ -497,9 +497,9 @@ tencentcloud/dlc/v20210125/errorcodes.py,sha256=q-u--_3HUZXEwKhe3GPZTa9CByyXAhV1
|
|
497
497
|
tencentcloud/dlc/v20210125/models.py,sha256=OLEfEXR3PA4__x1vD1wqB6WiJTrQzNRbOFG3ekMbauk,804603
|
498
498
|
tencentcloud/dnspod/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
499
499
|
tencentcloud/dnspod/v20210323/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
500
|
-
tencentcloud/dnspod/v20210323/dnspod_client.py,sha256=
|
500
|
+
tencentcloud/dnspod/v20210323/dnspod_client.py,sha256=HGPaRMROTylT2OjwNYVxb9WHzx06GpvuYcGL5b4u48Q,68474
|
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=rk0owHNq47OtTRxhvnyc1-JaqsvwS_Qz1e5djEJszz8,381833
|
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=KGQm9eBakp-A3J4BiUyIxBRUEcE527o0q7OsPiRu6oY,51735
|
@@ -581,7 +581,7 @@ tencentcloud/es/v20180416/models.py,sha256=j6nZqae78PYvI9O9tc2eayJlFOGtkVVPthIJ6
|
|
581
581
|
tencentcloud/ess/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
582
582
|
tencentcloud/ess/v20201111/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
583
583
|
tencentcloud/ess/v20201111/errorcodes.py,sha256=2n89U4czb0w4J8VyN7uMdYmbK8tGlK8nJHuVZbGrKRg,25736
|
584
|
-
tencentcloud/ess/v20201111/ess_client.py,sha256=
|
584
|
+
tencentcloud/ess/v20201111/ess_client.py,sha256=F7NiNjXkzSFLV8ureoy5tnL6lnueeDaDcUtyt0Thl8Y,137543
|
585
585
|
tencentcloud/ess/v20201111/models.py,sha256=1yuvJqA4GwyuLVdLHkmDZPRmLnZLDcVZ47944tPk_yE,822383
|
586
586
|
tencentcloud/essbasic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
587
587
|
tencentcloud/essbasic/v20201222/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -590,7 +590,7 @@ 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=
|
593
|
+
tencentcloud/essbasic/v20210526/essbasic_client.py,sha256=Zg7fI0YhoanUffDzPrBhdT1Wx39Ic4EzNrmA-pYOQG8,134960
|
594
594
|
tencentcloud/essbasic/v20210526/models.py,sha256=ARnOEV1EVdLo-bCc2kZQDMiqqKMeDcPqWdRvQutA2-Q,743032
|
595
595
|
tencentcloud/facefusion/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
596
596
|
tencentcloud/facefusion/v20181201/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -605,7 +605,7 @@ tencentcloud/faceid/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
|
|
605
605
|
tencentcloud/faceid/v20180301/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
606
606
|
tencentcloud/faceid/v20180301/errorcodes.py,sha256=HvVf7F7KvecU8EfWdnhbd97adRNQzvzPYampxRO3-RU,10307
|
607
607
|
tencentcloud/faceid/v20180301/faceid_client.py,sha256=jHgFeCp1nHg28clumNcjVFaP-yZGcqwOBIHDkZLt4J0,38326
|
608
|
-
tencentcloud/faceid/v20180301/models.py,sha256=
|
608
|
+
tencentcloud/faceid/v20180301/models.py,sha256=C9hzdqftQshESALh5_76_T7Jc1MayuWWW229VZxP9x0,253803
|
609
609
|
tencentcloud/fmu/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
610
610
|
tencentcloud/fmu/v20191213/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
611
611
|
tencentcloud/fmu/v20191213/errorcodes.py,sha256=MBDe9JRLnn1i7rCBS1PIsHjL6BC09Gf0iZJ7FNCc6zQ,6925
|
@@ -737,7 +737,7 @@ tencentcloud/iotexplorer/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
|
|
737
737
|
tencentcloud/iotexplorer/v20190423/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
738
738
|
tencentcloud/iotexplorer/v20190423/errorcodes.py,sha256=8PfDQpxqLPvU8XnMZj7Hhgv1rJkhXeH-sZtXiPK3reo,22095
|
739
739
|
tencentcloud/iotexplorer/v20190423/iotexplorer_client.py,sha256=T1WYxLqbO2R-IAzCJeZh-GkR6wDiA1iIxJ66LPq6EWk,127222
|
740
|
-
tencentcloud/iotexplorer/v20190423/models.py,sha256=
|
740
|
+
tencentcloud/iotexplorer/v20190423/models.py,sha256=PMIx1-z1WUMCVfdB_tJLxXNQSaW5LoYZnTx-v_lfdbA,549356
|
741
741
|
tencentcloud/iottid/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
742
742
|
tencentcloud/iottid/v20190411/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
743
743
|
tencentcloud/iottid/v20190411/errorcodes.py,sha256=8HLJco204GFDbjmQDdjbUSLO1AFGPXVNVhsglGcae-g,1707
|
@@ -799,7 +799,7 @@ tencentcloud/lighthouse/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG
|
|
799
799
|
tencentcloud/lighthouse/v20200324/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
800
800
|
tencentcloud/lighthouse/v20200324/errorcodes.py,sha256=p_-FyhuKnoXjOqFyq4Y_NS5Ljf7t-1q9MhlAbVSYJNs,31628
|
801
801
|
tencentcloud/lighthouse/v20200324/lighthouse_client.py,sha256=fZX5-clbyNQPkvZ5sl5DXP25T12i1gPQTDtOOtfEWqU,123663
|
802
|
-
tencentcloud/lighthouse/v20200324/models.py,sha256=
|
802
|
+
tencentcloud/lighthouse/v20200324/models.py,sha256=lLfUsgybYDkJiyGcdj4L_HiJHJywCRoY7RWtzffsVSY,480034
|
803
803
|
tencentcloud/live/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
804
804
|
tencentcloud/live/v20180801/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
805
805
|
tencentcloud/live/v20180801/errorcodes.py,sha256=zUVXfM5AXka1kCY4cQTVHMa5YlWugx3l2A5yXMC9Ifc,20253
|
@@ -871,7 +871,7 @@ tencentcloud/mongodb/v20190725/mongodb_client.py,sha256=fM5MjgyiYQTK49nxX4Ph89t7
|
|
871
871
|
tencentcloud/monitor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
872
872
|
tencentcloud/monitor/v20180724/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
873
873
|
tencentcloud/monitor/v20180724/errorcodes.py,sha256=dukIL6njXDrTpTbojusf4bCgdQtN8E69_kYRXrsrpuU,10438
|
874
|
-
tencentcloud/monitor/v20180724/models.py,sha256=
|
874
|
+
tencentcloud/monitor/v20180724/models.py,sha256=p68lCqFdtkwBd37XOdnP9YzInAXqU0ka9vLYH8ce04o,947894
|
875
875
|
tencentcloud/monitor/v20180724/monitor_client.py,sha256=QZJsG5PUGybk01NwtlSnFekGGolLHB_CX5CF5Xq7iuw,153530
|
876
876
|
tencentcloud/mps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
877
877
|
tencentcloud/mps/v20190612/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -965,7 +965,7 @@ tencentcloud/rce/v20201103/rce_client.py,sha256=HIwYdqWmTYoWccklsPSzZB7AbEuXi5qr
|
|
965
965
|
tencentcloud/redis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
966
966
|
tencentcloud/redis/v20180412/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
967
967
|
tencentcloud/redis/v20180412/errorcodes.py,sha256=WK4ma6-bD4uo_6-uEMOkKjCVPpu4IEZkrONWPc0pf-k,12533
|
968
|
-
tencentcloud/redis/v20180412/models.py,sha256=
|
968
|
+
tencentcloud/redis/v20180412/models.py,sha256=SB-JXmHxnmgk_goL17fOLUb7H3mVqf8-u0Cia1NQmRU,511281
|
969
969
|
tencentcloud/redis/v20180412/redis_client.py,sha256=ppgQm1LNXenDNMhoaGS1zC5Ah8ff1qQXfue4vXWZ4YY,92890
|
970
970
|
tencentcloud/region/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
971
971
|
tencentcloud/region/v20220627/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -1118,7 +1118,7 @@ tencentcloud/tcaplusdb/v20190823/tcaplusdb_client.py,sha256=nrtSJ9L4fxITtFM6Ifif
|
|
1118
1118
|
tencentcloud/tcb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1119
1119
|
tencentcloud/tcb/v20180608/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1120
1120
|
tencentcloud/tcb/v20180608/errorcodes.py,sha256=yS9oOxhqGl-R77CSzIZK52O3MXlOBqh2n-IqbIINW_U,4156
|
1121
|
-
tencentcloud/tcb/v20180608/models.py,sha256=
|
1121
|
+
tencentcloud/tcb/v20180608/models.py,sha256=dq2CyzxrcsP-kOVA_EqqjZaaxKnxjerBbzDiK43B_yk,570039
|
1122
1122
|
tencentcloud/tcb/v20180608/tcb_client.py,sha256=ElGFTFe0Y26r04Czy2AQQvwZEyE2T7b9Ltj56A-AO5c,84257
|
1123
1123
|
tencentcloud/tcbr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1124
1124
|
tencentcloud/tcbr/v20220217/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -1190,8 +1190,8 @@ tencentcloud/teo/v20220106/errorcodes.py,sha256=U50jAXsv4h-RSakGjtX_2WbKbjWcmoNk
|
|
1190
1190
|
tencentcloud/teo/v20220106/models.py,sha256=rkriO1NNqjyJntfd99ifhT61-9R0muvljDfSWqv5hGA,39297
|
1191
1191
|
tencentcloud/teo/v20220106/teo_client.py,sha256=zKdu8PLL0kN-RRe1XGMwbrcaYtB_Ou7Z6YXb50_K2Gc,5399
|
1192
1192
|
tencentcloud/teo/v20220901/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1193
|
-
tencentcloud/teo/v20220901/errorcodes.py,sha256=
|
1194
|
-
tencentcloud/teo/v20220901/models.py,sha256=
|
1193
|
+
tencentcloud/teo/v20220901/errorcodes.py,sha256=aUN17OErY_m6nxxtC4rRip545f5hLXM9Y9MDTLzAdKY,47217
|
1194
|
+
tencentcloud/teo/v20220901/models.py,sha256=Oc784KSSqqNyHdcYW9NxCqpEXCpzCrF7PMUqKcEtOIs,835811
|
1195
1195
|
tencentcloud/teo/v20220901/teo_client.py,sha256=ke11Gr2_jTTwdQSFSMkSnQ68GHHo76xBDUQZcYtZw8U,102929
|
1196
1196
|
tencentcloud/thpc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1197
1197
|
tencentcloud/thpc/v20211109/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -1296,7 +1296,7 @@ tencentcloud/trocket/v20230308/trocket_client.py,sha256=iCB5ctCPDe3feL2iZnAiHrG9
|
|
1296
1296
|
tencentcloud/trp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1297
1297
|
tencentcloud/trp/v20210515/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1298
1298
|
tencentcloud/trp/v20210515/errorcodes.py,sha256=NIPOiohkm7mQCyhNmFigamMoLSbU3xvfncoGugFc2WU,1083
|
1299
|
-
tencentcloud/trp/v20210515/models.py,sha256=
|
1299
|
+
tencentcloud/trp/v20210515/models.py,sha256=lQ89jhOyX8xbIMDeWVyHMEiUga5yp8rq76VG9jAoIvk,280401
|
1300
1300
|
tencentcloud/trp/v20210515/trp_client.py,sha256=URrIeVJMkeuPrbjygk-oCFgPcBzKM894TCu_QhZ2Y5s,48649
|
1301
1301
|
tencentcloud/trro/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1302
1302
|
tencentcloud/trro/v20220325/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -1429,8 +1429,8 @@ tencentcloud/yunsou/v20191115/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
|
|
1429
1429
|
tencentcloud/yunsou/v20191115/errorcodes.py,sha256=zB4-XPxmvEhgHoLsKlbayJVRLEagPDcs-UAheVZCoAc,1301
|
1430
1430
|
tencentcloud/yunsou/v20191115/models.py,sha256=sNTR9ixO8CV9yKQahrhOsEJlxOK5d7aXBoIBIPxfJsQ,23137
|
1431
1431
|
tencentcloud/yunsou/v20191115/yunsou_client.py,sha256=ly73Hr8rGamWa6AAvQjurKgd4L83PRY5WjcDv4ziQC8,2741
|
1432
|
-
tencentcloud_sdk_python-3.0.
|
1433
|
-
tencentcloud_sdk_python-3.0.
|
1434
|
-
tencentcloud_sdk_python-3.0.
|
1435
|
-
tencentcloud_sdk_python-3.0.
|
1436
|
-
tencentcloud_sdk_python-3.0.
|
1432
|
+
tencentcloud_sdk_python-3.0.1158.dist-info/LICENSE,sha256=AJyIQ6mPzTpsFn6i0cG6OPVdhJ85l_mfdoOR7J4DnRw,11351
|
1433
|
+
tencentcloud_sdk_python-3.0.1158.dist-info/METADATA,sha256=L9TfOfsxMGCwXzaGv9iPmGDx7u703EnODCl1szcmLCM,1511
|
1434
|
+
tencentcloud_sdk_python-3.0.1158.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
1435
|
+
tencentcloud_sdk_python-3.0.1158.dist-info/top_level.txt,sha256=7kItXWSGlPDkhHTt2qPSt8zrlsPHLfRofR1QJo6eV_A,23
|
1436
|
+
tencentcloud_sdk_python-3.0.1158.dist-info/RECORD,,
|
{tencentcloud_sdk_python-3.0.1157.dist-info → tencentcloud_sdk_python-3.0.1158.dist-info}/LICENSE
RENAMED
File without changes
|
{tencentcloud_sdk_python-3.0.1157.dist-info → tencentcloud_sdk_python-3.0.1158.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|