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

@@ -1035,6 +1035,29 @@ class VpcClient(AbstractClient):
1035
1035
  raise TencentCloudSDKException(type(e).__name__, str(e))
1036
1036
 
1037
1037
 
1038
+ def CreateReserveIpAddresses(self, request):
1039
+ """This API is used to create a reserved private IP address.
1040
+
1041
+ :param request: Request instance for CreateReserveIpAddresses.
1042
+ :type request: :class:`tencentcloud.vpc.v20170312.models.CreateReserveIpAddressesRequest`
1043
+ :rtype: :class:`tencentcloud.vpc.v20170312.models.CreateReserveIpAddressesResponse`
1044
+
1045
+ """
1046
+ try:
1047
+ params = request._serialize()
1048
+ headers = request.headers
1049
+ body = self.call("CreateReserveIpAddresses", params, headers=headers)
1050
+ response = json.loads(body)
1051
+ model = models.CreateReserveIpAddressesResponse()
1052
+ model._deserialize(response["Response"])
1053
+ return model
1054
+ except Exception as e:
1055
+ if isinstance(e, TencentCloudSDKException):
1056
+ raise
1057
+ else:
1058
+ raise TencentCloudSDKException(type(e).__name__, str(e))
1059
+
1060
+
1038
1061
  def CreateRouteTable(self, request):
