tencentcloud-sdk-python-intl-en 3.0.1117__py2.py3-none-any.whl → 3.0.1118__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 CHANGED
@@ -13,4 +13,4 @@
13
13
  # See the License for the specific language governing permissions and
14
14
  # limitations under the License.
15
15
 
16
- __version__ = '3.0.1117'
16
+ __version__ = '3.0.1118'
@@ -980,6 +980,29 @@ class ApigatewayClient(AbstractClient):
980
980
  raise TencentCloudSDKException(type(e).__name__, str(e))
981
981
 
982
982
 
983
+ def DescribeExclusiveInstanceRegions(self, request):
984
+ """Get the list of supported regions for dedicated instances
985
+
986
+ :param request: Request instance for DescribeExclusiveInstanceRegions.
987
+ :type request: :class:`tencentcloud.apigateway.v20180808.models.DescribeExclusiveInstanceRegionsRequest`
988
+ :rtype: :class:`tencentcloud.apigateway.v20180808.models.DescribeExclusiveInstanceRegionsResponse`
989
+
990
+ """
991
+ try:
992
+ params = request._serialize()
993
+ headers = request.headers
994
+ body = self.call("DescribeExclusiveInstanceRegions", params, headers=headers)
995
+ response = json.loads(body)
996
+ model = models.DescribeExclusiveInstanceRegionsResponse()
997
+ model._deserialize(response["Response"])
998
+ return model
999
+ except Exception as e:
1000
+ if isinstance(e, TencentCloudSDKException):
1001
+ raise
1002
+ else:
1003
+ raise TencentCloudSDKException(type(e).__name__, str(e))
1004
+
1005
+
983
1006
  def DescribeIPStrategy(self, request):
984
1007
  """This API is used to query IP policy details.
985
1008
 
@@ -10612,6 +10612,40 @@ class DescribeApisStatusResultInfo(AbstractModel):
10612
10612
 
10613
10613
 
10614
10614
 
10615
+ class DescribeExclusiveInstanceRegionsRequest(AbstractModel):
10616
+ """DescribeExclusiveInstanceRegions request structure.
10617
+
10618
+ """
10619
+
10620
+
10621
+ class DescribeExclusiveInstanceRegionsResponse(AbstractModel):
10622
+ """DescribeExclusiveInstanceRegions response structure.
10623
+
10624
+ """
10625
+
10626
+ def __init__(self):
10627
+ r"""
10628
+ :param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
10629
+ :type RequestId: str
10630
+ """
10631
+ self._RequestId = None
10632
+
10633
+ @property
10634
+ def RequestId(self):
10635
+ """The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
10636
+ :rtype: str
10637
+ """
10638
+ return self._RequestId
10639
+
10640
+ @RequestId.setter
10641
+ def RequestId(self, RequestId):
10642
+ self._RequestId = RequestId
10643
+
10644
+
10645
+ def _deserialize(self, params):
10646
+ self._RequestId = params.get("RequestId")
10647
+
10648
+
10615
10649
  class DescribeIPStrategyApisStatusRequest(AbstractModel):
10616
10650
  """DescribeIPStrategyApisStatus request structure.
10617
10651
 
@@ -3557,8 +3557,11 @@ class DeleteCertificateRequest(AbstractModel):
3557
3557
  r"""
3558
3558
  :param _CertificateId: Certificate ID
3559
3559
  :type CertificateId: str
3560
+ :param _IsCheckResource:
3561
+ :type IsCheckResource: bool
3560
3562
  """
3561
3563
  self._CertificateId = None
3564
+ self._IsCheckResource = None
3562
3565
 
3563
3566
  @property
3564
3567
  def CertificateId(self):
@@ -3571,9 +3574,21 @@ class DeleteCertificateRequest(AbstractModel):
3571
3574
  def CertificateId(self, CertificateId):
3572
3575
  self._CertificateId = CertificateId
3573
3576
 
3577
+ @property
3578
+ def IsCheckResource(self):
3579
+ """
3580
+ :rtype: bool
3581
+ """
3582
+ return self._IsCheckResource
3583
+
3584
+ @IsCheckResource.setter
3585
+ def IsCheckResource(self, IsCheckResource):
3586
+ self._IsCheckResource = IsCheckResource
3587
+
3574
3588
 
3575
3589
  def _deserialize(self, params):
3576
3590
  self._CertificateId = params.get("CertificateId")
3591
+ self._IsCheckResource = params.get("IsCheckResource")
3577
3592
  memeber_set = set(params.keys())
3578
3593
  for name, value in vars(self).items():
3579
3594
  property_name = name[1:]
@@ -3593,10 +3608,13 @@ class DeleteCertificateResponse(AbstractModel):
3593
3608
  r"""
3594
3609
  :param _DeleteResult: Deletion result
3595
3610
  :type DeleteResult: bool
3611
+ :param _TaskId:
3612
+ :type TaskId: str
3596
3613
  :param _RequestId: The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
3597
3614
  :type RequestId: str
3598
3615
  """
3599
3616
  self._DeleteResult = None
3617
+ self._TaskId = None
3600
3618
  self._RequestId = None
3601
3619
 
