tencentcloud-sdk-python-intl-en 3.0.1292__py2.py3-none-any.whl → 3.0.1294__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.

@@ -1160,6 +1160,75 @@ class VpcClient(AbstractClient):
1160
1160
  raise TencentCloudSDKException(type(e).__name__, str(e))
1161
1161
 
1162
1162
 
1163
+ def CreateRoutePolicy(self, request):
1164
+ r"""This API is used to create a VPC route reception policy, including name, description and policy entries.
1165
+
1166
+ :param request: Request instance for CreateRoutePolicy.
1167
+ :type request: :class:`tencentcloud.vpc.v20170312.models.CreateRoutePolicyRequest`
1168
+ :rtype: :class:`tencentcloud.vpc.v20170312.models.CreateRoutePolicyResponse`
1169
+
1170
+ """
1171
+ try:
1172
+ params = request._serialize()
1173
+ headers = request.headers
1174
+ body = self.call("CreateRoutePolicy", params, headers=headers)
1175
+ response = json.loads(body)
1176
+ model = models.CreateRoutePolicyResponse()
1177
+ model._deserialize(response["Response"])
1178
+ return model
1179
+ except Exception as e:
1180
+ if isinstance(e, TencentCloudSDKException):
1181
+ raise
1182
+ else:
1183
+ raise TencentCloudSDKException(type(e).__name__, str(e))
1184
+
1185
+
1186
+ def CreateRoutePolicyAssociations(self, request):
1187
+ r"""This API is used to create route reception policy bindings (the binding relationship between policy instances and route table instances as well as set priorities).
1188
+
1189
+ :param request: Request instance for CreateRoutePolicyAssociations.
1190
+ :type request: :class:`tencentcloud.vpc.v20170312.models.CreateRoutePolicyAssociationsRequest`
1191
+ :rtype: :class:`tencentcloud.vpc.v20170312.models.CreateRoutePolicyAssociationsResponse`
1192
+
1193
+ """
1194
+ try:
1195
+ params = request._serialize()
1196
+ headers = request.headers
1197
+ body = self.call("CreateRoutePolicyAssociations", params, headers=headers)
1198
+ response = json.loads(body)
1199
+ model = models.CreateRoutePolicyAssociationsResponse()
1200
+ model._deserialize(response["Response"])
1201
+ return model
1202
+ except Exception as e:
1203
+ if isinstance(e, TencentCloudSDKException):
1204
+ raise
1205
+ else:
1206
+ raise TencentCloudSDKException(type(e).__name__, str(e))
1207
+
1208
+
1209
+ def CreateRoutePolicyEntries(self, request):
1210
+ r"""This API is used to create route reception policy entries.
1211
+
1212
+ :param request: Request instance for CreateRoutePolicyEntries.
1213
+ :type request: :class:`tencentcloud.vpc.v20170312.models.CreateRoutePolicyEntriesRequest`
1214
+ :rtype: :class:`tencentcloud.vpc.v20170312.models.CreateRoutePolicyEntriesResponse`
1215
+
1216
+ """
1217
+ try:
1218
+ params = request._serialize()
1219
+ headers = request.headers
1220
+ body = self.call("CreateRoutePolicyEntries", params, headers=headers)
1221
+ response = json.loads(body)
1222
+ model = models.CreateRoutePolicyEntriesResponse()
1223
+ model._deserialize(response["Response"])
1224
+ return model
1225
+ except Exception as e:
1226
+ if isinstance(e, TencentCloudSDKException):
1227
+ raise
1228
+ else:
1229
+ raise TencentCloudSDKException(type(e).__name__, str(e))
1230
+
1231
+
1163
1232
  def CreateRouteTable(self, request):