1039
1062
  """This API is used to create a route table.
1040
1063
  * 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.
@@ -1148,20 +1171,20 @@ class VpcClient(AbstractClient):
1148
1171
 
1149
1172
 
1150
1173
  def CreateSecurityGroupWithPolicies(self, request):
1151
- """This API is used to create u200da security group, and add security group policies.
1174
+ """This API is used to create a security group, and add security group policies.
1152
1175
  * For the the upper limit of security groups per project in each region under each account, <a href="https://intl.cloud.tencent.com/document/product/213/12453?from_cn_redirect=1">see here</a>
1153
- * u200dFor u200dnewly u200dcreated security groups, u200dthe inbound and outbound policies are set to `Deny All` by default. You need to call <a href="https://intl.cloud.tencent.com/document/product/215/15807?from_cn_redirect=1">CreateSecurityGroupPolicies</a>
1176
+ * For newly created security groups, the inbound and outbound policies are set to `Deny All` by default. You need to call <a href="https://intl.cloud.tencent.com/document/product/215/15807?from_cn_redirect=1">CreateSecurityGroupPolicies</a>
1154
1177
  to change it.
1155
1178
 
1156
1179
  Description:
1157
1180
  * `Version`: The version number of a security group policy. It automatically increments by 1 every time you update the security policy, so to prevent the expiration of the updated policies. If this field is left empty, any conflicts will be ignored.
1158
1181
  * `Protocol`: Values can be `TCP`, `UDP`, `ICMP`, `ICMPV6`, `GRE`, and `ALL`.
1159
- * `CidrBlock`: Enter a CIDR block in the correct format. In the classic network, even if the CIDR block specified in u200d`CidrBlock` contains the Tencent Cloud private IPs not used for CVMs under your Tencent Cloud account, it does not mean this policy allows you to access those resources. The network isolation policies between tenants take priority over the private network policies in security groups.
1182
+ * `CidrBlock`: Enter a CIDR block in the correct format. In the classic network, even if the CIDR block specified in `CidrBlock` contains the Tencent Cloud private IPs not used for CVMs under your Tencent Cloud account, it does not mean this policy allows you to access those resources. The network isolation policies between tenants take priority over the private network policies in security groups.
1160
1183
  * `Ipv6CidrBlock`: Enter an IPv6 CIDR block in the correct format. In the classic network, even if the CIDR block specified in `Ipv6CidrBlock` contains the Tencent Cloud private IPv6 addresses not used for CVMs under your Tencent Cloud account, it does not mean this policy allows you to access those resources. The network isolation policies between tenants take priority over the private network policies in security groups.
1161
1184
  * `SecurityGroupId`: ID of the security group. It can be the ID of a security group to be modified, or the ID of another security group in the same project. All private IPs of all CVMs under the security group will be covered. If this field is used, the policy will automatically change according to the CVM associated with the group ID while being used to match network messages. You don't need to change it manually.
1162
1185
  * `Port`: Enter a single port number (such as `80`), or a port range (such as `8000-8010`). `Port` is only applicable when `Protocol` is `TCP` or `UDP`. If `Protocol` is not `TCP` or `UDP`, `Protocol` and `Port` cannot be both specified.
1163
1186
  * `Action`: Values can be `ACCEPT` or `DROP`.
1164
- * `CidrBlock`, `Ipv6CidrBlock`, `SecurityGroupId`, and `AddressTemplate` are exclusive u200dto one another. Protocol + Port and `ServiceTemplate` are mutually exclusive.
1187
+ * `CidrBlock`, `Ipv6CidrBlock`, `SecurityGroupId`, and `AddressTemplate` are exclusive to one another. "Protocol + Port" and `ServiceTemplate` are mutually exclusive.
1165
1188
  * Only policies in one direction can be created in each request. If you need to specify the `PolicyIndex` parameter, the indexes of policies must be consistent.
1166
1189
 
1167
1190
  :param request: Request instance for CreateSecurityGroupWithPolicies.
@@ -1902,6 +1925,29 @@ class VpcClient(AbstractClient):
1902
1925
  raise TencentCloudSDKException(type(e).__name__, str(e))
1903
1926
 
1904
1927
 
1928
+ def DeleteReserveIpAddresses(self, request):
1929
+ """This API is used to delete a reserved private IP address.
1930
+
1931
+ :param request: Request instance for DeleteReserveIpAddresses.
1932
+ :type request: :class:`tencentcloud.vpc.v20170312.models.DeleteReserveIpAddressesRequest`
1933
+ :rtype: :class:`tencentcloud.vpc.v20170312.models.DeleteReserveIpAddressesResponse`
1934
+
1935
+ """
1936
+ try:
1937
+ params = request._serialize()
1938
+ headers = request.headers
1939
+ body = self.call("DeleteReserveIpAddresses", params, headers=headers)
1940
+ response = json.loads(body)
1941
+ model = models.DeleteReserveIpAddressesResponse()
1942
+ model._deserialize(response["Response"])
1943
+ return model
1944
+ except Exception as e:
1945
+ if isinstance(e, TencentCloudSDKException):
1946
+ raise
1947
+ else:
1948
+ raise TencentCloudSDKException(type(e).__name__, str(e))
1949
+
1950
+
1905
1951
  def DeleteRouteTable(self, request):
1906
1952
  """This API is used to delete a route table.
1907
1953
 
@@ -3158,6 +3204,29 @@ class VpcClient(AbstractClient):
3158
3204
  raise TencentCloudSDKException(type(e).__name__, str(e))
3159
3205
 
3160
3206
 
3207
+ def DescribeReserveIpAddresses(self, request):
3208
+ """This API is used to query reserved private IP addresses.
3209
+
3210
+ :param request: Request instance for DescribeReserveIpAddresses.
3211
+ :type request: :class:`tencentcloud.vpc.v20170312.models.DescribeReserveIpAddressesRequest`
3212
+ :rtype: :class:`tencentcloud.vpc.v20170312.models.DescribeReserveIpAddressesResponse`
3213
+
3214
+ """
3215
+ try:
3216
+ params = request._serialize()
3217
+ headers = request.headers
3218
+ body = self.call("DescribeReserveIpAddresses", params, headers=headers)
3219
+ response = json.loads(body)
3220
+ model = models.DescribeReserveIpAddressesResponse()
3221
+ model._deserialize(response["Response"])
3222
+ return model
3223
+ except Exception as e:
3224
+ if isinstance(e, TencentCloudSDKException):
3225
+ raise
3226
+ else:
3227
+ raise TencentCloudSDKException(type(e).__name__, str(e))
3228
+
3229
+
3161
3230
  def DescribeRouteTables(self, request):
