tencentcloud-sdk-python-intl-en 3.0.1111__py2.py3-none-any.whl → 3.0.1113__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/ccc/v20200210/models.py +15 -0
- tencentcloud/privatedns/v20201028/errorcodes.py +9 -0
- tencentcloud/privatedns/v20201028/models.py +1299 -66
- tencentcloud/privatedns/v20201028/privatedns_client.py +161 -0
- {tencentcloud_sdk_python_intl_en-3.0.1111.dist-info → tencentcloud_sdk_python_intl_en-3.0.1113.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1111.dist-info → tencentcloud_sdk_python_intl_en-3.0.1113.dist-info}/RECORD +9 -9
- {tencentcloud_sdk_python_intl_en-3.0.1111.dist-info → tencentcloud_sdk_python_intl_en-3.0.1113.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1111.dist-info → tencentcloud_sdk_python_intl_en-3.0.1113.dist-info}/top_level.txt +0 -0
|
@@ -72,6 +72,29 @@ class PrivatednsClient(AbstractClient):
|
|
|
72
72
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
73
73
|
|
|
74
74
|
|
|
75
|
+
def CreateExtendEndpoint(self, request):
|
|
76
|
+
"""This API is used to create an endpoint.
|
|
77
|
+
|
|
78
|
+
:param request: Request instance for CreateExtendEndpoint.
|
|
79
|
+
:type request: :class:`tencentcloud.privatedns.v20201028.models.CreateExtendEndpointRequest`
|
|
80
|
+
:rtype: :class:`tencentcloud.privatedns.v20201028.models.CreateExtendEndpointResponse`
|
|
81
|
+
|
|
82
|
+
"""
|
|
83
|
+
try:
|
|
84
|
+
params = request._serialize()
|
|
85
|
+
headers = request.headers
|
|
86
|
+
body = self.call("CreateExtendEndpoint", params, headers=headers)
|
|
87
|
+
response = json.loads(body)
|
|
88
|
+
model = models.CreateExtendEndpointResponse()
|
|
89
|
+
model._deserialize(response["Response"])
|
|
90
|
+
return model
|
|
91
|
+
except Exception as e:
|
|
92
|
+
if isinstance(e, TencentCloudSDKException):
|
|
93
|
+
raise
|
|
94
|
+
else:
|
|
95
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
96
|
+
|
|
97
|
+
|
|
75
98
|
def CreateForwardRule(self, request):
|
|
76
99
|
"""This API is used to create a custom forwarding rule.
|
|
77
100
|
|
|
@@ -164,6 +187,52 @@ class PrivatednsClient(AbstractClient):
|
|
|
164
187
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
165
188
|
|
|
166
189
|
|
|
190
|
+
def DeleteEndPoint(self, request):
|
|
191
|
+
"""Deletes an endpoint
|
|
192
|
+
|
|
193
|
+
:param request: Request instance for DeleteEndPoint.
|
|
194
|
+
:type request: :class:`tencentcloud.privatedns.v20201028.models.DeleteEndPointRequest`
|
|
195
|
+
:rtype: :class:`tencentcloud.privatedns.v20201028.models.DeleteEndPointResponse`
|
|
196
|
+
|
|
197
|
+
"""
|
|
198
|
+
try:
|
|
199
|
+
params = request._serialize()
|
|
200
|
+
headers = request.headers
|
|
201
|
+
body = self.call("DeleteEndPoint", params, headers=headers)
|
|
202
|
+
response = json.loads(body)
|
|
203
|
+
model = models.DeleteEndPointResponse()
|
|
204
|
+
model._deserialize(response["Response"])
|
|
205
|
+
return model
|
|
206
|
+
except Exception as e:
|
|
207
|
+
if isinstance(e, TencentCloudSDKException):
|
|
208
|
+
raise
|
|
209
|
+
else:
|
|
210
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
211
|
+
|
|
212
|
+
|
|
213
|
+
def DeleteForwardRule(self, request):
|
|
214
|
+
"""This API is used to delete a forwarding rule and stop forwarding.
|
|
215
|
+
|
|
216
|
+
:param request: Request instance for DeleteForwardRule.
|
|
217
|
+
:type request: :class:`tencentcloud.privatedns.v20201028.models.DeleteForwardRuleRequest`
|
|
218
|
+
:rtype: :class:`tencentcloud.privatedns.v20201028.models.DeleteForwardRuleResponse`
|
|
219
|
+
|
|
220
|
+
"""
|
|
221
|
+
try:
|
|
222
|
+
params = request._serialize()
|
|
223
|
+
headers = request.headers
|
|
224
|
+
body = self.call("DeleteForwardRule", params, headers=headers)
|
|
225
|
+
response = json.loads(body)
|
|
226
|
+
model = models.DeleteForwardRuleResponse()
|
|
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
|
+
|
|
167
236
|
def DeletePrivateZoneRecord(self, request):
|
|
168
237
|
"""This API is used to delete a DNS record for a private domain.
|
|
169
238
|
|
|
@@ -279,6 +348,75 @@ class PrivatednsClient(AbstractClient):
|
|
|
279
348
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
280
349
|
|
|
281
350
|
|
|
351
|
+
def DescribeEndPointRegion(self, request):
|
|
352
|
+
"""This API is used to query the regions where the endpoint is enabled.
|
|
353
|
+
|
|
354
|
+
:param request: Request instance for DescribeEndPointRegion.
|
|
355
|
+
:type request: :class:`tencentcloud.privatedns.v20201028.models.DescribeEndPointRegionRequest`
|
|
356
|
+
:rtype: :class:`tencentcloud.privatedns.v20201028.models.DescribeEndPointRegionResponse`
|
|
357
|
+
|
|
358
|
+
"""
|
|
359
|
+
try:
|
|
360
|
+
params = request._serialize()
|
|
361
|
+
headers = request.headers
|
|
362
|
+
body = self.call("DescribeEndPointRegion", params, headers=headers)
|
|
363
|
+
response = json.loads(body)
|
|
364
|
+
model = models.DescribeEndPointRegionResponse()
|
|
365
|
+
model._deserialize(response["Response"])
|
|
366
|
+
return model
|
|
367
|
+
except Exception as e:
|
|
368
|
+
if isinstance(e, TencentCloudSDKException):
|
|
369
|
+
raise
|
|
370
|
+
else:
|
|
371
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
372
|
+
|
|
373
|
+
|
|
374
|
+
def DescribeExtendEndpointList(self, request):
|
|
375
|
+
"""This API is used to obtain the endpoint list.
|
|
376
|
+
|
|
377
|
+
:param request: Request instance for DescribeExtendEndpointList.
|
|
378
|
+
:type request: :class:`tencentcloud.privatedns.v20201028.models.DescribeExtendEndpointListRequest`
|
|
379
|
+
:rtype: :class:`tencentcloud.privatedns.v20201028.models.DescribeExtendEndpointListResponse`
|
|
380
|
+
|
|
381
|
+
"""
|
|
382
|
+
try:
|
|
383
|
+
params = request._serialize()
|
|
384
|
+
headers = request.headers
|
|
385
|
+
body = self.call("DescribeExtendEndpointList", params, headers=headers)
|
|
386
|
+
response = json.loads(body)
|
|
387
|
+
model = models.DescribeExtendEndpointListResponse()
|
|
388
|
+
model._deserialize(response["Response"])
|
|
389
|
+
return model
|
|
390
|
+
except Exception as e:
|
|
391
|
+
if isinstance(e, TencentCloudSDKException):
|
|
392
|
+
raise
|
|
393
|
+
else:
|
|
394
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
395
|
+
|
|
396
|
+
|
|
397
|
+
def DescribeForwardRule(self, request):
|
|
398
|
+
"""This API is used to query forwarding rules.
|
|
399
|
+
|
|
400
|
+
:param request: Request instance for DescribeForwardRule.
|
|
401
|
+
:type request: :class:`tencentcloud.privatedns.v20201028.models.DescribeForwardRuleRequest`
|
|
402
|
+
:rtype: :class:`tencentcloud.privatedns.v20201028.models.DescribeForwardRuleResponse`
|
|
403
|
+
|
|
404
|
+
"""
|
|
405
|
+
try:
|
|
406
|
+
params = request._serialize()
|
|
407
|
+
headers = request.headers
|
|
408
|
+
body = self.call("DescribeForwardRule", params, headers=headers)
|
|
409
|
+
response = json.loads(body)
|
|
410
|
+
model = models.DescribeForwardRuleResponse()
|
|
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
|
+
|
|
282
420
|
def DescribeForwardRuleList(self, request):
|
|
283
421
|
"""This API is used to query the forwarding rule list.
|
|
284
422
|
|
|
@@ -440,6 +578,29 @@ class PrivatednsClient(AbstractClient):
|
|
|
440
578
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
441
579
|
|
|
442
580
|
|
|
581
|
+
def ModifyForwardRule(self, request):
|
|
582
|
+
"""This API is used to modify a forwarding rule.
|
|
583
|
+
|
|
584
|
+
:param request: Request instance for ModifyForwardRule.
|
|
585
|
+
:type request: :class:`tencentcloud.privatedns.v20201028.models.ModifyForwardRuleRequest`
|
|
586
|
+
:rtype: :class:`tencentcloud.privatedns.v20201028.models.ModifyForwardRuleResponse`
|
|
587
|
+
|
|
588
|
+
"""
|
|
589
|
+
try:
|
|
590
|
+
params = request._serialize()
|
|
591
|
+
headers = request.headers
|
|
592
|
+
body = self.call("ModifyForwardRule", params, headers=headers)
|
|
593
|
+
response = json.loads(body)
|
|
594
|
+
model = models.ModifyForwardRuleResponse()
|
|
595
|
+
model._deserialize(response["Response"])
|
|
596
|
+
return model
|
|
597
|
+
except Exception as e:
|
|
598
|
+
if isinstance(e, TencentCloudSDKException):
|
|
599
|
+
raise
|
|
600
|
+
else:
|
|
601
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
602
|
+
|
|
603
|
+
|
|
443
604
|
def ModifyPrivateZone(self, request):
|
|
444
605
|
"""This API is used to modify a private domain.
|
|
445
606
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=
|
|
1
|
+
tencentcloud/__init__.py,sha256=lczdNjiR8CYjFjCf8Y52p7NTpbV_l2ZGYOLgZ6B3uak,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
|
|
@@ -68,7 +68,7 @@ tencentcloud/ccc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
|
68
68
|
tencentcloud/ccc/v20200210/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
69
69
|
tencentcloud/ccc/v20200210/ccc_client.py,sha256=Iw2SHWgmiHfwJwvrpM7qXvUOpx195tkUmS5KidsKxzY,51080
|
|
70
70
|
tencentcloud/ccc/v20200210/errorcodes.py,sha256=4ND1rU15-nGQaj7CqeXpLu0gT4ajV7CQX3gf7e0-jZ8,5234
|
|
71
|
-
tencentcloud/ccc/v20200210/models.py,sha256=
|
|
71
|
+
tencentcloud/ccc/v20200210/models.py,sha256=aDqtaMTgAppnnOcJ0GK4GsersZoVrYOYnqgPqlQQua0,396758
|
|
72
72
|
tencentcloud/cdb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
73
73
|
tencentcloud/cdb/v20170320/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
74
74
|
tencentcloud/cdb/v20170320/cdb_client.py,sha256=lsVv0haXhHe9XbWFlQc65RbthqZKIGqdfZTcBqW7BEE,137214
|
|
@@ -421,9 +421,9 @@ tencentcloud/postgres/v20170312/models.py,sha256=fAS2-CRYxHsgHYs6cScPC3o5Vt_mu3x
|
|
|
421
421
|
tencentcloud/postgres/v20170312/postgres_client.py,sha256=po8qNXTxVZbOwfVl_UsQZGt077KH1pXFOnj73_NRf2I,91772
|
|
422
422
|
tencentcloud/privatedns/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
423
423
|
tencentcloud/privatedns/v20201028/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
424
|
-
tencentcloud/privatedns/v20201028/errorcodes.py,sha256=
|
|
425
|
-
tencentcloud/privatedns/v20201028/models.py,sha256=
|
|
426
|
-
tencentcloud/privatedns/v20201028/privatedns_client.py,sha256=
|
|
424
|
+
tencentcloud/privatedns/v20201028/errorcodes.py,sha256=aDEaYiBKIOFSpxw9Bgnv9d6nIGg08S8W9rFkvfE84ls,9343
|
|
425
|
+
tencentcloud/privatedns/v20201028/models.py,sha256=_1p2WSxem5che6-72I6C-zTUeGOCaV789-2v6d_cKoU,178305
|
|
426
|
+
tencentcloud/privatedns/v20201028/privatedns_client.py,sha256=rX3bk25bU0RObisI9xqfF66Rk3arPVHdigaMrVuIgk8,29294
|
|
427
427
|
tencentcloud/rce/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
428
428
|
tencentcloud/rce/v20201103/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
429
429
|
tencentcloud/rce/v20201103/errorcodes.py,sha256=14CmbQTMreizjkKkhZcO3d1y5WoqLElYS7-eXbb4h7w,4291
|
|
@@ -614,7 +614,7 @@ tencentcloud/yunjing/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
|
614
614
|
tencentcloud/yunjing/v20180228/errorcodes.py,sha256=VEqwMbMBe7F2oAW6ZDu3vAivBr60lbo7FWduFqRTEVg,3195
|
|
615
615
|
tencentcloud/yunjing/v20180228/models.py,sha256=0rnsJ4JkA5aCTV1cVwCuKnzooe6IhQ0NS3ij6tJ22uw,330670
|
|
616
616
|
tencentcloud/yunjing/v20180228/yunjing_client.py,sha256=GA7Fo5GmpEJ2kufV2upw-ZpMZxznsPZ3NKDKDDAI4Ao,67384
|
|
617
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
618
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
619
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
620
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
617
|
+
tencentcloud_sdk_python_intl_en-3.0.1113.dist-info/METADATA,sha256=9KTddfBpfBe1nHM7MYPaIyN1mlQgbqiP6dJCoo12KEg,1628
|
|
618
|
+
tencentcloud_sdk_python_intl_en-3.0.1113.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
619
|
+
tencentcloud_sdk_python_intl_en-3.0.1113.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
620
|
+
tencentcloud_sdk_python_intl_en-3.0.1113.dist-info/RECORD,,
|
|
File without changes
|