1164
1233
  r"""This API is used to create a route table.
1165
1234
  * After the VPC instance has been created, the system creates a default route table with which all newly created subnets will be associated. By default, you can use this route table to manage your routing policies. If you have multiple routing policies, you can call the API for creating route tables to create more route tables to manage these routing policies.
@@ -2050,6 +2119,75 @@ class VpcClient(AbstractClient):
2050
2119
  raise TencentCloudSDKException(type(e).__name__, str(e))
2051
2120
 
2052
2121
 
2122
+ def DeleteRoutePolicy(self, request):
2123
+ r"""This API is used to delete a route reception policy and entries.
2124
+
2125
+ :param request: Request instance for DeleteRoutePolicy.
2126
+ :type request: :class:`tencentcloud.vpc.v20170312.models.DeleteRoutePolicyRequest`
2127
+ :rtype: :class:`tencentcloud.vpc.v20170312.models.DeleteRoutePolicyResponse`
2128
+
2129
+ """
2130
+ try:
2131
+ params = request._serialize()
2132
+ headers = request.headers
2133
+ body = self.call("DeleteRoutePolicy", params, headers=headers)
2134
+ response = json.loads(body)
2135
+ model = models.DeleteRoutePolicyResponse()
2136
+ model._deserialize(response["Response"])
2137
+ return model
2138
+ except Exception as e:
2139
+ if isinstance(e, TencentCloudSDKException):
2140
+ raise
2141
+ else:
2142
+ raise TencentCloudSDKException(type(e).__name__, str(e))
2143
+
2144
+
2145
+ def DeleteRoutePolicyAssociations(self, request):
2146
+ r"""This API is used to delete route reception policy bindings (the binding relationship between route reception policy objects and route tables).
2147
+
2148
+ :param request: Request instance for DeleteRoutePolicyAssociations.
2149
+ :type request: :class:`tencentcloud.vpc.v20170312.models.DeleteRoutePolicyAssociationsRequest`
2150
+ :rtype: :class:`tencentcloud.vpc.v20170312.models.DeleteRoutePolicyAssociationsResponse`
2151
+
2152
+ """
2153
+ try:
2154
+ params = request._serialize()
2155
+ headers = request.headers
2156
+ body = self.call("DeleteRoutePolicyAssociations", params, headers=headers)
2157
+ response = json.loads(body)
2158
+ model = models.DeleteRoutePolicyAssociationsResponse()
2159
+ model._deserialize(response["Response"])
2160
+ return model
2161
+ except Exception as e:
2162
+ if isinstance(e, TencentCloudSDKException):
2163
+ raise
2164
+ else:
2165
+ raise TencentCloudSDKException(type(e).__name__, str(e))
2166
+
2167
+
2168
+ def DeleteRoutePolicyEntries(self, request):
2169
+ r"""This API is used to delete route reception policy entries.
2170
+
2171
+ :param request: Request instance for DeleteRoutePolicyEntries.
2172
+ :type request: :class:`tencentcloud.vpc.v20170312.models.DeleteRoutePolicyEntriesRequest`
2173
+ :rtype: :class:`tencentcloud.vpc.v20170312.models.DeleteRoutePolicyEntriesResponse`
2174
+
2175
+ """
2176
+ try:
2177
+ params = request._serialize()
2178
+ headers = request.headers
2179
+ body = self.call("DeleteRoutePolicyEntries", params, headers=headers)
2180
+ response = json.loads(body)
2181
+ model = models.DeleteRoutePolicyEntriesResponse()
2182
+ model._deserialize(response["Response"])
2183
+ return model
2184
+ except Exception as e:
2185
+ if isinstance(e, TencentCloudSDKException):
2186
+ raise
2187
+ else:
2188
+ raise TencentCloudSDKException(type(e).__name__, str(e))
2189
+
2190
+
2053
2191
  def DeleteRouteTable(self, request):
2054
2192
  r"""This API is used to delete a route table.
2055
2193
 
@@ -3427,6 +3565,29 @@ class VpcClient(AbstractClient):
3427
3565
  raise TencentCloudSDKException(type(e).__name__, str(e))
3428
3566
 
3429
3567
 
