tencentcloud-sdk-python-intl-en 3.0.1138__py2.py3-none-any.whl → 3.0.1139__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.
Potentially problematic release.
This version of tencentcloud-sdk-python-intl-en might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/teo/v20220901/errorcodes.py +4 -1
- tencentcloud/teo/v20220901/models.py +6527 -498
- tencentcloud/teo/v20220901/teo_client.py +243 -13
- {tencentcloud_sdk_python_intl_en-3.0.1138.dist-info → tencentcloud_sdk_python_intl_en-3.0.1139.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1138.dist-info → tencentcloud_sdk_python_intl_en-3.0.1139.dist-info}/RECORD +8 -8
- {tencentcloud_sdk_python_intl_en-3.0.1138.dist-info → tencentcloud_sdk_python_intl_en-3.0.1139.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1138.dist-info → tencentcloud_sdk_python_intl_en-3.0.1139.dist-info}/top_level.txt +0 -0
|
@@ -258,6 +258,29 @@ class TeoClient(AbstractClient):
|
|
|
258
258
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
259
259
|
|
|
260
260
|
|
|
261
|
+
def CreateContentIdentifier(self, request):
|
|
262
|
+
"""This API is used to create content identifiers, where you can set descriptions, tags, and other information. It is also necessary to bind an enterprise edition package for billing data statistics. A content identifier can only bind one billing package, while a billing package can bind multiple content identifiers. This feature is only available to the allowlist.
|
|
263
|
+
|
|
264
|
+
:param request: Request instance for CreateContentIdentifier.
|
|
265
|
+
:type request: :class:`tencentcloud.teo.v20220901.models.CreateContentIdentifierRequest`
|
|
266
|
+
:rtype: :class:`tencentcloud.teo.v20220901.models.CreateContentIdentifierResponse`
|
|
267
|
+
|
|
268
|
+
"""
|
|
269
|
+
try:
|
|
270
|
+
params = request._serialize()
|
|
271
|
+
headers = request.headers
|
|
272
|
+
body = self.call("CreateContentIdentifier", params, headers=headers)
|
|
273
|
+
response = json.loads(body)
|
|
274
|
+
model = models.CreateContentIdentifierResponse()
|
|
275
|
+
model._deserialize(response["Response"])
|
|
276
|
+
return model
|
|
277
|
+
except Exception as e:
|
|
278
|
+
if isinstance(e, TencentCloudSDKException):
|
|
279
|
+
raise
|
|
280
|
+
else:
|
|
281
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
282
|
+
|
|
283
|
+
|
|
261
284
|
def CreateCustomizeErrorPage(self, request):
|
|
262
285
|
"""This API is used to create a custom response page.
|
|
263
286
|
|
|
@@ -282,7 +305,7 @@ class TeoClient(AbstractClient):
|
|
|
282
305
|
|
|
283
306
|
|
|
284
307
|
def CreateDnsRecord(self, request):
|
|
285
|
-
"""
|
|
308
|
+
"""After creating a site and the site is accessed in NS mode, you can create DNS records through this API.
|
|
286
309
|
|
|
287
310
|
:param request: Request instance for CreateDnsRecord.
|
|
288
311
|
:type request: :class:`tencentcloud.teo.v20220901.models.CreateDnsRecordRequest`
|
|
@@ -396,6 +419,29 @@ class TeoClient(AbstractClient):
|
|
|
396
419
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
397
420
|
|
|
398
421
|
|
|
422
|
+
def CreateL7AccRules(self, request):
|
|
423
|
+
"""This API is used to create rules in the [rule engine](https://intl.cloud.tencent.com/document/product/1552/70901?from_cn_redirect=1). Batch creation is supported.
|
|
424
|
+
|
|
425
|
+
:param request: Request instance for CreateL7AccRules.
|
|
426
|
+
:type request: :class:`tencentcloud.teo.v20220901.models.CreateL7AccRulesRequest`
|
|
427
|
+
:rtype: :class:`tencentcloud.teo.v20220901.models.CreateL7AccRulesResponse`
|
|
428
|
+
|
|
429
|
+
"""
|
|
430
|
+
try:
|
|
431
|
+
params = request._serialize()
|
|
432
|
+
headers = request.headers
|
|
433
|
+
body = self.call("CreateL7AccRules", params, headers=headers)
|
|
434
|
+
response = json.loads(body)
|
|
435
|
+
model = models.CreateL7AccRulesResponse()
|
|
436
|
+
model._deserialize(response["Response"])
|
|
437
|
+
return model
|
|
438
|
+
except Exception as e:
|
|
439
|
+
if isinstance(e, TencentCloudSDKException):
|
|
440
|
+
raise
|
|
441
|
+
else:
|
|
442
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
443
|
+
|
|
444
|
+
|
|
399
445
|
def CreateLoadBalancer(self, request):
|
|
400
446
|
"""This API is used to create a LoadBalancer. For details, see [Quickly Create Load Balancers](https://intl.cloud.tencent.com/document/product/1552/104223?from_cn_redirect=1). The load balancing feature is in beta test. If you need to use it, [contact us](https://intl.cloud.tencent.com/online?from_cn_redirect=1-service).
|
|
401
447
|
|
|
@@ -562,7 +608,7 @@ class TeoClient(AbstractClient):
|
|
|
562
608
|
|
|
563
609
|
|
|
564
610
|
def CreateRule(self, request):
|
|
565
|
-
"""This API is
|
|
611
|
+
"""This API is an older version. EdgeOne has fully upgraded the APIs related to the rule engine. For details, please refer to [CreateL7AccRules](https://intl.cloud.tencent.com/document/product/1552/115822?from_cn_redirect=1).
|
|
566
612
|
|
|
567
613
|
:param request: Request instance for CreateRule.
|
|
568
614
|
:type request: :class:`tencentcloud.teo.v20220901.models.CreateRuleRequest`
|
|
@@ -747,6 +793,29 @@ class TeoClient(AbstractClient):
|
|
|
747
793
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
748
794
|
|
|
749
795
|
|
|
796
|
+
def DeleteContentIdentifier(self, request):
|
|
797
|
+
"""Delete the specified content identifier. This feature is only available to the allowlist.
|
|
798
|
+
|
|
799
|
+
:param request: Request instance for DeleteContentIdentifier.
|
|
800
|
+
:type request: :class:`tencentcloud.teo.v20220901.models.DeleteContentIdentifierRequest`
|
|
801
|
+
:rtype: :class:`tencentcloud.teo.v20220901.models.DeleteContentIdentifierResponse`
|
|
802
|
+
|
|
803
|
+
"""
|
|
804
|
+
try:
|
|
805
|
+
params = request._serialize()
|
|
806
|
+
headers = request.headers
|
|
807
|
+
body = self.call("DeleteContentIdentifier", params, headers=headers)
|
|
808
|
+
response = json.loads(body)
|
|
809
|
+
model = models.DeleteContentIdentifierResponse()
|
|
810
|
+
model._deserialize(response["Response"])
|
|
811
|
+
return model
|
|
812
|
+
except Exception as e:
|
|
813
|
+
if isinstance(e, TencentCloudSDKException):
|
|
814
|
+
raise
|
|
815
|
+
else:
|
|
816
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
817
|
+
|
|
818
|
+
|
|
750
819
|
def DeleteCustomErrorPage(self, request):
|
|
751
820
|
"""This API is used to delete a custom response page.
|
|
752
821
|
|
|
@@ -771,7 +840,7 @@ class TeoClient(AbstractClient):
|
|
|
771
840
|
|
|
772
841
|
|
|
773
842
|
def DeleteDnsRecords(self, request):
|
|
774
|
-
"""
|
|
843
|
+
"""You can use this API to batch delete DNS records.
|
|
775
844
|
|
|
776
845
|
:param request: Request instance for DeleteDnsRecords.
|
|
777
846
|
:type request: :class:`tencentcloud.teo.v20220901.models.DeleteDnsRecordsRequest`
|
|
@@ -885,6 +954,29 @@ class TeoClient(AbstractClient):
|
|
|
885
954
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
886
955
|
|
|
887
956
|
|
|
957
|
+
def DeleteL7AccRules(self, request):
|
|
958
|
+
"""This API is used to delete rules of the [rule engine](https://intl.cloud.tencent.com/document/product/1552/70901?from_cn_redirect=1), supporting batch deletion.
|
|
959
|
+
|
|
960
|
+
:param request: Request instance for DeleteL7AccRules.
|
|
961
|
+
:type request: :class:`tencentcloud.teo.v20220901.models.DeleteL7AccRulesRequest`
|
|
962
|
+
:rtype: :class:`tencentcloud.teo.v20220901.models.DeleteL7AccRulesResponse`
|
|
963
|
+
|
|
964
|
+
"""
|
|
965
|
+
try:
|
|
966
|
+
params = request._serialize()
|
|
967
|
+
headers = request.headers
|
|
968
|
+
body = self.call("DeleteL7AccRules", params, headers=headers)
|
|
969
|
+
response = json.loads(body)
|
|
970
|
+
model = models.DeleteL7AccRulesResponse()
|
|
971
|
+
model._deserialize(response["Response"])
|
|
972
|
+
return model
|
|
973
|
+
except Exception as e:
|
|
974
|
+
if isinstance(e, TencentCloudSDKException):
|
|
975
|
+
raise
|
|
976
|
+
else:
|
|
977
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
978
|
+
|
|
979
|
+
|
|
888
980
|
def DeleteLoadBalancer(self, request):
|
|
889
981
|
"""This API is used to delete a LoadBalancer. If the LoadBalancer is referenced by other services (for example, Layer-4 proxy), the LoadBalancer cannot be deleted until the reference relationship is removed. The load balancing feature is in beta test. If you need to use it, [contact us](https://intl.cloud.tencent.com/online?from_cn_redirect=1-service).
|
|
890
982
|
|
|
@@ -955,7 +1047,7 @@ class TeoClient(AbstractClient):
|
|
|
955
1047
|
|
|
956
1048
|
|
|
957
1049
|
def DeleteRules(self, request):
|
|
958
|
-
"""This API is
|
|
1050
|
+
"""This API is an older version. EdgeOne has fully upgraded the APIs related to the rule engine. For details, please refer to [DeleteL7AccRules](https://intl.cloud.tencent.com/document/product/1552/115821?from_cn_redirect=1).
|
|
959
1051
|
|
|
960
1052
|
:param request: Request instance for DeleteRules.
|
|
961
1053
|
:type request: :class:`tencentcloud.teo.v20220901.models.DeleteRulesRequest`
|
|
@@ -1230,6 +1322,29 @@ class TeoClient(AbstractClient):
|
|
|
1230
1322
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1231
1323
|
|
|
1232
1324
|
|
|
1325
|
+
def DescribeContentIdentifiers(self, request):
|
|
1326
|
+
"""Batch query content identifiers, which can be filtered by ID, description, status, or Tag. Deleted content identifiers queried by status are retained for only three months. This feature is only open to the allowlist.
|
|
1327
|
+
|
|
1328
|
+
:param request: Request instance for DescribeContentIdentifiers.
|
|
1329
|
+
:type request: :class:`tencentcloud.teo.v20220901.models.DescribeContentIdentifiersRequest`
|
|
1330
|
+
:rtype: :class:`tencentcloud.teo.v20220901.models.DescribeContentIdentifiersResponse`
|
|
1331
|
+
|
|
1332
|
+
"""
|
|
1333
|
+
try:
|
|
1334
|
+
params = request._serialize()
|
|
1335
|
+
headers = request.headers
|
|
1336
|
+
body = self.call("DescribeContentIdentifiers", params, headers=headers)
|
|
1337
|
+
response = json.loads(body)
|
|
1338
|
+
model = models.DescribeContentIdentifiersResponse()
|
|
1339
|
+
model._deserialize(response["Response"])
|
|
1340
|
+
return model
|
|
1341
|
+
except Exception as e:
|
|
1342
|
+
if isinstance(e, TencentCloudSDKException):
|
|
1343
|
+
raise
|
|
1344
|
+
else:
|
|
1345
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1346
|
+
|
|
1347
|
+
|
|
1233
1348
|
def DescribeContentQuota(self, request):
|
|
1234
1349
|
"""This API is used to query content management quotas.
|
|
1235
1350
|
|
|
@@ -1392,7 +1507,7 @@ class TeoClient(AbstractClient):
|
|
|
1392
1507
|
|
|
1393
1508
|
|
|
1394
1509
|
def DescribeDnsRecords(self, request):
|
|
1395
|
-
"""This API is used to
|
|
1510
|
+
"""This API is used to view DNS record information under a site, including DNS record name, record type, and record content. It supports querying specific DNS record information by specifying filter conditions.
|
|
1396
1511
|
|
|
1397
1512
|
:param request: Request instance for DescribeDnsRecords.
|
|
1398
1513
|
:type request: :class:`tencentcloud.teo.v20220901.models.DescribeDnsRecordsRequest`
|
|
@@ -1507,7 +1622,7 @@ class TeoClient(AbstractClient):
|
|
|
1507
1622
|
|
|
1508
1623
|
|
|
1509
1624
|
def DescribeHostsSetting(self, request):
|
|
1510
|
-
"""This API is
|
|
1625
|
+
"""This API is an old version. EdgeOne has fully upgraded the APIs related to the rule engine. You can obtain detailed configurations of domain names through [DescribeL7AccSetting](https://intl.cloud.tencent.com/document/product/1552/115819?from_cn_redirect=1) and [DescribeL7AccRules](https://intl.cloud.tencent.com/document/product/1552/115820?from_cn_redirect=1).
|
|
1511
1626
|
|
|
1512
1627
|
:param request: Request instance for DescribeHostsSetting.
|
|
1513
1628
|
:type request: :class:`tencentcloud.teo.v20220901.models.DescribeHostsSettingRequest`
|
|
@@ -1621,6 +1736,52 @@ class TeoClient(AbstractClient):
|
|
|
1621
1736
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1622
1737
|
|
|
1623
1738
|
|
|
1739
|
+
def DescribeL7AccRules(self, request):
|
|
1740
|
+
"""This API is used to query the rule list of the rule engine (https://intl.cloud.tencent.com/document/product/1552/70901?from_cn_redirect=1).
|
|
1741
|
+
|
|
1742
|
+
:param request: Request instance for DescribeL7AccRules.
|
|
1743
|
+
:type request: :class:`tencentcloud.teo.v20220901.models.DescribeL7AccRulesRequest`
|
|
1744
|
+
:rtype: :class:`tencentcloud.teo.v20220901.models.DescribeL7AccRulesResponse`
|
|
1745
|
+
|
|
1746
|
+
"""
|
|
1747
|
+
try:
|
|
1748
|
+
params = request._serialize()
|
|
1749
|
+
headers = request.headers
|
|
1750
|
+
body = self.call("DescribeL7AccRules", params, headers=headers)
|
|
1751
|
+
response = json.loads(body)
|
|
1752
|
+
model = models.DescribeL7AccRulesResponse()
|
|
1753
|
+
model._deserialize(response["Response"])
|
|
1754
|
+
return model
|
|
1755
|
+
except Exception as e:
|
|
1756
|
+
if isinstance(e, TencentCloudSDKException):
|
|
1757
|
+
raise
|
|
1758
|
+
else:
|
|
1759
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1760
|
+
|
|
1761
|
+
|
|
1762
|
+
def DescribeL7AccSetting(self, request):
|
|
1763
|
+
"""This API is used to query the global configuration of [Site Acceleration](https://intl.cloud.tencent.com/document/product/1552/96193?from_cn_redirect=1).
|
|
1764
|
+
|
|
1765
|
+
:param request: Request instance for DescribeL7AccSetting.
|
|
1766
|
+
:type request: :class:`tencentcloud.teo.v20220901.models.DescribeL7AccSettingRequest`
|
|
1767
|
+
:rtype: :class:`tencentcloud.teo.v20220901.models.DescribeL7AccSettingResponse`
|
|
1768
|
+
|
|
1769
|
+
"""
|
|
1770
|
+
try:
|
|
1771
|
+
params = request._serialize()
|
|
1772
|
+
headers = request.headers
|
|
1773
|
+
body = self.call("DescribeL7AccSetting", params, headers=headers)
|
|
1774
|
+
response = json.loads(body)
|
|
1775
|
+
model = models.DescribeL7AccSettingResponse()
|
|
1776
|
+
model._deserialize(response["Response"])
|
|
1777
|
+
return model
|
|
1778
|
+
except Exception as e:
|
|
1779
|
+
if isinstance(e, TencentCloudSDKException):
|
|
1780
|
+
raise
|
|
1781
|
+
else:
|
|
1782
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1783
|
+
|
|
1784
|
+
|
|
1624
1785
|
def DescribeLoadBalancerList(self, request):
|
|
1625
1786
|
"""This API is used to query the LoadBalancer list. The load balancing feature is in beta test. If you need to use it, [contact us](https://intl.cloud.tencent.com/online?from_cn_redirect=1-service).
|
|
1626
1787
|
|
|
@@ -1806,7 +1967,7 @@ class TeoClient(AbstractClient):
|
|
|
1806
1967
|
|
|
1807
1968
|
|
|
1808
1969
|
def DescribeRules(self, request):
|
|
1809
|
-
"""This API is
|
|
1970
|
+
"""This API is an older version. EdgeOne has fully upgraded the APIs related to the rule engine. For details, please refer to [DescribeL7AccRules](https://intl.cloud.tencent.com/document/product/1552/115820?from_cn_redirect=1).
|
|
1810
1971
|
|
|
1811
1972
|
:param request: Request instance for DescribeRules.
|
|
1812
1973
|
:type request: :class:`tencentcloud.teo.v20220901.models.DescribeRulesRequest`
|
|
@@ -1829,7 +1990,7 @@ class TeoClient(AbstractClient):
|
|
|
1829
1990
|
|
|
1830
1991
|
|
|
1831
1992
|
def DescribeRulesSetting(self, request):
|
|
1832
|
-
"""This API is
|
|
1993
|
+
"""This API is an older version. EdgeOne has fully upgraded the APIs related to the rule engine. For details, please refer to [RuleEngineAction](https://intl.cloud.tencent.com/document/product/1552/80721?from_cn_redirect=1#RuleEngineAction).
|
|
1833
1994
|
|
|
1834
1995
|
:param request: Request instance for DescribeRulesSetting.
|
|
1835
1996
|
:type request: :class:`tencentcloud.teo.v20220901.models.DescribeRulesSettingRequest`
|
|
@@ -2062,7 +2223,7 @@ class TeoClient(AbstractClient):
|
|
|
2062
2223
|
|
|
2063
2224
|
|
|
2064
2225
|
def DescribeZoneSetting(self, request):
|
|
2065
|
-
"""This API is
|
|
2226
|
+
"""This API is an old version. EdgeOne has fully upgraded the APIs related to the rule engine. For details, please refer to [DescribeL7AccSetting](https://intl.cloud.tencent.com/document/product/1552/115819?from_cn_redirect=1).
|
|
2066
2227
|
|
|
2067
2228
|
:param request: Request instance for DescribeZoneSetting.
|
|
2068
2229
|
:type request: :class:`tencentcloud.teo.v20220901.models.DescribeZoneSettingRequest`
|
|
@@ -2486,6 +2647,29 @@ class TeoClient(AbstractClient):
|
|
|
2486
2647
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2487
2648
|
|
|
2488
2649
|
|
|
2650
|
+
def ModifyContentIdentifier(self, request):
|
|
2651
|
+
"""Modify content identifier, only description modification is supported. This feature is only open to the allowlist.
|
|
2652
|
+
|
|
2653
|
+
:param request: Request instance for ModifyContentIdentifier.
|
|
2654
|
+
:type request: :class:`tencentcloud.teo.v20220901.models.ModifyContentIdentifierRequest`
|
|
2655
|
+
:rtype: :class:`tencentcloud.teo.v20220901.models.ModifyContentIdentifierResponse`
|
|
2656
|
+
|
|
2657
|
+
"""
|
|
2658
|
+
try:
|
|
2659
|
+
params = request._serialize()
|
|
2660
|
+
headers = request.headers
|
|
2661
|
+
body = self.call("ModifyContentIdentifier", params, headers=headers)
|
|
2662
|
+
response = json.loads(body)
|
|
2663
|
+
model = models.ModifyContentIdentifierResponse()
|
|
2664
|
+
model._deserialize(response["Response"])
|
|
2665
|
+
return model
|
|
2666
|
+
except Exception as e:
|
|
2667
|
+
if isinstance(e, TencentCloudSDKException):
|
|
2668
|
+
raise
|
|
2669
|
+
else:
|
|
2670
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2671
|
+
|
|
2672
|
+
|
|
2489
2673
|
def ModifyCustomErrorPage(self, request):
|
|
2490
2674
|
"""This API is used to modify a custom response page.
|
|
2491
2675
|
|
|
@@ -2510,7 +2694,7 @@ class TeoClient(AbstractClient):
|
|
|
2510
2694
|
|
|
2511
2695
|
|
|
2512
2696
|
def ModifyDnsRecords(self, request):
|
|
2513
|
-
"""
|
|
2697
|
+
"""This API is used to bulk modify DNS records.
|
|
2514
2698
|
|
|
2515
2699
|
:param request: Request instance for ModifyDnsRecords.
|
|
2516
2700
|
:type request: :class:`tencentcloud.teo.v20220901.models.ModifyDnsRecordsRequest`
|
|
@@ -2533,7 +2717,7 @@ class TeoClient(AbstractClient):
|
|
|
2533
2717
|
|
|
2534
2718
|
|
|
2535
2719
|
def ModifyDnsRecordsStatus(self, request):
|
|
2536
|
-
"""You can
|
|
2720
|
+
"""You can batch modify the status of DNS records through this API, enabling and disabling records in bulk.
|
|
2537
2721
|
|
|
2538
2722
|
:param request: Request instance for ModifyDnsRecordsStatus.
|
|
2539
2723
|
:type request: :class:`tencentcloud.teo.v20220901.models.ModifyDnsRecordsStatusRequest`
|
|
@@ -2741,6 +2925,52 @@ class TeoClient(AbstractClient):
|
|
|
2741
2925
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2742
2926
|
|
|
2743
2927
|
|
|
2928
|
+
def ModifyL7AccRule(self, request):
|
|
2929
|
+
"""This API is used to modify rules in the [rule engine](https://intl.cloud.tencent.com/document/product/1552/70901?from_cn_redirect=1), supporting only one rule modification per request.
|
|
2930
|
+
|
|
2931
|
+
:param request: Request instance for ModifyL7AccRule.
|
|
2932
|
+
:type request: :class:`tencentcloud.teo.v20220901.models.ModifyL7AccRuleRequest`
|
|
2933
|
+
:rtype: :class:`tencentcloud.teo.v20220901.models.ModifyL7AccRuleResponse`
|
|
2934
|
+
|
|
2935
|
+
"""
|
|
2936
|
+
try:
|
|
2937
|
+
params = request._serialize()
|
|
2938
|
+
headers = request.headers
|
|
2939
|
+
body = self.call("ModifyL7AccRule", params, headers=headers)
|
|
2940
|
+
response = json.loads(body)
|
|
2941
|
+
model = models.ModifyL7AccRuleResponse()
|
|
2942
|
+
model._deserialize(response["Response"])
|
|
2943
|
+
return model
|
|
2944
|
+
except Exception as e:
|
|
2945
|
+
if isinstance(e, TencentCloudSDKException):
|
|
2946
|
+
raise
|
|
2947
|
+
else:
|
|
2948
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2949
|
+
|
|
2950
|
+
|
|
2951
|
+
def ModifyL7AccSetting(self, request):
|
|
2952
|
+
"""This API is used to modify the global configuration of [Site Acceleration](https://intl.cloud.tencent.com/document/product/1552/96193?from_cn_redirect=1).
|
|
2953
|
+
|
|
2954
|
+
:param request: Request instance for ModifyL7AccSetting.
|
|
2955
|
+
:type request: :class:`tencentcloud.teo.v20220901.models.ModifyL7AccSettingRequest`
|
|
2956
|
+
:rtype: :class:`tencentcloud.teo.v20220901.models.ModifyL7AccSettingResponse`
|
|
2957
|
+
|
|
2958
|
+
"""
|
|
2959
|
+
try:
|
|
2960
|
+
params = request._serialize()
|
|
2961
|
+
headers = request.headers
|
|
2962
|
+
body = self.call("ModifyL7AccSetting", params, headers=headers)
|
|
2963
|
+
response = json.loads(body)
|
|
2964
|
+
model = models.ModifyL7AccSettingResponse()
|
|
2965
|
+
model._deserialize(response["Response"])
|
|
2966
|
+
return model
|
|
2967
|
+
except Exception as e:
|
|
2968
|
+
if isinstance(e, TencentCloudSDKException):
|
|
2969
|
+
raise
|
|
2970
|
+
else:
|
|
2971
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2972
|
+
|
|
2973
|
+
|
|
2744
2974
|
def ModifyLoadBalancer(self, request):
|
|
2745
2975
|
"""This API is used to modify LoadBalancer configuration. The load balancing feature is in beta test. If you need to use it, [contact us](https://intl.cloud.tencent.com/online?from_cn_redirect=1-service).
|
|
2746
2976
|
|
|
@@ -2834,7 +3064,7 @@ class TeoClient(AbstractClient):
|
|
|
2834
3064
|
|
|
2835
3065
|
|
|
2836
3066
|
def ModifyRule(self, request):
|
|
2837
|
-
"""This API is
|
|
3067
|
+
"""This API is an older version. EdgeOne has fully upgraded the APIs related to the rule engine. For details, please refer to [ModifyL7AccRule](https://intl.cloud.tencent.com/document/product/1552/115818?from_cn_redirect=1).
|
|
2838
3068
|
|
|
2839
3069
|
:param request: Request instance for ModifyRule.
|
|
2840
3070
|
:type request: :class:`tencentcloud.teo.v20220901.models.ModifyRuleRequest`
|
|
@@ -2926,7 +3156,7 @@ class TeoClient(AbstractClient):
|
|
|
2926
3156
|
|
|
2927
3157
|
|
|
2928
3158
|
def ModifyZoneSetting(self, request):
|
|
2929
|
-
"""This API is
|
|
3159
|
+
"""This API is an older version. EdgeOne has fully upgraded the APIs related to the rule engine. For details, please refer to [ModifyL7AccSetting](https://intl.cloud.tencent.com/document/product/1552/115817?from_cn_redirect=1).
|
|
2930
3160
|
|
|
2931
3161
|
:param request: Request instance for ModifyZoneSetting.
|
|
2932
3162
|
:type request: :class:`tencentcloud.teo.v20220901.models.ModifyZoneSettingRequest`
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=
|
|
1
|
+
tencentcloud/__init__.py,sha256=12sBIo_HdeOM2T0722OzgM66QRbAoWzr-fWBjAPsKUk,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=b5pLP_oF5HZHo4xbn-hI4dkpnirhcHB2rNDWvGf4q1Y,2919
|
|
@@ -543,9 +543,9 @@ tencentcloud/teo/v20220106/errorcodes.py,sha256=rbR15SA5lWz2Bfvn2Qb_33J7jDVaoBB1
|
|
|
543
543
|
tencentcloud/teo/v20220106/models.py,sha256=O7LYEZTTKjloNI2BuDHcaBdEpxjHezVYck_xkVhQse8,777923
|
|
544
544
|
tencentcloud/teo/v20220106/teo_client.py,sha256=xFgjEY9outkMEOonYeYfLL18TRUxVSRdE7Q3m6ACyWM,82902
|
|
545
545
|
tencentcloud/teo/v20220901/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
546
|
-
tencentcloud/teo/v20220901/errorcodes.py,sha256=
|
|
547
|
-
tencentcloud/teo/v20220901/models.py,sha256=
|
|
548
|
-
tencentcloud/teo/v20220901/teo_client.py,sha256=
|
|
546
|
+
tencentcloud/teo/v20220901/errorcodes.py,sha256=MJPg6l1EQMd5FhtR2D1Ui8oIXcMmfzP3FKizlIz_blM,60593
|
|
547
|
+
tencentcloud/teo/v20220901/models.py,sha256=8cyFUYBfvz8ppYmP9m7HMNStAPAlzRXvOjRKMmBSMqY,1557222
|
|
548
|
+
tencentcloud/teo/v20220901/teo_client.py,sha256=0nBbTFBoa0ynFKmSSp2Y4CYqgqYfAXDN_0k6NvKe0Tc,147753
|
|
549
549
|
tencentcloud/tiw/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
550
550
|
tencentcloud/tiw/v20190919/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
551
551
|
tencentcloud/tiw/v20190919/errorcodes.py,sha256=SWlIppzLafoknDCajqvlAdh2a83rRm07aksn1EUGVAc,6361
|
|
@@ -624,7 +624,7 @@ tencentcloud/yunjing/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
|
624
624
|
tencentcloud/yunjing/v20180228/errorcodes.py,sha256=VEqwMbMBe7F2oAW6ZDu3vAivBr60lbo7FWduFqRTEVg,3195
|
|
625
625
|
tencentcloud/yunjing/v20180228/models.py,sha256=0rnsJ4JkA5aCTV1cVwCuKnzooe6IhQ0NS3ij6tJ22uw,330670
|
|
626
626
|
tencentcloud/yunjing/v20180228/yunjing_client.py,sha256=GA7Fo5GmpEJ2kufV2upw-ZpMZxznsPZ3NKDKDDAI4Ao,67384
|
|
627
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
628
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
629
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
630
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
627
|
+
tencentcloud_sdk_python_intl_en-3.0.1139.dist-info/METADATA,sha256=B700opiGzx9JbajK6gVGi5CfoQe0frfoRGrzyHGRTfA,1628
|
|
628
|
+
tencentcloud_sdk_python_intl_en-3.0.1139.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
629
|
+
tencentcloud_sdk_python_intl_en-3.0.1139.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
630
|
+
tencentcloud_sdk_python_intl_en-3.0.1139.dist-info/RECORD,,
|
|
File without changes
|