tencentcloud-sdk-python-intl-en 3.0.1273__py2.py3-none-any.whl → 3.0.1275__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/ccc/v20200210/ccc_client.py +115 -0
- tencentcloud/ccc/v20200210/errorcodes.py +6 -0
- tencentcloud/ccc/v20200210/models.py +2166 -304
- tencentcloud/cmq/v20190304/cmq_client.py +0 -345
- tencentcloud/cmq/v20190304/models.py +325 -2466
- tencentcloud/cvm/v20170312/cvm_client.py +24 -0
- tencentcloud/cvm/v20170312/errorcodes.py +6 -0
- tencentcloud/cvm/v20170312/models.py +94 -0
- tencentcloud/faceid/v20180301/models.py +30 -0
- tencentcloud/waf/v20180125/errorcodes.py +9 -0
- tencentcloud/waf/v20180125/models.py +4532 -2484
- tencentcloud/waf/v20180125/waf_client.py +253 -0
- {tencentcloud_sdk_python_intl_en-3.0.1273.dist-info → tencentcloud_sdk_python_intl_en-3.0.1275.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1273.dist-info → tencentcloud_sdk_python_intl_en-3.0.1275.dist-info}/RECORD +17 -17
- {tencentcloud_sdk_python_intl_en-3.0.1273.dist-info → tencentcloud_sdk_python_intl_en-3.0.1275.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1273.dist-info → tencentcloud_sdk_python_intl_en-3.0.1275.dist-info}/top_level.txt +0 -0
@@ -210,6 +210,29 @@ class WafClient(AbstractClient):
|
|
210
210
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
211
211
|
|
212
212
|
|
213
|
+
def CreateOwaspWhiteRule(self, request):
|
214
|
+
"""This API is used to add a rule engine allowlist.
|
215
|
+
|
216
|
+
:param request: Request instance for CreateOwaspWhiteRule.
|
217
|
+
:type request: :class:`tencentcloud.waf.v20180125.models.CreateOwaspWhiteRuleRequest`
|
218
|
+
:rtype: :class:`tencentcloud.waf.v20180125.models.CreateOwaspWhiteRuleResponse`
|
219
|
+
|
220
|
+
"""
|
221
|
+
try:
|
222
|
+
params = request._serialize()
|
223
|
+
headers = request.headers
|
224
|
+
body = self.call("CreateOwaspWhiteRule", params, headers=headers)
|
225
|
+
response = json.loads(body)
|
226
|
+
model = models.CreateOwaspWhiteRuleResponse()
|
227
|
+
model._deserialize(response["Response"])
|
228
|
+
return model
|
229
|
+
except Exception as e:
|
230
|
+
if isinstance(e, TencentCloudSDKException):
|
231
|
+
raise
|
232
|
+
else:
|
233
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
234
|
+
|
235
|
+
|
213
236
|
def DeleteAntiFakeUrl(self, request):
|
214
237
|
"""Delete tamper-proof URL
|
215
238
|
|
@@ -371,6 +394,52 @@ class WafClient(AbstractClient):
|
|
371
394
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
372
395
|
|
373
396
|
|
397
|
+
def DeleteOwaspRuleStatus(self, request):
|
398
|
+
"""This API is used to unlock the Door God rule status.
|
399
|
+
|
400
|
+
:param request: Request instance for DeleteOwaspRuleStatus.
|
401
|
+
:type request: :class:`tencentcloud.waf.v20180125.models.DeleteOwaspRuleStatusRequest`
|
402
|
+
:rtype: :class:`tencentcloud.waf.v20180125.models.DeleteOwaspRuleStatusResponse`
|
403
|
+
|
404
|
+
"""
|
405
|
+
try:
|
406
|
+
params = request._serialize()
|
407
|
+
headers = request.headers
|
408
|
+
body = self.call("DeleteOwaspRuleStatus", params, headers=headers)
|
409
|
+
response = json.loads(body)
|
410
|
+
model = models.DeleteOwaspRuleStatusResponse()
|
411
|
+
model._deserialize(response["Response"])
|
412
|
+
return model
|
413
|
+
except Exception as e:
|
414
|
+
if isinstance(e, TencentCloudSDKException):
|
415
|
+
raise
|
416
|
+
else:
|
417
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
418
|
+
|
419
|
+
|
420
|
+
def DeleteOwaspWhiteRule(self, request):
|
421
|
+
"""This API is used to delete a user rule engine allowlist.
|
422
|
+
|
423
|
+
:param request: Request instance for DeleteOwaspWhiteRule.
|
424
|
+
:type request: :class:`tencentcloud.waf.v20180125.models.DeleteOwaspWhiteRuleRequest`
|
425
|
+
:rtype: :class:`tencentcloud.waf.v20180125.models.DeleteOwaspWhiteRuleResponse`
|
426
|
+
|
427
|
+
"""
|
428
|
+
try:
|
429
|
+
params = request._serialize()
|
430
|
+
headers = request.headers
|
431
|
+
body = self.call("DeleteOwaspWhiteRule", params, headers=headers)
|
432
|
+
response = json.loads(body)
|
433
|
+
model = models.DeleteOwaspWhiteRuleResponse()
|
434
|
+
model._deserialize(response["Response"])
|
435
|
+
return model
|
436
|
+
except Exception as e:
|
437
|
+
if isinstance(e, TencentCloudSDKException):
|
438
|
+
raise
|
439
|
+
else:
|
440
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
441
|
+
|
442
|
+
|
374
443
|
def DeleteSession(self, request):
|
375
444
|
"""Delete CC attack session settings
|
376
445
|
|
@@ -992,6 +1061,75 @@ class WafClient(AbstractClient):
|
|
992
1061
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
993
1062
|
|
994
1063
|
|
1064
|
+
def DescribeOwaspRuleTypes(self, request):
|
1065
|
+
"""This API is used to query the rule types of the rule engine.
|
1066
|
+
|
1067
|
+
:param request: Request instance for DescribeOwaspRuleTypes.
|
1068
|
+
:type request: :class:`tencentcloud.waf.v20180125.models.DescribeOwaspRuleTypesRequest`
|
1069
|
+
:rtype: :class:`tencentcloud.waf.v20180125.models.DescribeOwaspRuleTypesResponse`
|
1070
|
+
|
1071
|
+
"""
|
1072
|
+
try:
|
1073
|
+
params = request._serialize()
|
1074
|
+
headers = request.headers
|
1075
|
+
body = self.call("DescribeOwaspRuleTypes", params, headers=headers)
|
1076
|
+
response = json.loads(body)
|
1077
|
+
model = models.DescribeOwaspRuleTypesResponse()
|
1078
|
+
model._deserialize(response["Response"])
|
1079
|
+
return model
|
1080
|
+
except Exception as e:
|
1081
|
+
if isinstance(e, TencentCloudSDKException):
|
1082
|
+
raise
|
1083
|
+
else:
|
1084
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1085
|
+
|
1086
|
+
|
1087
|
+
def DescribeOwaspRules(self, request):
|
1088
|
+
"""This API is used to query the rule list of the rule engine.
|
1089
|
+
|
1090
|
+
:param request: Request instance for DescribeOwaspRules.
|
1091
|
+
:type request: :class:`tencentcloud.waf.v20180125.models.DescribeOwaspRulesRequest`
|
1092
|
+
:rtype: :class:`tencentcloud.waf.v20180125.models.DescribeOwaspRulesResponse`
|
1093
|
+
|
1094
|
+
"""
|
1095
|
+
try:
|
1096
|
+
params = request._serialize()
|
1097
|
+
headers = request.headers
|
1098
|
+
body = self.call("DescribeOwaspRules", params, headers=headers)
|
1099
|
+
response = json.loads(body)
|
1100
|
+
model = models.DescribeOwaspRulesResponse()
|
1101
|
+
model._deserialize(response["Response"])
|
1102
|
+
return model
|
1103
|
+
except Exception as e:
|
1104
|
+
if isinstance(e, TencentCloudSDKException):
|
1105
|
+
raise
|
1106
|
+
else:
|
1107
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1108
|
+
|
1109
|
+
|
1110
|
+
def DescribeOwaspWhiteRules(self, request):
|
1111
|
+
"""This API is used to retrieve the allowlist for the rule engine.
|
1112
|
+
|
1113
|
+
:param request: Request instance for DescribeOwaspWhiteRules.
|
1114
|
+
:type request: :class:`tencentcloud.waf.v20180125.models.DescribeOwaspWhiteRulesRequest`
|
1115
|
+
:rtype: :class:`tencentcloud.waf.v20180125.models.DescribeOwaspWhiteRulesResponse`
|
1116
|
+
|
1117
|
+
"""
|
1118
|
+
try:
|
1119
|
+
params = request._serialize()
|
1120
|
+
headers = request.headers
|
1121
|
+
body = self.call("DescribeOwaspWhiteRules", params, headers=headers)
|
1122
|
+
response = json.loads(body)
|
1123
|
+
model = models.DescribeOwaspWhiteRulesResponse()
|
1124
|
+
model._deserialize(response["Response"])
|
1125
|
+
return model
|
1126
|
+
except Exception as e:
|
1127
|
+
if isinstance(e, TencentCloudSDKException):
|
1128
|
+
raise
|
1129
|
+
else:
|
1130
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1131
|
+
|
1132
|
+
|
995
1133
|
def DescribePeakPoints(self, request):
|
996
1134
|
"""Query business and attack summary trends
|
997
1135
|
|
@@ -1982,6 +2120,121 @@ class WafClient(AbstractClient):
|
|
1982
2120
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1983
2121
|
|
1984
2122
|
|
2123
|
+
def ModifyOwaspRuleStatus(self, request):
|
2124
|
+
"""This API is used to refresh the rule switch.
|
2125
|
+
|
2126
|
+
:param request: Request instance for ModifyOwaspRuleStatus.
|
2127
|
+
:type request: :class:`tencentcloud.waf.v20180125.models.ModifyOwaspRuleStatusRequest`
|
2128
|
+
:rtype: :class:`tencentcloud.waf.v20180125.models.ModifyOwaspRuleStatusResponse`
|
2129
|
+
|
2130
|
+
"""
|
2131
|
+
try:
|
2132
|
+
params = request._serialize()
|
2133
|
+
headers = request.headers
|
2134
|
+
body = self.call("ModifyOwaspRuleStatus", params, headers=headers)
|
2135
|
+
response = json.loads(body)
|
2136
|
+
model = models.ModifyOwaspRuleStatusResponse()
|
2137
|
+
model._deserialize(response["Response"])
|
2138
|
+
return model
|
2139
|
+
except Exception as e:
|
2140
|
+
if isinstance(e, TencentCloudSDKException):
|
2141
|
+
raise
|
2142
|
+
else:
|
2143
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
2144
|
+
|
2145
|
+
|
2146
|
+
def ModifyOwaspRuleTypeAction(self, request):
|
2147
|
+
"""This API is used to update the protection mode of the rule type.
|
2148
|
+
|
2149
|
+
:param request: Request instance for ModifyOwaspRuleTypeAction.
|
2150
|
+
:type request: :class:`tencentcloud.waf.v20180125.models.ModifyOwaspRuleTypeActionRequest`
|
2151
|
+
:rtype: :class:`tencentcloud.waf.v20180125.models.ModifyOwaspRuleTypeActionResponse`
|
2152
|
+
|
2153
|
+
"""
|
2154
|
+
try:
|
2155
|
+
params = request._serialize()
|
2156
|
+
headers = request.headers
|
2157
|
+
body = self.call("ModifyOwaspRuleTypeAction", params, headers=headers)
|
2158
|
+
response = json.loads(body)
|
2159
|
+
model = models.ModifyOwaspRuleTypeActionResponse()
|
2160
|
+
model._deserialize(response["Response"])
|
2161
|
+
return model
|
2162
|
+
except Exception as e:
|
2163
|
+
if isinstance(e, TencentCloudSDKException):
|
2164
|
+
raise
|
2165
|
+
else:
|
2166
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
2167
|
+
|
2168
|
+
|
2169
|
+
def ModifyOwaspRuleTypeLevel(self, request):
|
2170
|
+
"""This API is used to update the protection level of a rule type.
|
2171
|
+
|
2172
|
+
:param request: Request instance for ModifyOwaspRuleTypeLevel.
|
2173
|
+
:type request: :class:`tencentcloud.waf.v20180125.models.ModifyOwaspRuleTypeLevelRequest`
|
2174
|
+
:rtype: :class:`tencentcloud.waf.v20180125.models.ModifyOwaspRuleTypeLevelResponse`
|
2175
|
+
|
2176
|
+
"""
|
2177
|
+
try:
|
2178
|
+
params = request._serialize()
|
2179
|
+
headers = request.headers
|
2180
|
+
body = self.call("ModifyOwaspRuleTypeLevel", params, headers=headers)
|
2181
|
+
response = json.loads(body)
|
2182
|
+
model = models.ModifyOwaspRuleTypeLevelResponse()
|
2183
|
+
model._deserialize(response["Response"])
|
2184
|
+
return model
|
2185
|
+
except Exception as e:
|
2186
|
+
if isinstance(e, TencentCloudSDKException):
|
2187
|
+
raise
|
2188
|
+
else:
|
2189
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
2190
|
+
|
2191
|
+
|
2192
|
+
def ModifyOwaspRuleTypeStatus(self, request):
|
2193
|
+
"""This API is used to update the rule type switch.
|
2194
|
+
|
2195
|
+
:param request: Request instance for ModifyOwaspRuleTypeStatus.
|
2196
|
+
:type request: :class:`tencentcloud.waf.v20180125.models.ModifyOwaspRuleTypeStatusRequest`
|
2197
|
+
:rtype: :class:`tencentcloud.waf.v20180125.models.ModifyOwaspRuleTypeStatusResponse`
|
2198
|
+
|
2199
|
+
"""
|
2200
|
+
try:
|
2201
|
+
params = request._serialize()
|
2202
|
+
headers = request.headers
|
2203
|
+
body = self.call("ModifyOwaspRuleTypeStatus", params, headers=headers)
|
2204
|
+
response = json.loads(body)
|
2205
|
+
model = models.ModifyOwaspRuleTypeStatusResponse()
|
2206
|
+
model._deserialize(response["Response"])
|
2207
|
+
return model
|
2208
|
+
except Exception as e:
|
2209
|
+
if isinstance(e, TencentCloudSDKException):
|
2210
|
+
raise
|
2211
|
+
else:
|
2212
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
2213
|
+
|
2214
|
+
|
2215
|
+
def ModifyOwaspWhiteRule(self, request):
|
2216
|
+
"""This API is used to edit the allowlist for the rule engine.
|
2217
|
+
|
2218
|
+
:param request: Request instance for ModifyOwaspWhiteRule.
|
2219
|
+
:type request: :class:`tencentcloud.waf.v20180125.models.ModifyOwaspWhiteRuleRequest`
|
2220
|
+
:rtype: :class:`tencentcloud.waf.v20180125.models.ModifyOwaspWhiteRuleResponse`
|
2221
|
+
|
2222
|
+
"""
|
2223
|
+
try:
|
2224
|
+
params = request._serialize()
|
2225
|
+
headers = request.headers
|
2226
|
+
body = self.call("ModifyOwaspWhiteRule", params, headers=headers)
|
2227
|
+
response = json.loads(body)
|
2228
|
+
model = models.ModifyOwaspWhiteRuleResponse()
|
2229
|
+
model._deserialize(response["Response"])
|
2230
|
+
return model
|
2231
|
+
except Exception as e:
|
2232
|
+
if isinstance(e, TencentCloudSDKException):
|
2233
|
+
raise
|
2234
|
+
else:
|
2235
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
2236
|
+
|
2237
|
+
|
1985
2238
|
def ModifyProtectionStatus(self, request):
|
1986
2239
|
"""This API is used to obtain the enabling status of the basic security protection module of WAF.
|
1987
2240
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
tencentcloud/__init__.py,sha256=
|
1
|
+
tencentcloud/__init__.py,sha256=xQqdOULRqg_t5bWQn76QJBaTegIhQ6YeB3NI4ZnvsJE,630
|
2
2
|
tencentcloud/advisor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
3
3
|
tencentcloud/advisor/v20200721/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
4
4
|
tencentcloud/advisor/v20200721/advisor_client.py,sha256=fiBV7Nao68T0UJdOUt5BxEABWr7mG_J9NPJT2lXDdyw,2897
|
@@ -76,9 +76,9 @@ tencentcloud/cbs/v20170312/errorcodes.py,sha256=3fSV9buu6lPIt4yJK8ob0k3uoY9yOnCQ
|
|
76
76
|
tencentcloud/cbs/v20170312/models.py,sha256=tBSxMntFvUPl-JJoomz1Vfr0mHS-S1HM2hjyTYuaQSQ,296670
|
77
77
|
tencentcloud/ccc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
78
78
|
tencentcloud/ccc/v20200210/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
79
|
-
tencentcloud/ccc/v20200210/ccc_client.py,sha256=
|
80
|
-
tencentcloud/ccc/v20200210/errorcodes.py,sha256=
|
81
|
-
tencentcloud/ccc/v20200210/models.py,sha256=
|
79
|
+
tencentcloud/ccc/v20200210/ccc_client.py,sha256=eOCfeIUvNyK_oQWZrHPi2FxAh66MdMB148qRpz3PHfo,65913
|
80
|
+
tencentcloud/ccc/v20200210/errorcodes.py,sha256=znNvHS98qvJLhrjqsIG4WCSK4llfWbmc7AORPcvH6ls,6996
|
81
|
+
tencentcloud/ccc/v20200210/models.py,sha256=s3_Q3xphxp4um_lZcL6ENTcGAxDOBoW0jeFiqoF5HQE,520175
|
82
82
|
tencentcloud/cdb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
83
83
|
tencentcloud/cdb/v20170320/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
84
84
|
tencentcloud/cdb/v20170320/cdb_client.py,sha256=N_e22Y0AKMyMsF4B7TRZb9BzVoqBbCLxBEwYMq9BHOw,137192
|
@@ -155,9 +155,9 @@ tencentcloud/cls/v20201016/errorcodes.py,sha256=wGw33S5FsD_a1MMLFMRsGFVWeryusbI0
|
|
155
155
|
tencentcloud/cls/v20201016/models.py,sha256=UqGsH22PInYJPAO0-lX379Gnc91smE90YTMdMNvttJk,742443
|
156
156
|
tencentcloud/cmq/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
157
157
|
tencentcloud/cmq/v20190304/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
158
|
-
tencentcloud/cmq/v20190304/cmq_client.py,sha256=
|
158
|
+
tencentcloud/cmq/v20190304/cmq_client.py,sha256=duNgxl9PUwAmI8RPRb5yZ1zj-e_yfGLWVgXWIZ7_Exk,2778
|
159
159
|
tencentcloud/cmq/v20190304/errorcodes.py,sha256=qcJnX35j2vtDbgYDCt3deHb_JGIO7990lcU9dNB-rNs,1369
|
160
|
-
tencentcloud/cmq/v20190304/models.py,sha256=
|
160
|
+
tencentcloud/cmq/v20190304/models.py,sha256=jUZ2kb7GvoZnyAKfJE86K-g_WCF9OZ3jSeuLJJiWzsU,43299
|
161
161
|
tencentcloud/common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
162
162
|
tencentcloud/common/abstract_client.py,sha256=sWmxrjgZASswqvsTKLlnpPrSFlLuwZ6kyf1GIZp_ECY,22519
|
163
163
|
tencentcloud/common/abstract_model.py,sha256=3v71msaz-M3krVA5iSiq8WgIOorPbHgs5Y63TPLBJvo,2335
|
@@ -194,9 +194,9 @@ tencentcloud/ctsdb/v20230202/errorcodes.py,sha256=8ziHZ5kDuYi66ukGjYgs0owezYllhl
|
|
194
194
|
tencentcloud/ctsdb/v20230202/models.py,sha256=HUjp4kKrK5ueZGPxPuyXNBfAojH68S3O5VBCzQq7Ryg,38807
|
195
195
|
tencentcloud/cvm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
196
196
|
tencentcloud/cvm/v20170312/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
197
|
-
tencentcloud/cvm/v20170312/cvm_client.py,sha256=
|
198
|
-
tencentcloud/cvm/v20170312/errorcodes.py,sha256=
|
199
|
-
tencentcloud/cvm/v20170312/models.py,sha256=
|
197
|
+
tencentcloud/cvm/v20170312/cvm_client.py,sha256=cxrRKQ34IP8Zcku8li3nfADvbUwlzETWb90liy3j7iU,100079
|
198
|
+
tencentcloud/cvm/v20170312/errorcodes.py,sha256=IdSi4w3t82FQIW-iw_5fwHemGjt_VX6w50H1_knswzY,54445
|
199
|
+
tencentcloud/cvm/v20170312/models.py,sha256=KDOqP6HZ39B2kMc6qQBCeb9zu4F76CXPsbUk2K6m1bo,811622
|
200
200
|
tencentcloud/cwp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
201
201
|
tencentcloud/cwp/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
202
202
|
tencentcloud/cwp/v20180228/cwp_client.py,sha256=4JrQ1BjTj7nCLEPbfPrStUDqzDoTtZl4TjqyKUwvl6I,444110
|
@@ -304,7 +304,7 @@ tencentcloud/faceid/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
|
|
304
304
|
tencentcloud/faceid/v20180301/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
305
305
|
tencentcloud/faceid/v20180301/errorcodes.py,sha256=UWFq3n_iGHWNHyp7I0DL-_OY1hjpqVxJnnpJaiEqMdk,9935
|
306
306
|
tencentcloud/faceid/v20180301/faceid_client.py,sha256=quJwWgh-GIGZ3gjGVHwxOnW9CLbKBNBOaT9YzzTku44,24108
|
307
|
-
tencentcloud/faceid/v20180301/models.py,sha256=
|
307
|
+
tencentcloud/faceid/v20180301/models.py,sha256=b441w3JymF42X-puDkb229aUf41ZNr_8gnDA1lRhxzM,388847
|
308
308
|
tencentcloud/gaap/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
309
309
|
tencentcloud/gaap/v20180529/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
310
310
|
tencentcloud/gaap/v20180529/errorcodes.py,sha256=mZT9m757HMuDMHkibCs0PWFE_VK9tryUOt7sCMwAi8U,11115
|
@@ -670,9 +670,9 @@ tencentcloud/vpc/v20170312/models.py,sha256=Z8A3AJC3YjsCMtNom0n48TUZXuRsukTztW8H
|
|
670
670
|
tencentcloud/vpc/v20170312/vpc_client.py,sha256=ww3OJcA9OZYuLpp4gKtNDlzDXVM57vki4YXzoZJs7pE,309244
|
671
671
|
tencentcloud/waf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
672
672
|
tencentcloud/waf/v20180125/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
673
|
-
tencentcloud/waf/v20180125/errorcodes.py,sha256=
|
674
|
-
tencentcloud/waf/v20180125/models.py,sha256=
|
675
|
-
tencentcloud/waf/v20180125/waf_client.py,sha256=
|
673
|
+
tencentcloud/waf/v20180125/errorcodes.py,sha256=mbBhPSqcFCJnqKCiPNX3knbSKlwvlA0UeHcKVUwwgEQ,6503
|
674
|
+
tencentcloud/waf/v20180125/models.py,sha256=R2QxVcmJR3UDiPMe6FBBjbJwi3xi5663OJs7Jvafgh8,882866
|
675
|
+
tencentcloud/waf/v20180125/waf_client.py,sha256=h_VBIyfPtJWYG-dM-YeKehxqcgVEXp7jrayET-Wf-7E,99083
|
676
676
|
tencentcloud/wedata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
677
677
|
tencentcloud/wedata/v20210820/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
678
678
|
tencentcloud/wedata/v20210820/errorcodes.py,sha256=QBM48ZFt_6XyThhUepUDBC8W2FIjUsWqNdLFLCzJK0M,3852
|
@@ -683,7 +683,7 @@ tencentcloud/yunjing/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
683
683
|
tencentcloud/yunjing/v20180228/errorcodes.py,sha256=g2ac3Fxgbof23WWhGj9VxvuLJZNshnB0Mg7jWUzTh24,3168
|
684
684
|
tencentcloud/yunjing/v20180228/models.py,sha256=vFpNnPGWiOLdTut0XPTpRRF5lobWUTkFUO1EHc9RkBk,330643
|
685
685
|
tencentcloud/yunjing/v20180228/yunjing_client.py,sha256=PqtaJz4gQ-rIxKXVMNtOKx7kFBQdUn-zKVuH2NcMFcA,67362
|
686
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
687
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
688
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
689
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
686
|
+
tencentcloud_sdk_python_intl_en-3.0.1275.dist-info/METADATA,sha256=S8Rw3axfkV3BViTp0DAdCHgL7u0RIlOictK7PoMclyc,1628
|
687
|
+
tencentcloud_sdk_python_intl_en-3.0.1275.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
688
|
+
tencentcloud_sdk_python_intl_en-3.0.1275.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
689
|
+
tencentcloud_sdk_python_intl_en-3.0.1275.dist-info/RECORD,,
|
File without changes
|