3568
+ def DescribeRoutePolicyEntries(self, request):
3569
+ r"""This API is used to query the route reception policy entry list.
3570
+
3571
+ :param request: Request instance for DescribeRoutePolicyEntries.
3572
+ :type request: :class:`tencentcloud.vpc.v20170312.models.DescribeRoutePolicyEntriesRequest`
3573
+ :rtype: :class:`tencentcloud.vpc.v20170312.models.DescribeRoutePolicyEntriesResponse`
3574
+
3575
+ """
3576
+ try:
3577
+ params = request._serialize()
3578
+ headers = request.headers
3579
+ body = self.call("DescribeRoutePolicyEntries", params, headers=headers)
3580
+ response = json.loads(body)
3581
+ model = models.DescribeRoutePolicyEntriesResponse()
3582
+ model._deserialize(response["Response"])
3583
+ return model
3584
+ except Exception as e:
3585
+ if isinstance(e, TencentCloudSDKException):
3586
+ raise
3587
+ else:
3588
+ raise TencentCloudSDKException(type(e).__name__, str(e))
3589
+
3590
+
3430
3591
  def DescribeRouteTables(self, request):
3431
3592
  r"""This API is used to query route tables.
3432
3593
 
@@ -5667,6 +5828,29 @@ class VpcClient(AbstractClient):
5667
5828
  raise TencentCloudSDKException(type(e).__name__, str(e))
5668
5829
 
5669
5830
 
5831
+ def ModifyRoutePolicyAttribute(self, request):
5832
+ r"""This API is used to modify the route reception policy attribute.
5833
+
5834
+ :param request: Request instance for ModifyRoutePolicyAttribute.
5835
+ :type request: :class:`tencentcloud.vpc.v20170312.models.ModifyRoutePolicyAttributeRequest`
5836
+ :rtype: :class:`tencentcloud.vpc.v20170312.models.ModifyRoutePolicyAttributeResponse`
5837
+
5838
+ """
5839
+ try:
5840
+ params = request._serialize()
5841
+ headers = request.headers
5842
+ body = self.call("ModifyRoutePolicyAttribute", params, headers=headers)
5843
+ response = json.loads(body)
5844
+ model = models.ModifyRoutePolicyAttributeResponse()
5845
+ model._deserialize(response["Response"])
5846
+ return model
5847
+ except Exception as e:
5848
+ if isinstance(e, TencentCloudSDKException):
5849
+ raise
5850
+ else:
5851
+ raise TencentCloudSDKException(type(e).__name__, str(e))
5852
+
5853
+
5670
5854
  def ModifyRouteTableAttribute(self, request):
5671
5855
  r"""This API (ModifyRouteTableAttribute) is used to modify the attributes of a route table.
5672
5856
 
@@ -6266,6 +6450,52 @@ class VpcClient(AbstractClient):
6266
6450
  raise TencentCloudSDKException(type(e).__name__, str(e))
6267
6451
 
6268
6452
 