3162
3231
  """This API is used to query route tables.
3163
3232
 
@@ -5159,6 +5228,29 @@ class VpcClient(AbstractClient):
5159
5228
  raise TencentCloudSDKException(type(e).__name__, str(e))
5160
5229
 
5161
5230
 
5231
+ def ModifyReserveIpAddress(self, request):
5232
+ """This API is used to modify a reserved private IP address.
5233
+
5234
+ :param request: Request instance for ModifyReserveIpAddress.
5235
+ :type request: :class:`tencentcloud.vpc.v20170312.models.ModifyReserveIpAddressRequest`
5236
+ :rtype: :class:`tencentcloud.vpc.v20170312.models.ModifyReserveIpAddressResponse`
5237
+
5238
+ """
5239
+ try:
5240
+ params = request._serialize()
5241
+ headers = request.headers
5242
+ body = self.call("ModifyReserveIpAddress", params, headers=headers)
5243
+ response = json.loads(body)
5244
+ model = models.ModifyReserveIpAddressResponse()
5245
+ model._deserialize(response["Response"])
5246
+ return model
5247
+ except Exception as e:
5248
+ if isinstance(e, TencentCloudSDKException):
5249
+ raise
5250
+ else:
5251
+ raise TencentCloudSDKException(type(e).__name__, str(e))
5252
+
5253
+
5162
5254
  def ModifyRouteTableAttribute(self, request):
5163
5255
  """This API (ModifyRouteTableAttribute) is used to modify the attributes of a route table.
5164
5256
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-intl-en
3
- Version: 3.0.1084
3
+ Version: 3.0.1085
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=9XtMih9bYToFLqL6UL6peiOYVrnT2028iyyhizHCg2A,630
1
+ tencentcloud/__init__.py,sha256=IFqaBTjuE4cMA1wPKkKvQNvDRjiOVrY25wJL9qdT4zk,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
@@ -294,7 +294,7 @@ tencentcloud/gwlb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU
294
294
  tencentcloud/gwlb/v20240906/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
295
295
  tencentcloud/gwlb/v20240906/errorcodes.py,sha256=TwhYUfwcpxcDp0ho-fp6ogHxmwybpx-VaKScPe8o3w8,1533
296
296
  tencentcloud/gwlb/v20240906/gwlb_client.py,sha256=CzCfR_e1BM8YRIxybvMs1cHHGVwMcw-vxVQPlVL669k,20581
297
- tencentcloud/gwlb/v20240906/models.py,sha256=o-Qjikvf_9-C1b3VcHWGJpBBm7kcr9NUKjhl1Y-HIQU,110256
297
+ tencentcloud/gwlb/v20240906/models.py,sha256=Iv_wZRwjzuJbxSvtoowjNIe8Va4foim4c1XTVQvuTDI,110280
298
298
  tencentcloud/iai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
299
299
  tencentcloud/iai/v20200303/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
300
300
  tencentcloud/iai/v20200303/errorcodes.py,sha256=8Iowmd2o_7cruxUle25maX7ZxKniOy0darWczM6uCxw,12545
@@ -302,9 +302,9 @@ tencentcloud/iai/v20200303/iai_client.py,sha256=J1QYKME9imU_iHM92s508FOfa8Gosu44
302
302
  tencentcloud/iai/v20200303/models.py,sha256=mX911NZHhc86NPqWEGQfDeQakJJh-aApP-b5q6yiD4U,309620
303
303
  tencentcloud/ims/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
304
304
  tencentcloud/ims/v20201229/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
305
- tencentcloud/ims/v20201229/errorcodes.py,sha256=sB6VYQY4GBOaJj1ECRs_DVq62qqcBHTK_f5-Ci8DXhc,3611
305
+ tencentcloud/ims/v20201229/errorcodes.py,sha256=n9s6tHq60CJXD9e8RHZmq03SVK2PEaOzlu2zp-w_ahQ,3861
306
306
  tencentcloud/ims/v20201229/ims_client.py,sha256=93jgAU4o9X_1q6qFZAs_IC08d6hsnO50FzQMPCBHVN0,5292
