tencentcloud-sdk-python-intl-en 3.0.1136__py2.py3-none-any.whl → 3.0.1137__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/trro/__init__.py +0 -0
- tencentcloud/trro/v20220325/__init__.py +0 -0
- tencentcloud/trro/v20220325/errorcodes.py +36 -0
- tencentcloud/trro/v20220325/models.py +3235 -0
- tencentcloud/trro/v20220325/trro_client.py +463 -0
- tencentcloud/vpc/v20170312/errorcodes.py +30 -0
- tencentcloud/vpc/v20170312/models.py +1647 -208
- tencentcloud/vpc/v20170312/vpc_client.py +280 -0
- {tencentcloud_sdk_python_intl_en-3.0.1136.dist-info → tencentcloud_sdk_python_intl_en-3.0.1137.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1136.dist-info → tencentcloud_sdk_python_intl_en-3.0.1137.dist-info}/RECORD +13 -8
- {tencentcloud_sdk_python_intl_en-3.0.1136.dist-info → tencentcloud_sdk_python_intl_en-3.0.1137.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1136.dist-info → tencentcloud_sdk_python_intl_en-3.0.1137.dist-info}/top_level.txt +0 -0
|
@@ -121,6 +121,59 @@ class VpcClient(AbstractClient):
|
|
|
121
121
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
122
122
|
|
|
123
123
|
|
|
124
|
+
def AllocateIPv6Addresses(self, request):
|
|
125
|
+
"""This API is used to apply for one or more Elastic IPv6 (EIPv6) instances.
|
|
126
|
+
|
|
127
|
+
- EIPv6 is a fixed public IPv6 address that can be independently applied for and held in a Tencent Cloud region, providing a consistent product experience with Elastic IPv4.
|
|
128
|
+
- You can quickly bind an EIPv6 instance to the private IPv6 address of a cloud resource, so as to quickly enable IPv6 public bandwidth for the cloud resource.
|
|
129
|
+
- You can also bind an EIPv6 instance to other cloud resources as needed, so as to shield instance failures.
|
|
130
|
+
|
|
131
|
+
:param request: Request instance for AllocateIPv6Addresses.
|
|
132
|
+
:type request: :class:`tencentcloud.vpc.v20170312.models.AllocateIPv6AddressesRequest`
|
|
133
|
+
:rtype: :class:`tencentcloud.vpc.v20170312.models.AllocateIPv6AddressesResponse`
|
|
134
|
+
|
|
135
|
+
"""
|
|
136
|
+
try:
|
|
137
|
+
params = request._serialize()
|
|
138
|
+
headers = request.headers
|
|
139
|
+
body = self.call("AllocateIPv6Addresses", params, headers=headers)
|
|
140
|
+
response = json.loads(body)
|
|
141
|
+
model = models.AllocateIPv6AddressesResponse()
|
|
142
|
+
model._deserialize(response["Response"])
|
|
143
|
+
return model
|
|
144
|
+
except Exception as e:
|
|
145
|
+
if isinstance(e, TencentCloudSDKException):
|
|
146
|
+
raise
|
|
147
|
+
else:
|
|
148
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
def AllocateIp6AddressesBandwidth(self, request):
|
|
152
|
+
"""This API is used to allocate IPv6 public network bandwidth for classic elastic public IPv6 addresses.
|
|
153
|
+
|
|
154
|
+
- Classic elastic public IPv6 addresses only have the private network communication capability by default. They can have the IPv6 public network communication capability and be displayed in the list of Classic Elastic Public IPv6 only after IPv6 public network bandwidth is allocated in the console or by calling this API.
|
|
155
|
+
- You can allocate public network bandwidth for one or multiple Classic elastic public IPv6 addresses each time.
|
|
156
|
+
|
|
157
|
+
:param request: Request instance for AllocateIp6AddressesBandwidth.
|
|
158
|
+
:type request: :class:`tencentcloud.vpc.v20170312.models.AllocateIp6AddressesBandwidthRequest`
|
|
159
|
+
:rtype: :class:`tencentcloud.vpc.v20170312.models.AllocateIp6AddressesBandwidthResponse`
|
|
160
|
+
|
|
161
|
+
"""
|
|
162
|
+
try:
|
|
163
|
+
params = request._serialize()
|
|
164
|
+
headers = request.headers
|
|
165
|
+
body = self.call("AllocateIp6AddressesBandwidth", params, headers=headers)
|
|
166
|
+
response = json.loads(body)
|
|
167
|
+
model = models.AllocateIp6AddressesBandwidthResponse()
|
|
168
|
+
model._deserialize(response["Response"])
|
|
169
|
+
return model
|
|
170
|
+
except Exception as e:
|
|
171
|
+
if isinstance(e, TencentCloudSDKException):
|
|
172
|
+
raise
|
|
173
|
+
else:
|
|
174
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
175
|
+
|
|
176
|
+
|
|
124
177
|
def AssignIpv6Addresses(self, request):
|
|
125
178
|
"""This API is used to apply for an IPv6 address for the ENI. <br />
|
|
126
179
|
This API is completed asynchronously. If you need to query the execution result of an async task, please use the `RequestId` returned by this API to poll the `DescribeVpcTaskResult` API.
|
|
@@ -279,6 +332,32 @@ class VpcClient(AbstractClient):
|
|
|
279
332
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
280
333
|
|
|
281
334
|
|
|
335
|
+
def AssociateIPv6Address(self, request):
|
|
336
|
+
"""This API is used to bind an EIPv6 instance to the private IPv6 address configured on the CVM or ENI.
|
|
337
|
+
|
|
338
|
+
- Binding an EIPv6 to the CVM essentially indicates binding the EIPv6 to the private IPv6 address configured on the ENI of the CVM.
|
|
339
|
+
- Before binding an EIPv6 to the private IPv6 of a specified ENI, ensure that the private IPv6 address is unbound before the binding operation is performed.
|
|
340
|
+
|
|
341
|
+
:param request: Request instance for AssociateIPv6Address.
|
|
342
|
+
:type request: :class:`tencentcloud.vpc.v20170312.models.AssociateIPv6AddressRequest`
|
|
343
|
+
:rtype: :class:`tencentcloud.vpc.v20170312.models.AssociateIPv6AddressResponse`
|
|
344
|
+
|
|
345
|
+
"""
|
|
346
|
+
try:
|
|
347
|
+
params = request._serialize()
|
|
348
|
+
headers = request.headers
|
|
349
|
+
body = self.call("AssociateIPv6Address", params, headers=headers)
|
|
350
|
+
response = json.loads(body)
|
|
351
|
+
model = models.AssociateIPv6AddressResponse()
|
|
352
|
+
model._deserialize(response["Response"])
|
|
353
|
+
return model
|
|
354
|
+
except Exception as e:
|
|
355
|
+
if isinstance(e, TencentCloudSDKException):
|
|
356
|
+
raise
|
|
357
|
+
else:
|
|
358
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
359
|
+
|
|
360
|
+
|
|
282
361
|
def AssociateNatGatewayAddress(self, request):
|
|
283
362
|
"""This API is used to bind an EIP to a NAT gateway.
|
|
284
363
|
|
|
@@ -2903,6 +2982,55 @@ class VpcClient(AbstractClient):
|
|
|
2903
2982
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
2904
2983
|
|
|
2905
2984
|
|
|
2985
|
+
def DescribeIPv6Addresses(self, request):
|
|
2986
|
+
"""This API is used to query detailed information of one or more EIPv6 instances.
|
|
2987
|
+
|
|
2988
|
+
- You can query EIPv6 and traditional EIPv6 instance information in a specified region.
|
|
2989
|
+
- The system returns a certain number (as specified by the Limit, the default value is 20) of EIPv6 instances of the current user if the parameter is empty.
|
|
2990
|
+
|
|
2991
|
+
:param request: Request instance for DescribeIPv6Addresses.
|
|
2992
|
+
:type request: :class:`tencentcloud.vpc.v20170312.models.DescribeIPv6AddressesRequest`
|
|
2993
|
+
:rtype: :class:`tencentcloud.vpc.v20170312.models.DescribeIPv6AddressesResponse`
|
|
2994
|
+
|
|
2995
|
+
"""
|
|
2996
|
+
try:
|
|
2997
|
+
params = request._serialize()
|
|
2998
|
+
headers = request.headers
|
|
2999
|
+
body = self.call("DescribeIPv6Addresses", params, headers=headers)
|
|
3000
|
+
response = json.loads(body)
|
|
3001
|
+
model = models.DescribeIPv6AddressesResponse()
|
|
3002
|
+
model._deserialize(response["Response"])
|
|
3003
|
+
return model
|
|
3004
|
+
except Exception as e:
|
|
3005
|
+
if isinstance(e, TencentCloudSDKException):
|
|
3006
|
+
raise
|
|
3007
|
+
else:
|
|
3008
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
3009
|
+
|
|
3010
|
+
|
|
3011
|
+
def DescribeIp6Addresses(self, request):
|
|
3012
|
+
"""This API is used to query the detailed information on one or multiple classic elastic public IPv6 instances.
|
|
3013
|
+
|
|
3014
|
+
:param request: Request instance for DescribeIp6Addresses.
|
|
3015
|
+
:type request: :class:`tencentcloud.vpc.v20170312.models.DescribeIp6AddressesRequest`
|
|
3016
|
+
:rtype: :class:`tencentcloud.vpc.v20170312.models.DescribeIp6AddressesResponse`
|
|
3017
|
+
|
|
3018
|
+
"""
|
|
3019
|
+
try:
|
|
3020
|
+
params = request._serialize()
|
|
3021
|
+
headers = request.headers
|
|
3022
|
+
body = self.call("DescribeIp6Addresses", params, headers=headers)
|
|
3023
|
+
response = json.loads(body)
|
|
3024
|
+
model = models.DescribeIp6AddressesResponse()
|
|
3025
|
+
model._deserialize(response["Response"])
|
|
3026
|
+
return model
|
|
3027
|
+
except Exception as e:
|
|
3028
|
+
if isinstance(e, TencentCloudSDKException):
|
|
3029
|
+
raise
|
|
3030
|
+
else:
|
|
3031
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
3032
|
+
|
|
3033
|
+
|
|
2906
3034
|
def DescribeIpGeolocationDatabaseUrl(self, request):
|
|
2907
3035
|
"""This API is used to obtain the download link of an IP location database.
|
|
2908
3036
|
<font color="#FF0000">This API will be discontinued soon and is only available for existing users.</font>
|
|
@@ -4135,6 +4263,32 @@ class VpcClient(AbstractClient):
|
|
|
4135
4263
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
4136
4264
|
|
|
4137
4265
|
|
|
4266
|
+
def DisassociateIPv6Address(self, request):
|
|
4267
|
+
"""This API is used to unbind an EIPv6 instance.
|
|
4268
|
+
|
|
4269
|
+
- You can unbind EIPv6 instances bound to Cloud Virtual Machine (CVM) or Elastic Network Interface (ENI).
|
|
4270
|
+
- Only EIPv6 instances in BIND or BIND_ENI status can be unbound.
|
|
4271
|
+
|
|
4272
|
+
:param request: Request instance for DisassociateIPv6Address.
|
|
4273
|
+
:type request: :class:`tencentcloud.vpc.v20170312.models.DisassociateIPv6AddressRequest`
|
|
4274
|
+
:rtype: :class:`tencentcloud.vpc.v20170312.models.DisassociateIPv6AddressResponse`
|
|
4275
|
+
|
|
4276
|
+
"""
|
|
4277
|
+
try:
|
|
4278
|
+
params = request._serialize()
|
|
4279
|
+
headers = request.headers
|
|
4280
|
+
body = self.call("DisassociateIPv6Address", params, headers=headers)
|
|
4281
|
+
response = json.loads(body)
|
|
4282
|
+
model = models.DisassociateIPv6AddressResponse()
|
|
4283
|
+
model._deserialize(response["Response"])
|
|
4284
|
+
return model
|
|
4285
|
+
except Exception as e:
|
|
4286
|
+
if isinstance(e, TencentCloudSDKException):
|
|
4287
|
+
raise
|
|
4288
|
+
else:
|
|
4289
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
4290
|
+
|
|
4291
|
+
|
|
4138
4292
|
def DisassociateNatGatewayAddress(self, request):
|
|
4139
4293
|
"""This API is used to unbind an EIP from a NAT gateway.
|
|
4140
4294
|
|
|
@@ -5042,6 +5196,80 @@ class VpcClient(AbstractClient):
|
|
|
5042
5196
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
5043
5197
|
|
|
5044
5198
|
|
|
5199
|
+
def ModifyIPv6AddressesAttributes(self, request):
|
|
5200
|
+
"""This API is used to modify the name of an EIPv6 instance.
|
|
5201
|
+
|
|
5202
|
+
- You can modify the name of both EIPv6 and traditional EIPv6 instances.
|
|
5203
|
+
|
|
5204
|
+
:param request: Request instance for ModifyIPv6AddressesAttributes.
|
|
5205
|
+
:type request: :class:`tencentcloud.vpc.v20170312.models.ModifyIPv6AddressesAttributesRequest`
|
|
5206
|
+
:rtype: :class:`tencentcloud.vpc.v20170312.models.ModifyIPv6AddressesAttributesResponse`
|
|
5207
|
+
|
|
5208
|
+
"""
|
|
5209
|
+
try:
|
|
5210
|
+
params = request._serialize()
|
|
5211
|
+
headers = request.headers
|
|
5212
|
+
body = self.call("ModifyIPv6AddressesAttributes", params, headers=headers)
|
|
5213
|
+
response = json.loads(body)
|
|
5214
|
+
model = models.ModifyIPv6AddressesAttributesResponse()
|
|
5215
|
+
model._deserialize(response["Response"])
|
|
5216
|
+
return model
|
|
5217
|
+
except Exception as e:
|
|
5218
|
+
if isinstance(e, TencentCloudSDKException):
|
|
5219
|
+
raise
|
|
5220
|
+
else:
|
|
5221
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
5222
|
+
|
|
5223
|
+
|
|
5224
|
+
def ModifyIPv6AddressesBandwidth(self, request):
|
|
5225
|
+
"""This API is used to modify the bandwidth cap of an EIPv6 instance.
|
|
5226
|
+
|
|
5227
|
+
:param request: Request instance for ModifyIPv6AddressesBandwidth.
|
|
5228
|
+
:type request: :class:`tencentcloud.vpc.v20170312.models.ModifyIPv6AddressesBandwidthRequest`
|
|
5229
|
+
:rtype: :class:`tencentcloud.vpc.v20170312.models.ModifyIPv6AddressesBandwidthResponse`
|
|
5230
|
+
|
|
5231
|
+
"""
|
|
5232
|
+
try:
|
|
5233
|
+
params = request._serialize()
|
|
5234
|
+
headers = request.headers
|
|
5235
|
+
body = self.call("ModifyIPv6AddressesBandwidth", params, headers=headers)
|
|
5236
|
+
response = json.loads(body)
|
|
5237
|
+
model = models.ModifyIPv6AddressesBandwidthResponse()
|
|
5238
|
+
model._deserialize(response["Response"])
|
|
5239
|
+
return model
|
|
5240
|
+
except Exception as e:
|
|
5241
|
+
if isinstance(e, TencentCloudSDKException):
|
|
5242
|
+
raise
|
|
5243
|
+
else:
|
|
5244
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
5245
|
+
|
|
5246
|
+
|
|
5247
|
+
def ModifyIp6AddressesBandwidth(self, request):
|
|
5248
|
+
"""This API is used to adjust the bandwidth limit of a classic elastic public IPv6 instance.
|
|
5249
|
+
|
|
5250
|
+
- You can adjust the bandwidth limit of only classic elastic public IPv6 instances.
|
|
5251
|
+
- To adjust the bandwidth limit of an elastic public IPv6 instance, call the ModifyIPv6AddressesBandwidth API.
|
|
5252
|
+
|
|
5253
|
+
:param request: Request instance for ModifyIp6AddressesBandwidth.
|
|
5254
|
+
:type request: :class:`tencentcloud.vpc.v20170312.models.ModifyIp6AddressesBandwidthRequest`
|
|
5255
|
+
:rtype: :class:`tencentcloud.vpc.v20170312.models.ModifyIp6AddressesBandwidthResponse`
|
|
5256
|
+
|
|
5257
|
+
"""
|
|
5258
|
+
try:
|
|
5259
|
+
params = request._serialize()
|
|
5260
|
+
headers = request.headers
|
|
5261
|
+
body = self.call("ModifyIp6AddressesBandwidth", params, headers=headers)
|
|
5262
|
+
response = json.loads(body)
|
|
5263
|
+
model = models.ModifyIp6AddressesBandwidthResponse()
|
|
5264
|
+
model._deserialize(response["Response"])
|
|
5265
|
+
return model
|
|
5266
|
+
except Exception as e:
|
|
5267
|
+
if isinstance(e, TencentCloudSDKException):
|
|
5268
|
+
raise
|
|
5269
|
+
else:
|
|
5270
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
5271
|
+
|
|
5272
|
+
|
|
5045
5273
|
def ModifyIpv6AddressesAttribute(self, request):
|
|
5046
5274
|
"""This API (ModifyIpv6AddressesAttribute) is used to modify the private IPv6 address attributes of an ENI.
|
|
5047
5275
|
|
|
@@ -5775,6 +6003,58 @@ class VpcClient(AbstractClient):
|
|
|
5775
6003
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
5776
6004
|
|
|
5777
6005
|
|
|
6006
|
+
def ReleaseIPv6Addresses(self, request):
|
|
6007
|
+
"""This API is used to release one or more EIPv6 instances.
|
|
6008
|
+
|
|
6009
|
+
- You can release the obtained EIPv6 instances. To use them again, please reapply.
|
|
6010
|
+
- Only EIPv6 instances in UNBIND status can be released.
|
|
6011
|
+
|
|
6012
|
+
:param request: Request instance for ReleaseIPv6Addresses.
|
|
6013
|
+
:type request: :class:`tencentcloud.vpc.v20170312.models.ReleaseIPv6AddressesRequest`
|
|
6014
|
+
:rtype: :class:`tencentcloud.vpc.v20170312.models.ReleaseIPv6AddressesResponse`
|
|
6015
|
+
|
|
6016
|
+
"""
|
|
6017
|
+
try:
|
|
6018
|
+
params = request._serialize()
|
|
6019
|
+
headers = request.headers
|
|
6020
|
+
body = self.call("ReleaseIPv6Addresses", params, headers=headers)
|
|
6021
|
+
response = json.loads(body)
|
|
6022
|
+
model = models.ReleaseIPv6AddressesResponse()
|
|
6023
|
+
model._deserialize(response["Response"])
|
|
6024
|
+
return model
|
|
6025
|
+
except Exception as e:
|
|
6026
|
+
if isinstance(e, TencentCloudSDKException):
|
|
6027
|
+
raise
|
|
6028
|
+
else:
|
|
6029
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
6030
|
+
|
|
6031
|
+
|
|
6032
|
+
def ReleaseIp6AddressesBandwidth(self, request):
|
|
6033
|
+
"""This API is used to release the IPv6 public network bandwidth of classic elastic public IPv6 instances.
|
|
6034
|
+
|
|
6035
|
+
- Classic elastic public IPv6 addresses still have the IPv6 private network communication capability after the public network bandwidth is released.
|
|
6036
|
+
- To allocate IPV6 public network bandwidth, call the AllocateIp6AddressesBandwidth API.
|
|
6037
|
+
|
|
6038
|
+
:param request: Request instance for ReleaseIp6AddressesBandwidth.
|
|
6039
|
+
:type request: :class:`tencentcloud.vpc.v20170312.models.ReleaseIp6AddressesBandwidthRequest`
|
|
6040
|
+
:rtype: :class:`tencentcloud.vpc.v20170312.models.ReleaseIp6AddressesBandwidthResponse`
|
|
6041
|
+
|
|
6042
|
+
"""
|
|
6043
|
+
try:
|
|
6044
|
+
params = request._serialize()
|
|
6045
|
+
headers = request.headers
|
|
6046
|
+
body = self.call("ReleaseIp6AddressesBandwidth", params, headers=headers)
|
|
6047
|
+
response = json.loads(body)
|
|
6048
|
+
model = models.ReleaseIp6AddressesBandwidthResponse()
|
|
6049
|
+
model._deserialize(response["Response"])
|
|
6050
|
+
return model
|
|
6051
|
+
except Exception as e:
|
|
6052
|
+
if isinstance(e, TencentCloudSDKException):
|
|
6053
|
+
raise
|
|
6054
|
+
else:
|
|
6055
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
6056
|
+
|
|
6057
|
+
|
|
5778
6058
|
def RemoveBandwidthPackageResources(self, request):
|
|
5779
6059
|
"""This API is used to delete a bandwidth package resource, including [Elastic IP](https://intl.cloud.tencent.com/document/product/213/1941?from_cn_redirect=1), [Cloud Load Balancer](https://intl.cloud.tencent.com/document/product/214/517?from_cn_redirect=1), and so on.
|
|
5780
6060
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=
|
|
1
|
+
tencentcloud/__init__.py,sha256=MvTe6cHDApbwbEnv_BYcFLKI2pQeMJjqNptU0GTJUd8,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
|
|
@@ -570,6 +570,11 @@ tencentcloud/tmt/v20180321/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJ
|
|
|
570
570
|
tencentcloud/tmt/v20180321/errorcodes.py,sha256=47soLZg7bzuU0TvrFPVcV4ElYPo7zLG47v0sty4YLlg,3187
|
|
571
571
|
tencentcloud/tmt/v20180321/models.py,sha256=T-RSg1ow8k6M6zvWIWSYEpcv3plljf_bi-SoudPDNxQ,11735
|
|
572
572
|
tencentcloud/tmt/v20180321/tmt_client.py,sha256=WWtjLdyZT8xpCmrsiwN-cCBDxY0kCYFh4iAmYETiqdE,2071
|
|
573
|
+
tencentcloud/trro/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
574
|
+
tencentcloud/trro/v20220325/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
575
|
+
tencentcloud/trro/v20220325/errorcodes.py,sha256=7b2luphwWvA8MzYirtugiDY0soTKZieCoZJhXQUa4YQ,1089
|
|
576
|
+
tencentcloud/trro/v20220325/models.py,sha256=TmwUX0fv6pkmeNssYOetBcgX6qNlJsX8hmecFUMjnpg,97474
|
|
577
|
+
tencentcloud/trro/v20220325/trro_client.py,sha256=ObDRaqPJMQ7oaIKtxaN6C-4xuJ8U6qcJCgw7V1BmXMg,18089
|
|
573
578
|
tencentcloud/trtc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
574
579
|
tencentcloud/trtc/v20190722/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
575
580
|
tencentcloud/trtc/v20190722/errorcodes.py,sha256=XZByZhQSC4zxNLZIpHx11wzqvykPDwDn4zYlaqJn5Bk,8338
|
|
@@ -601,9 +606,9 @@ tencentcloud/vod/v20180717/models.py,sha256=x4WWNF0vioqG5cTaZ8XIQ0hbyoYd3D-i00zR
|
|
|
601
606
|
tencentcloud/vod/v20180717/vod_client.py,sha256=NokZUFsEwKuxUfTlm408Tt2vtp9L3H-5HjP0NHbd4TI,201264
|
|
602
607
|
tencentcloud/vpc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
603
608
|
tencentcloud/vpc/v20170312/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
604
|
-
tencentcloud/vpc/v20170312/errorcodes.py,sha256=
|
|
605
|
-
tencentcloud/vpc/v20170312/models.py,sha256=
|
|
606
|
-
tencentcloud/vpc/v20170312/vpc_client.py,sha256=
|
|
609
|
+
tencentcloud/vpc/v20170312/errorcodes.py,sha256=1Wg7KPWtuLXLGXOXrVdb5c21PWlsbzUyv5tJlGFNjYo,48184
|
|
610
|
+
tencentcloud/vpc/v20170312/models.py,sha256=g7WZVGKqQGy-ufrDtf64RnSID3ghBFgcQT6c7GUUQrA,1567127
|
|
611
|
+
tencentcloud/vpc/v20170312/vpc_client.py,sha256=R6tabMTwg4GHFMJ0qyNOgUEkPI6s0dugbwDShIhprUE,302527
|
|
607
612
|
tencentcloud/waf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
608
613
|
tencentcloud/waf/v20180125/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
609
614
|
tencentcloud/waf/v20180125/errorcodes.py,sha256=zwBZcvnCjbuvBJKChDMzCaA89zkApEOvztAZ_ga3K44,6276
|
|
@@ -619,7 +624,7 @@ tencentcloud/yunjing/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
|
619
624
|
tencentcloud/yunjing/v20180228/errorcodes.py,sha256=VEqwMbMBe7F2oAW6ZDu3vAivBr60lbo7FWduFqRTEVg,3195
|
|
620
625
|
tencentcloud/yunjing/v20180228/models.py,sha256=0rnsJ4JkA5aCTV1cVwCuKnzooe6IhQ0NS3ij6tJ22uw,330670
|
|
621
626
|
tencentcloud/yunjing/v20180228/yunjing_client.py,sha256=GA7Fo5GmpEJ2kufV2upw-ZpMZxznsPZ3NKDKDDAI4Ao,67384
|
|
622
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
623
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
624
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
625
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
627
|
+
tencentcloud_sdk_python_intl_en-3.0.1137.dist-info/METADATA,sha256=eiDRRPd8i1I1Fc7qGTEjgluw8GQ2u_e3nImgeRS31aQ,1628
|
|
628
|
+
tencentcloud_sdk_python_intl_en-3.0.1137.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
629
|
+
tencentcloud_sdk_python_intl_en-3.0.1137.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
630
|
+
tencentcloud_sdk_python_intl_en-3.0.1137.dist-info/RECORD,,
|
|
File without changes
|