6453
+ def ReplaceRoutePolicyAssociations(self, request):
6454
+ r"""This API is used to modify the binding Priority (Priority) based on the route reception policy instance ID (RoutePolicyId) and route table instance ID (RouteTableId), supporting batch modification.
6455
+
6456
+ :param request: Request instance for ReplaceRoutePolicyAssociations.
6457
+ :type request: :class:`tencentcloud.vpc.v20170312.models.ReplaceRoutePolicyAssociationsRequest`
6458
+ :rtype: :class:`tencentcloud.vpc.v20170312.models.ReplaceRoutePolicyAssociationsResponse`
6459
+
6460
+ """
6461
+ try:
6462
+ params = request._serialize()
6463
+ headers = request.headers
6464
+ body = self.call("ReplaceRoutePolicyAssociations", params, headers=headers)
6465
+ response = json.loads(body)
6466
+ model = models.ReplaceRoutePolicyAssociationsResponse()
6467
+ model._deserialize(response["Response"])
6468
+ return model
6469
+ except Exception as e:
6470
+ if isinstance(e, TencentCloudSDKException):
6471
+ raise
6472
+ else:
6473
+ raise TencentCloudSDKException(type(e).__name__, str(e))
6474
+
6475
+
6476
+ def ReplaceRoutePolicyEntries(self, request):
6477
+ r"""This API is used to modify specified routing policy entries based on route reception policy rule ID and supports batch modification.
6478
+
6479
+ :param request: Request instance for ReplaceRoutePolicyEntries.
6480
+ :type request: :class:`tencentcloud.vpc.v20170312.models.ReplaceRoutePolicyEntriesRequest`
6481
+ :rtype: :class:`tencentcloud.vpc.v20170312.models.ReplaceRoutePolicyEntriesResponse`
6482
+
6483
+ """
6484
+ try:
6485
+ params = request._serialize()
6486
+ headers = request.headers
6487
+ body = self.call("ReplaceRoutePolicyEntries", params, headers=headers)
6488
+ response = json.loads(body)
6489
+ model = models.ReplaceRoutePolicyEntriesResponse()
6490
+ model._deserialize(response["Response"])
6491
+ return model
6492
+ except Exception as e:
6493
+ if isinstance(e, TencentCloudSDKException):
6494
+ raise
6495
+ else:
6496
+ raise TencentCloudSDKException(type(e).__name__, str(e))
6497
+
6498
+
6269
6499
  def ReplaceRouteTableAssociation(self, request):
6270
6500
  r"""This API (ReplaceRouteTableAssociation) is used to modify the route table associated with a subnet.
6271
6501
  * A subnet can only be associated with one route table.
@@ -6407,6 +6637,52 @@ class VpcClient(AbstractClient):
6407
6637
  raise TencentCloudSDKException(type(e).__name__, str(e))
6408
6638
 
6409
6639
 
6640
+ def ResetRoutePolicyAssociations(self, request):
6641
+ r"""This API is used to unbind the routing policy instance already bound to a specific route table instance, set up alarms for the new binding routing policy and priority.
6642
+
6643
+ :param request: Request instance for ResetRoutePolicyAssociations.
6644
+ :type request: :class:`tencentcloud.vpc.v20170312.models.ResetRoutePolicyAssociationsRequest`
6645
+ :rtype: :class:`tencentcloud.vpc.v20170312.models.ResetRoutePolicyAssociationsResponse`
6646
+
6647
+ """
6648
+ try:
6649
+ params = request._serialize()
6650
+ headers = request.headers
6651
+ body = self.call("ResetRoutePolicyAssociations", params, headers=headers)
6652
+ response = json.loads(body)
6653
+ model = models.ResetRoutePolicyAssociationsResponse()
6654
+ model._deserialize(response["Response"])
6655
+ return model
6656
+ except Exception as e:
6657
+ if isinstance(e, TencentCloudSDKException):
6658
+ raise
6659
+ else:
6660
+ raise TencentCloudSDKException(type(e).__name__, str(e))
6661
+
6662
+
6663
+ def ResetRoutePolicyEntries(self, request):
6664
+ r"""This API is used to reset the designated route reception policy entry based on the rule ID and supports batch modification.
6665
+
6666
+ :param request: Request instance for ResetRoutePolicyEntries.
6667
+ :type request: :class:`tencentcloud.vpc.v20170312.models.ResetRoutePolicyEntriesRequest`
6668
+ :rtype: :class:`tencentcloud.vpc.v20170312.models.ResetRoutePolicyEntriesResponse`
6669
+
6670
+ """
6671
+ try:
6672
+ params = request._serialize()
6673
+ headers = request.headers
6674
+ body = self.call("ResetRoutePolicyEntries", params, headers=headers)
6675
+ response = json.loads(body)
6676
+ model = models.ResetRoutePolicyEntriesResponse()
6677
+ model._deserialize(response["Response"])
6678
+ return model
6679
+ except Exception as e:
6680
+ if isinstance(e, TencentCloudSDKException):
6681
+ raise
6682
+ else:
6683
+ raise TencentCloudSDKException(type(e).__name__, str(e))
6684
+
6685
+
6410
6686
  def ResetRoutes(self, request):
6411
6687
  r"""This API (ResetRoutes) is used to reset the name of a route table and all its routing policies.<br />