307
- tencentcloud/ims/v20201229/models.py,sha256=FXxnaZ3J4SJ1swv8_fdBKwtym4GJpuHzNVy_gFpUSeQ,89026
307
+ tencentcloud/ims/v20201229/models.py,sha256=Sfna_x1BytKq04dX2wwI9wbXDh9N4JPyS6WDxxD5F10,89276
308
308
  tencentcloud/intlpartnersmgt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
309
309
  tencentcloud/intlpartnersmgt/v20220928/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
310
310
  tencentcloud/intlpartnersmgt/v20220928/errorcodes.py,sha256=kVIUiSL2ABQt2Ymcp8lqK2lWEWCgXf4IczqMD7ZiEhc,5503
@@ -383,7 +383,7 @@ tencentcloud/msp/v20180319/msp_client.py,sha256=XkSbJuPDAeY7elyJ5ByR2wNL0HiFO6Xa
383
383
  tencentcloud/ocr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
384
384
  tencentcloud/ocr/v20181119/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
385
385
  tencentcloud/ocr/v20181119/errorcodes.py,sha256=4bl4FoPZOHDUIks9THo8XOHYqWBU_oFslKTHUZe011w,3852
386
- tencentcloud/ocr/v20181119/models.py,sha256=hV04CuJvIQVMsUCDgApHnG5bl0aaLT6Nr-BNEK37iwc,512622
386
+ tencentcloud/ocr/v20181119/models.py,sha256=KsflAzLkHRfcpUdwoGt9DbPaPSiqEnjNYUCQzxUe6Jg,513188
387
387
  tencentcloud/ocr/v20181119/ocr_client.py,sha256=6md0GYyWPbbna3K1H7YHJ7djXy71m2NovSh9HIMBvhs,43894
388
388
  tencentcloud/omics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
389
389
  tencentcloud/omics/v20221128/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -531,10 +531,14 @@ tencentcloud/tke/v20180525/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJ
531
531
  tencentcloud/tke/v20180525/errorcodes.py,sha256=RNFrWeW27sF5YcJhwPpdVO5dzf6-CS-_2IO1O_4poO8,19935
532
532
  tencentcloud/tke/v20180525/models.py,sha256=aI7aKwMvRorbwR-anqG6unZwMLohU-lvh5ptWbDD1w0,893974
533
533
  tencentcloud/tke/v20180525/tke_client.py,sha256=Xi2IuG_yS68KoglOONMKjjv03g1ddwblO1mKIb47BNw,123689
534
+ tencentcloud/tke/v20220501/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
535
+ tencentcloud/tke/v20220501/errorcodes.py,sha256=IRFRoEKQC-N05xlr0NRgkDN7TWS5lK3CXA55XtjCApI,2100
536
+ tencentcloud/tke/v20220501/models.py,sha256=xdUNX_rBX9AVYnYSnve4nnfuPtB0ltN1Rs0WnG90QnI,202269
537
+ tencentcloud/tke/v20220501/tke_client.py,sha256=Fcfze5EXabYkyxCqd4MoKq5ssLUKAU1dYXAMytCERlA,11239
534
538
  tencentcloud/tms/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
535
539
  tencentcloud/tms/v20201229/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
536
- tencentcloud/tms/v20201229/errorcodes.py,sha256=GwLH7sy0WGn38ITYjnPHS_gr-5e5NDI4jDxq6izj4Zw,1773
537
- tencentcloud/tms/v20201229/models.py,sha256=JZv-V4rpHmfCgVFMu1MoUsi-8XoHE31KQQWWcM-8cM0,42327
540
+ tencentcloud/tms/v20201229/errorcodes.py,sha256=0eX6a9ju5tj-LokvwX2w-I1drjySv2b7jQNyL21UnZo,1823
541
+ tencentcloud/tms/v20201229/models.py,sha256=fUOP8PTWqw0VGfhKi84lzcVGFNflc1ez7K1iobJ9Z7M,42581
538
542
  tencentcloud/tms/v20201229/tms_client.py,sha256=La5oZmCZOp8Az1LfCvf3fZOZa_MTg9sP-1WhzSYgjis,2559