3602
3620
  @property
@@ -3610,6 +3628,17 @@ class DeleteCertificateResponse(AbstractModel):
3610
3628
  def DeleteResult(self, DeleteResult):
3611
3629
  self._DeleteResult = DeleteResult
3612
3630
 
3631
+ @property
3632
+ def TaskId(self):
3633
+ """
3634
+ :rtype: str
3635
+ """
3636
+ return self._TaskId
3637
+
3638
+ @TaskId.setter
3639
+ def TaskId(self, TaskId):
3640
+ self._TaskId = TaskId
3641
+
3613
3642
  @property
3614
3643
  def RequestId(self):
3615
3644
  """The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
@@ -3624,6 +3653,7 @@ class DeleteCertificateResponse(AbstractModel):
3624
3653
 
3625
3654
  def _deserialize(self, params):
3626
3655
  self._DeleteResult = params.get("DeleteResult")
3656
+ self._TaskId = params.get("TaskId")
3627
3657
  self._RequestId = params.get("RequestId")
3628
3658
 
3629
3659
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-intl-en
3
- Version: 3.0.1117
3
+ Version: 3.0.1118
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=oGmHl5K_Z9HCJhdBG2Cwak__7keycg4ep0CKFvY9Xfs,630
1
+ tencentcloud/__init__.py,sha256=Sqz5gcHphQ4aKYqlq5KuGq2f23_eK1o67zC_O08KIok,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
@@ -21,9 +21,9 @@ tencentcloud/antiddos/v20200309/errorcodes.py,sha256=-NgKirEk0ME2_qvHM8JpT4xH_fA
21
21
  tencentcloud/antiddos/v20200309/models.py,sha256=uKNPnhhR6sRyyjdcHz7G_e_az5a_-K7S9BM1QM7A7As,544486
22
22
  tencentcloud/apigateway/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
23
23
  tencentcloud/apigateway/v20180808/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
24
- tencentcloud/apigateway/v20180808/apigateway_client.py,sha256=3yPwDHTK-flhQOOcw1BopENHHmiFQc36-1jKozyEJiI,90265
24
+ tencentcloud/apigateway/v20180808/apigateway_client.py,sha256=vqNE3Z8NTt4nrwjGpkoE24wCUz_o50MZL7BXqWrEz6s,91277
25
25
  tencentcloud/apigateway/v20180808/errorcodes.py,sha256=0T0u1gze7_0UL5PGy0yOYWJOuI17GixRzh6_wngXJ74,23820
26
- tencentcloud/apigateway/v20180808/models.py,sha256=pUqn0cKzBu5gactwPqHpm20F8kggBFMTVyL6IPWM3sE,792181
26
+ tencentcloud/apigateway/v20180808/models.py,sha256=BLOBe8Vw6lpPySeaXFyNihWAnZdPStvnqX_d3utcLyE,793345
27
27
  tencentcloud/asr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
28
28
  tencentcloud/asr/v20190614/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
29
29
  tencentcloud/asr/v20190614/asr_client.py,sha256=r4qEn2LB-YgWklBIiAUfpxCOI2ypetHuoJz2HqAm-Cg,6446
@@ -466,7 +466,7 @@ tencentcloud/sqlserver/v20180328/sqlserver_client.py,sha256=4EtZ1Hvt_PPkhxVMAtn8
466
466
  tencentcloud/ssl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
467
467
  tencentcloud/ssl/v20191205/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
468
468
  tencentcloud/ssl/v20191205/errorcodes.py,sha256=NiDmHYjK24Li-9nuRpSIMBMeaRjfsSGcEuaBGwNnpVs,9870
469
- tencentcloud/ssl/v20191205/models.py,sha256=HxmiG_CPHoqM3qokZDC7ivxmasMO_qLR5NZtQEZtfIY,430675
469
+ tencentcloud/ssl/v20191205/models.py,sha256=wCHj4oJLUn1QgfFC9hmJRErBuFpsrzbri9guL7SgELI,431409
470
470
  tencentcloud/ssl/v20191205/ssl_client.py,sha256=i9u0Ml5aKK8yBfUdEY7PMMJExA93adqalnWVcG8X8To,32348
471
471
  tencentcloud/ssm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
472
472
  tencentcloud/ssm/v20190923/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -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.1117.dist-info/METADATA,sha256=NBD_Q4iEiIZZXXhjch9GHy-pcSIrSHiwLPRLDLbtKmc,1628
618
- tencentcloud_sdk_python_intl_en-3.0.1117.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
619
- tencentcloud_sdk_python_intl_en-3.0.1117.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
620
- tencentcloud_sdk_python_intl_en-3.0.1117.dist-info/RECORD,,
617
+ tencentcloud_sdk_python_intl_en-3.0.1118.dist-info/METADATA,sha256=6KRnz4UumDodXPFS7_ZDDPq6Q2jreSP3CVA5StdSH0I,1628
618
+ tencentcloud_sdk_python_intl_en-3.0.1118.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
619
+ tencentcloud_sdk_python_intl_en-3.0.1118.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
620
+ tencentcloud_sdk_python_intl_en-3.0.1118.dist-info/RECORD,,