6412
6688
  Note: When this API is called, all routing policies in the current route table are deleted before new routing policies are saved, which may incur network interruption.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-intl-en
3
- Version: 3.0.1292
3
+ Version: 3.0.1294
4
4
  Summary: Tencent Cloud SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python-intl-en
6
6
  Author: Tencent Cloud
@@ -1,4 +1,4 @@
1
- tencentcloud/__init__.py,sha256=-_pTDWf5Y8our8I3XcsPnBKCN-kw2eTcd6_WOvQSdAU,630
1
+ tencentcloud/__init__.py,sha256=Q56H7eoCSEXMeGzTEujHqTpjjYuiB3z4c2-8K0A-cf8,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=PI6LX0PouoGb8e_ydQ9rATqY795jQh7JPK2COE_oH-Q,2899
@@ -413,8 +413,8 @@ tencentcloud/mdl/v20200326/models.py,sha256=Y3ZZU7t6q1_U_3D0iz3NZwWNsL_MsknUZhzO
413
413
  tencentcloud/mdp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
414
414
  tencentcloud/mdp/v20200527/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
415
415
  tencentcloud/mdp/v20200527/errorcodes.py,sha256=p99PwKKV4u52hUvw70jpUQzbBZednyQOYLPidqmhAts,2850
416
- tencentcloud/mdp/v20200527/mdp_client.py,sha256=qwkmBDnNLn2lDcjUgkgezCY_Ps5ERCAYqMt79LppMOE,61172
417
- tencentcloud/mdp/v20200527/models.py,sha256=8ng36MeFKlRO3xsWAMBOiYCotrvVK-rPOJKUbe5raOI,366682
416
+ tencentcloud/mdp/v20200527/mdp_client.py,sha256=75BrUq7D79tz3LOs_WtEvCKCX__xnsjeyV5HVI-bS1M,63078
417
+ tencentcloud/mdp/v20200527/models.py,sha256=sTZM_tQaAyN2RUlIoVSrI30ZG7q6tytRjuka7odxvR0,371412
418
418
  tencentcloud/message/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
419
419
  tencentcloud/message/v20181225/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
420
420
  tencentcloud/message/v20181225/errorcodes.py,sha256=CukHjHpyViLIs-Wx9GCaDn7srdXtoseMmJ7-aKakyek,930
@@ -422,9 +422,9 @@ tencentcloud/message/v20181225/message_client.py,sha256=aOLXtWA2kdii5_kSfbJDnZg2
422
422
  tencentcloud/message/v20181225/models.py,sha256=NOjgl7wn7h1Yia58C75ZKK4CHrm6Jo7BqAPmMxYnNqk,4158
423
423
  tencentcloud/mongodb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
424
424
  tencentcloud/mongodb/v20190725/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
425
- tencentcloud/mongodb/v20190725/errorcodes.py,sha256=4HNgO9nAK8HzNtOl-7BIkxAmCJVsaFgxB9NvgZkFbvM,8139
426
- tencentcloud/mongodb/v20190725/models.py,sha256=2X1vKfk64tw-vEVk2QaMt73r8SLf6WbjMYfR0b5xStQ,334606
427
- tencentcloud/mongodb/v20190725/mongodb_client.py,sha256=NTCSgmM6JMQys9nVnI47gKJ8Y7hNEK5EcdIKytw3cFQ,33196
425
+ tencentcloud/mongodb/v20190725/errorcodes.py,sha256=-4QMxEFCDbtB8Q6t6Ztso4w3KwnXhMAOv64UDBaxVdc,8249
426
+ tencentcloud/mongodb/v20190725/models.py,sha256=EptkCH8etI0BX3ZBYrgjbj9wpG-6HNqTfzAqhOADX1M,350334
427
+ tencentcloud/mongodb/v20190725/mongodb_client.py,sha256=Ezmf45ExfGBhOtfRzu9JEe1zsnZDo0bCZ7MbBGnsTo8,34303
428
428
  tencentcloud/monitor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