539
543
  tencentcloud/tmt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
540
544
  tencentcloud/tmt/v20180321/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -567,9 +571,9 @@ tencentcloud/vod/v20180717/models.py,sha256=FLDDgnKDoMeKM-RZKHZTUkauN-sT1h6tmWTE
567
571
  tencentcloud/vod/v20180717/vod_client.py,sha256=mtpzExtuXHGeiVPeKH7MJ8leX6VuCdehLoXqxfM1ihw,199270
568
572
  tencentcloud/vpc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
569
573
  tencentcloud/vpc/v20170312/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
570
- tencentcloud/vpc/v20170312/errorcodes.py,sha256=hk8JFrjB7Q_CRtYKdOlXVqWcTXdl263rNAWd8-Yj_qs,44610
571
- tencentcloud/vpc/v20170312/models.py,sha256=0hjAQYR0JgSDpYNueNX6_qWitX830gxurp5lLNy4Kns,1402021
572
- tencentcloud/vpc/v20170312/vpc_client.py,sha256=p4c7ChqtihcgMm8U7kMGpxcRFk1M2Ejm5DkuNPad1Eg,282639
574
+ tencentcloud/vpc/v20170312/errorcodes.py,sha256=xeuMXL6AUgTc-ghFHSokyDyEH5hFwlSyTxE6Bihdlc0,46794
575
+ tencentcloud/vpc/v20170312/models.py,sha256=8_dhiKxnO_vbBhoWwxkBA3RO-s4Mfjxr-dNXulNQjlI,1492610
576
+ tencentcloud/vpc/v20170312/vpc_client.py,sha256=TGNjbYhtNxOc5zDTq3HqwlPCT2bbCpOk05Eouehqwo8,286399
573
577
  tencentcloud/waf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
574
578
  tencentcloud/waf/v20180125/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
575
579
  tencentcloud/waf/v20180125/errorcodes.py,sha256=VaLEKc_pMEc24A9PAE0i7hCjMi8l7OcM0X0WdYVxLaY,6174
@@ -585,7 +589,7 @@ tencentcloud/yunjing/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
585
589
  tencentcloud/yunjing/v20180228/errorcodes.py,sha256=VEqwMbMBe7F2oAW6ZDu3vAivBr60lbo7FWduFqRTEVg,3195
586
590
  tencentcloud/yunjing/v20180228/models.py,sha256=0rnsJ4JkA5aCTV1cVwCuKnzooe6IhQ0NS3ij6tJ22uw,330670
587
591
  tencentcloud/yunjing/v20180228/yunjing_client.py,sha256=GA7Fo5GmpEJ2kufV2upw-ZpMZxznsPZ3NKDKDDAI4Ao,67384
588
- tencentcloud_sdk_python_intl_en-3.0.1084.dist-info/METADATA,sha256=rVzfRRlH7dWNu8dLGYdnRhipXg_E3ZHdRscpuwuGGIE,1628
589
- tencentcloud_sdk_python_intl_en-3.0.1084.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
590
- tencentcloud_sdk_python_intl_en-3.0.1084.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
591
- tencentcloud_sdk_python_intl_en-3.0.1084.dist-info/RECORD,,
592
+ tencentcloud_sdk_python_intl_en-3.0.1085.dist-info/METADATA,sha256=-FxZXKg0d4uhAlmu56NmCz5yo_1zKlXfEeQfQdDjSA0,1628
593
+ tencentcloud_sdk_python_intl_en-3.0.1085.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
594
+ tencentcloud_sdk_python_intl_en-3.0.1085.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
595
+ tencentcloud_sdk_python_intl_en-3.0.1085.dist-info/RECORD,,