429
429
  tencentcloud/monitor/v20180724/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
430
430
  tencentcloud/monitor/v20180724/errorcodes.py,sha256=3EchwD9TcxSinrrSHQa2akgQC2qyfNAutfOqN9sznWo,11113
@@ -685,9 +685,9 @@ tencentcloud/vod/v20240718/models.py,sha256=yrbr8yqWaracRPsJlBAPTCIPS40SmI3tfEXP
685
685
  tencentcloud/vod/v20240718/vod_client.py,sha256=SZ1EdAa0tg0ZGmvwK0EySps5Gk460NYK7_XNqys4PRw,8551
686
686
  tencentcloud/vpc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
687
687
  tencentcloud/vpc/v20170312/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
688
- tencentcloud/vpc/v20170312/errorcodes.py,sha256=XXgUCkVTlBvL9olZaRuVbF3j1cMoIg0R99C5t1fWmPo,50606
689
- tencentcloud/vpc/v20170312/models.py,sha256=MiLn2XhgqjwHfyIGaKPJaxJGfN4jEZtr0HANTYUE01s,1597416
690
- tencentcloud/vpc/v20170312/vpc_client.py,sha256=-5kXBBh-k1UDwacLkWrlJjT6Edt-ttL2d5L2p7OCg4I,309525
688
+ tencentcloud/vpc/v20170312/errorcodes.py,sha256=Go7x5vQUie2p7Exrx429OTpfEdlyRR13WkRz2KH0XMo,51071
689
+ tencentcloud/vpc/v20170312/models.py,sha256=rIvWy4kGRB5QkKLKJAMsODyzMSCzvAIZD5aSxCF8vCQ,1653810
690
+ tencentcloud/vpc/v20170312/vpc_client.py,sha256=5RnsEah6Q-oXEYC3gw6Uy8UXaX-xn-JidSbMmvWrzZk,321649
691
691
  tencentcloud/waf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
692
692
  tencentcloud/waf/v20180125/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
693
693
  tencentcloud/waf/v20180125/errorcodes.py,sha256=mbBhPSqcFCJnqKCiPNX3knbSKlwvlA0UeHcKVUwwgEQ,6503
@@ -707,7 +707,7 @@ tencentcloud/yunjing/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
707
707
  tencentcloud/yunjing/v20180228/errorcodes.py,sha256=g2ac3Fxgbof23WWhGj9VxvuLJZNshnB0Mg7jWUzTh24,3168
708
708
  tencentcloud/yunjing/v20180228/models.py,sha256=nivJxxJYNvW-I_WWuoZj5RJaexdeSctX04e7osSjSUo,331388
709
709
  tencentcloud/yunjing/v20180228/yunjing_client.py,sha256=XYRY2x9Bs-06YaFx6swLlxuqhNRuykLZuIte6bc8T2E,67433
710
- tencentcloud_sdk_python_intl_en-3.0.1292.dist-info/METADATA,sha256=BgyHsac06L5y-1Hdf-G6S3hgRnsS4QdhO61V0VaARwI,1628
711
- tencentcloud_sdk_python_intl_en-3.0.1292.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
712
- tencentcloud_sdk_python_intl_en-3.0.1292.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
713
- tencentcloud_sdk_python_intl_en-3.0.1292.dist-info/RECORD,,
710
+ tencentcloud_sdk_python_intl_en-3.0.1294.dist-info/METADATA,sha256=3b0JMgsegAsG1i2Gas7E6rk98WFqp3zW76n_-llDOZU,1628
711
+ tencentcloud_sdk_python_intl_en-3.0.1294.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
712
+ tencentcloud_sdk_python_intl_en-3.0.1294.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
713
+ tencentcloud_sdk_python_intl_en-3.0.1294.dist-info/RECORD,,