tencentcloud-sdk-python-intl-en 3.0.1222__py2.py3-none-any.whl → 3.0.1224__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/billing/v20180709/models.py +32 -46
- tencentcloud/emr/v20190103/models.py +392 -35
- tencentcloud/intlpartnersmgt/v20220928/models.py +19 -6
- tencentcloud/iotcloud/v20210408/models.py +2 -2
- tencentcloud/mps/v20190612/models.py +254 -194
- tencentcloud/redis/v20180412/models.py +50 -2
- tencentcloud/sqlserver/v20180328/models.py +2 -2
- tencentcloud/ssl/v20191205/errorcodes.py +3 -0
- tencentcloud/ssl/v20191205/models.py +4724 -3397
- tencentcloud/ssl/v20191205/ssl_client.py +138 -0
- tencentcloud/teo/v20220901/models.py +102 -0
- {tencentcloud_sdk_python_intl_en-3.0.1222.dist-info → tencentcloud_sdk_python_intl_en-3.0.1224.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1222.dist-info → tencentcloud_sdk_python_intl_en-3.0.1224.dist-info}/RECORD +16 -16
- {tencentcloud_sdk_python_intl_en-3.0.1222.dist-info → tencentcloud_sdk_python_intl_en-3.0.1224.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1222.dist-info → tencentcloud_sdk_python_intl_en-3.0.1224.dist-info}/top_level.txt +0 -0
|
@@ -486,6 +486,52 @@ class SslClient(AbstractClient):
|
|
|
486
486
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
487
487
|
|
|
488
488
|
|
|
489
|
+
def DescribeHostUploadUpdateRecord(self, request):
|
|
490
|
+
"""This API is used to query the record list of cloud resource updates for certificates (certificate ID unchanged).
|
|
491
|
+
|
|
492
|
+
:param request: Request instance for DescribeHostUploadUpdateRecord.
|
|
493
|
+
:type request: :class:`tencentcloud.ssl.v20191205.models.DescribeHostUploadUpdateRecordRequest`
|
|
494
|
+
:rtype: :class:`tencentcloud.ssl.v20191205.models.DescribeHostUploadUpdateRecordResponse`
|
|
495
|
+
|
|
496
|
+
"""
|
|
497
|
+
try:
|
|
498
|
+
params = request._serialize()
|
|
499
|
+
headers = request.headers
|
|
500
|
+
body = self.call("DescribeHostUploadUpdateRecord", params, headers=headers)
|
|
501
|
+
response = json.loads(body)
|
|
502
|
+
model = models.DescribeHostUploadUpdateRecordResponse()
|
|
503
|
+
model._deserialize(response["Response"])
|
|
504
|
+
return model
|
|
505
|
+
except Exception as e:
|
|
506
|
+
if isinstance(e, TencentCloudSDKException):
|
|
507
|
+
raise
|
|
508
|
+
else:
|
|
509
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
510
|
+
|
|
511
|
+
|
|
512
|
+
def DescribeHostUploadUpdateRecordDetail(self, request):
|
|
513
|
+
"""This API is used to query the deployment record details of certificate update records (certificate ID unchanged).
|
|
514
|
+
|
|
515
|
+
:param request: Request instance for DescribeHostUploadUpdateRecordDetail.
|
|
516
|
+
:type request: :class:`tencentcloud.ssl.v20191205.models.DescribeHostUploadUpdateRecordDetailRequest`
|
|
517
|
+
:rtype: :class:`tencentcloud.ssl.v20191205.models.DescribeHostUploadUpdateRecordDetailResponse`
|
|
518
|
+
|
|
519
|
+
"""
|
|
520
|
+
try:
|
|
521
|
+
params = request._serialize()
|
|
522
|
+
headers = request.headers
|
|
523
|
+
body = self.call("DescribeHostUploadUpdateRecordDetail", params, headers=headers)
|
|
524
|
+
response = json.loads(body)
|
|
525
|
+
model = models.DescribeHostUploadUpdateRecordDetailResponse()
|
|
526
|
+
model._deserialize(response["Response"])
|
|
527
|
+
return model
|
|
528
|
+
except Exception as e:
|
|
529
|
+
if isinstance(e, TencentCloudSDKException):
|
|
530
|
+
raise
|
|
531
|
+
else:
|
|
532
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
533
|
+
|
|
534
|
+
|
|
489
535
|
def DownloadCertificate(self, request):
|
|
490
536
|
"""This API is used to download a certificate.
|
|
491
537
|
|
|
@@ -601,6 +647,29 @@ class SslClient(AbstractClient):
|
|
|
601
647
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
602
648
|
|
|
603
649
|
|
|
650
|
+
def ModifyCertificatesExpiringNotificationSwitch(self, request):
|
|
651
|
+
"""Modify to ignore certificate expiration notifications. Enable or disable certificate expiration notifications.
|
|
652
|
+
|
|
653
|
+
:param request: Request instance for ModifyCertificatesExpiringNotificationSwitch.
|
|
654
|
+
:type request: :class:`tencentcloud.ssl.v20191205.models.ModifyCertificatesExpiringNotificationSwitchRequest`
|
|
655
|
+
:rtype: :class:`tencentcloud.ssl.v20191205.models.ModifyCertificatesExpiringNotificationSwitchResponse`
|
|
656
|
+
|
|
657
|
+
"""
|
|
658
|
+
try:
|
|
659
|
+
params = request._serialize()
|
|
660
|
+
headers = request.headers
|
|
661
|
+
body = self.call("ModifyCertificatesExpiringNotificationSwitch", params, headers=headers)
|
|
662
|
+
response = json.loads(body)
|
|
663
|
+
model = models.ModifyCertificatesExpiringNotificationSwitchResponse()
|
|
664
|
+
model._deserialize(response["Response"])
|
|
665
|
+
return model
|
|
666
|
+
except Exception as e:
|
|
667
|
+
if isinstance(e, TencentCloudSDKException):
|
|
668
|
+
raise
|
|
669
|
+
else:
|
|
670
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
671
|
+
|
|
672
|
+
|
|
604
673
|
def ReplaceCertificate(self, request):
|
|
605
674
|
"""This API is used to reissue a certificate. Note that if you have applied for a free certificate, only an RSA-2048 certificate will be reissued, and the certificate can be reissued only once.
|
|
606
675
|
|
|
@@ -755,6 +824,75 @@ class SslClient(AbstractClient):
|
|
|
755
824
|
model = models.UploadConfirmLetterResponse()
|
|
756
825
|
model._deserialize(response["Response"])
|
|
757
826
|
return model
|
|
827
|
+
except Exception as e:
|
|
828
|
+
if isinstance(e, TencentCloudSDKException):
|
|
829
|
+
raise
|
|
830
|
+
else:
|
|
831
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
832
|
+
|
|
833
|
+
|
|
834
|
+
def UploadUpdateCertificateInstance(self, request):
|
|
835
|
+
"""This API is used to update certificate content (certificate ID unchanged) and update associated Tencent Cloud resources. This is an asynchronous API. After calling, a DeployRecordId of 0 indicates that the task is in progress. Repeatedly request this API, and when DeployRecordId is greater than 0, it means the task has been successfully created. If the task is not successfully created, an exception will be thrown.
|
|
836
|
+
|
|
837
|
+
:param request: Request instance for UploadUpdateCertificateInstance.
|
|
838
|
+
:type request: :class:`tencentcloud.ssl.v20191205.models.UploadUpdateCertificateInstanceRequest`
|
|
839
|
+
:rtype: :class:`tencentcloud.ssl.v20191205.models.UploadUpdateCertificateInstanceResponse`
|
|
840
|
+
|
|
841
|
+
"""
|
|
842
|
+
try:
|
|
843
|
+
params = request._serialize()
|
|
844
|
+
headers = request.headers
|
|
845
|
+
body = self.call("UploadUpdateCertificateInstance", params, headers=headers)
|
|
846
|
+
response = json.loads(body)
|
|
847
|
+
model = models.UploadUpdateCertificateInstanceResponse()
|
|
848
|
+
model._deserialize(response["Response"])
|
|
849
|
+
return model
|
|
850
|
+
except Exception as e:
|
|
851
|
+
if isinstance(e, TencentCloudSDKException):
|
|
852
|
+
raise
|
|
853
|
+
else:
|
|
854
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
855
|
+
|
|
856
|
+
|
|
857
|
+
def UploadUpdateCertificateRecordRetry(self, request):
|
|
858
|
+
"""Cloud Resource Update (Certificate ID Unchanged) Deployment Retry Record.
|
|
859
|
+
|
|
860
|
+
:param request: Request instance for UploadUpdateCertificateRecordRetry.
|
|
861
|
+
:type request: :class:`tencentcloud.ssl.v20191205.models.UploadUpdateCertificateRecordRetryRequest`
|
|
862
|
+
:rtype: :class:`tencentcloud.ssl.v20191205.models.UploadUpdateCertificateRecordRetryResponse`
|
|
863
|
+
|
|
864
|
+
"""
|
|
865
|
+
try:
|
|
866
|
+
params = request._serialize()
|
|
867
|
+
headers = request.headers
|
|
868
|
+
body = self.call("UploadUpdateCertificateRecordRetry", params, headers=headers)
|
|
869
|
+
response = json.loads(body)
|
|
870
|
+
model = models.UploadUpdateCertificateRecordRetryResponse()
|
|
871
|
+
model._deserialize(response["Response"])
|
|
872
|
+
return model
|
|
873
|
+
except Exception as e:
|
|
874
|
+
if isinstance(e, TencentCloudSDKException):
|
|
875
|
+
raise
|
|
876
|
+
else:
|
|
877
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
878
|
+
|
|
879
|
+
|
|
880
|
+
def UploadUpdateCertificateRecordRollback(self, request):
|
|
881
|
+
"""This API is used to roll back the full task when cloud resource update succeeds with unchanged certificate ID.
|
|
882
|
+
|
|
883
|
+
:param request: Request instance for UploadUpdateCertificateRecordRollback.
|
|
884
|
+
:type request: :class:`tencentcloud.ssl.v20191205.models.UploadUpdateCertificateRecordRollbackRequest`
|
|
885
|
+
:rtype: :class:`tencentcloud.ssl.v20191205.models.UploadUpdateCertificateRecordRollbackResponse`
|
|
886
|
+
|
|
887
|
+
"""
|
|
888
|
+
try:
|
|
889
|
+
params = request._serialize()
|
|
890
|
+
headers = request.headers
|
|
891
|
+
body = self.call("UploadUpdateCertificateRecordRollback", params, headers=headers)
|
|
892
|
+
response = json.loads(body)
|
|
893
|
+
model = models.UploadUpdateCertificateRecordRollbackResponse()
|
|
894
|
+
model._deserialize(response["Response"])
|
|
895
|
+
return model
|
|
758
896
|
except Exception as e:
|
|
759
897
|
if isinstance(e, TencentCloudSDKException):
|
|
760
898
|
raise
|
|
@@ -33910,12 +33910,19 @@ If this field is not specified, the default value 'off' will be used.
|
|
|
33910
33910
|
:param _PrivateParameters: Private authentication parameter. This parameter is valid only when PrivateAccess is on.
|
|
33911
33911
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
33912
33912
|
:type PrivateParameters: list of PrivateParameter
|
|
33913
|
+
:param _HostHeader: current configured origin HOST header.
|
|
33914
|
+
:type HostHeader: str
|
|
33913
33915
|
:param _VodeoSubAppId: MO sub-application ID
|
|
33914
33916
|
:type VodeoSubAppId: int
|
|
33915
33917
|
:param _VodeoDistributionRange: MO distribution range. Valid values: <li>All: all</li> <li>Bucket: bucket</li>
|
|
33916
33918
|
:type VodeoDistributionRange: str
|
|
33917
33919
|
:param _VodeoBucketId: MO bucket ID, required when the distribution range (DistributionRange) is bucket (Bucket)
|
|
33918
33920
|
:type VodeoBucketId: str
|
|
33921
|
+
:param _VodOriginScope: VOD origin-pull range. this parameter returns a value when OriginType = VOD. valid values: <li>all: all files in the VOD application corresponding to the current origin server. the default value is all;</li> <li>bucket: files in a specified bucket under the VOD application corresponding to the current origin server. specify the bucket by the VodBucketId parameter.</li>.
|
|
33922
|
+
</li>
|
|
33923
|
+
:type VodOriginScope: str
|
|
33924
|
+
:param _VodBucketId: VOD bucket ID. this parameter is required when OriginType = VOD and VodOriginScope = bucket. data source: storage ID of the bucket under the VOD professional application.
|
|
33925
|
+
:type VodBucketId: str
|
|
33919
33926
|
"""
|
|
33920
33927
|
self._OriginType = None
|
|
33921
33928
|
self._Origin = None
|
|
@@ -33924,9 +33931,12 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
33924
33931
|
self._BackOriginGroupName = None
|
|
33925
33932
|
self._PrivateAccess = None
|
|
33926
33933
|
self._PrivateParameters = None
|
|
33934
|
+
self._HostHeader = None
|
|
33927
33935
|
self._VodeoSubAppId = None
|
|
33928
33936
|
self._VodeoDistributionRange = None
|
|
33929
33937
|
self._VodeoBucketId = None
|
|
33938
|
+
self._VodOriginScope = None
|
|
33939
|
+
self._VodBucketId = None
|
|
33930
33940
|
|
|
33931
33941
|
@property
|
|
33932
33942
|
def OriginType(self):
|
|
@@ -34021,6 +34031,17 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
34021
34031
|
def PrivateParameters(self, PrivateParameters):
|
|
34022
34032
|
self._PrivateParameters = PrivateParameters
|
|
34023
34033
|
|
|
34034
|
+
@property
|
|
34035
|
+
def HostHeader(self):
|
|
34036
|
+
"""current configured origin HOST header.
|
|
34037
|
+
:rtype: str
|
|
34038
|
+
"""
|
|
34039
|
+
return self._HostHeader
|
|
34040
|
+
|
|
34041
|
+
@HostHeader.setter
|
|
34042
|
+
def HostHeader(self, HostHeader):
|
|
34043
|
+
self._HostHeader = HostHeader
|
|
34044
|
+
|
|
34024
34045
|
@property
|
|
34025
34046
|
def VodeoSubAppId(self):
|
|
34026
34047
|
warnings.warn("parameter `VodeoSubAppId` is deprecated", DeprecationWarning)
|
|
@@ -34066,6 +34087,29 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
34066
34087
|
|
|
34067
34088
|
self._VodeoBucketId = VodeoBucketId
|
|
34068
34089
|
|
|
34090
|
+
@property
|
|
34091
|
+
def VodOriginScope(self):
|
|
34092
|
+
"""VOD origin-pull range. this parameter returns a value when OriginType = VOD. valid values: <li>all: all files in the VOD application corresponding to the current origin server. the default value is all;</li> <li>bucket: files in a specified bucket under the VOD application corresponding to the current origin server. specify the bucket by the VodBucketId parameter.</li>.
|
|
34093
|
+
</li>
|
|
34094
|
+
:rtype: str
|
|
34095
|
+
"""
|
|
34096
|
+
return self._VodOriginScope
|
|
34097
|
+
|
|
34098
|
+
@VodOriginScope.setter
|
|
34099
|
+
def VodOriginScope(self, VodOriginScope):
|
|
34100
|
+
self._VodOriginScope = VodOriginScope
|
|
34101
|
+
|
|
34102
|
+
@property
|
|
34103
|
+
def VodBucketId(self):
|
|
34104
|
+
"""VOD bucket ID. this parameter is required when OriginType = VOD and VodOriginScope = bucket. data source: storage ID of the bucket under the VOD professional application.
|
|
34105
|
+
:rtype: str
|
|
34106
|
+
"""
|
|
34107
|
+
return self._VodBucketId
|
|
34108
|
+
|
|
34109
|
+
@VodBucketId.setter
|
|
34110
|
+
def VodBucketId(self, VodBucketId):
|
|
34111
|
+
self._VodBucketId = VodBucketId
|
|
34112
|
+
|
|
34069
34113
|
|
|
34070
34114
|
def _deserialize(self, params):
|
|
34071
34115
|
self._OriginType = params.get("OriginType")
|
|
@@ -34080,9 +34124,12 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
34080
34124
|
obj = PrivateParameter()
|
|
34081
34125
|
obj._deserialize(item)
|
|
34082
34126
|
self._PrivateParameters.append(obj)
|
|
34127
|
+
self._HostHeader = params.get("HostHeader")
|
|
34083
34128
|
self._VodeoSubAppId = params.get("VodeoSubAppId")
|
|
34084
34129
|
self._VodeoDistributionRange = params.get("VodeoDistributionRange")
|
|
34085
34130
|
self._VodeoBucketId = params.get("VodeoBucketId")
|
|
34131
|
+
self._VodOriginScope = params.get("VodOriginScope")
|
|
34132
|
+
self._VodBucketId = params.get("VodBucketId")
|
|
34086
34133
|
memeber_set = set(params.keys())
|
|
34087
34134
|
for name, value in vars(self).items():
|
|
34088
34135
|
property_name = name[1:]
|
|
@@ -34655,6 +34702,12 @@ If it is not specified, the default value is off.
|
|
|
34655
34702
|
:type PrivateAccess: str
|
|
34656
34703
|
:param _PrivateParameters: Private authentication parameter. This parameter is valid only when PrivateAccess is on.
|
|
34657
34704
|
:type PrivateParameters: list of PrivateParameter
|
|
34705
|
+
:param _HostHeader: Custom origin HOST header, this parameter only takes effect when OriginType=IP_DOMAIN.
|
|
34706
|
+
|
|
34707
|
+
- If OriginType=COS or AWS_S3, the origin HOST header will be consistent with the origin domain name.
|
|
34708
|
+
- If OriginType=ORIGIN_GROUP, the origin HOST header follows the configuration within the origin group;if not configured, it defaults to the acceleration domain name.
|
|
34709
|
+
- If OriginType=VOD or SPACE, there is no need to configure this header, and it will take effect according to the corresponding origin domain name.
|
|
34710
|
+
:type HostHeader: str
|
|
34658
34711
|
:param _VodeoSubAppId: VODEO sub-application ID. This parameter is required when OriginType is VODEO.
|
|
34659
34712
|
:type VodeoSubAppId: int
|
|
34660
34713
|
:param _VodeoDistributionRange: VOD on EO distribution range. This parameter is required when OriginType = VODEO. The values are:
|
|
@@ -34663,15 +34716,23 @@ If it is not specified, the default value is off.
|
|
|
34663
34716
|
:type VodeoDistributionRange: str
|
|
34664
34717
|
:param _VodeoBucketId: VODEO storage bucket ID. This parameter is required when OriginType is VODEO and VodeoDistributionRange is Bucket.
|
|
34665
34718
|
:type VodeoBucketId: str
|
|
34719
|
+
:param _VodOriginScope: VOD origin-pull scope. this parameter is valid only when OriginType = VOD. valid values: <li>all: all files in the VOD application corresponding to the current origin server. the default value is all;</li> <li>bucket: files in a specified bucket under the VOD application corresponding to the current origin server. specify the bucket by the parameter VodBucketId.</li>.
|
|
34720
|
+
</li>
|
|
34721
|
+
:type VodOriginScope: str
|
|
34722
|
+
:param _VodBucketId: VOD bucket ID. this parameter is required when OriginType = VOD and VodOriginScope = bucket. data source: storage ID of the bucket under the VOD professional edition application.
|
|
34723
|
+
:type VodBucketId: str
|
|
34666
34724
|
"""
|
|
34667
34725
|
self._OriginType = None
|
|
34668
34726
|
self._Origin = None
|
|
34669
34727
|
self._BackupOrigin = None
|
|
34670
34728
|
self._PrivateAccess = None
|
|
34671
34729
|
self._PrivateParameters = None
|
|
34730
|
+
self._HostHeader = None
|
|
34672
34731
|
self._VodeoSubAppId = None
|
|
34673
34732
|
self._VodeoDistributionRange = None
|
|
34674
34733
|
self._VodeoBucketId = None
|
|
34734
|
+
self._VodOriginScope = None
|
|
34735
|
+
self._VodBucketId = None
|
|
34675
34736
|
|
|
34676
34737
|
@property
|
|
34677
34738
|
def OriginType(self):
|
|
@@ -34745,6 +34806,21 @@ If it is not specified, the default value is off.
|
|
|
34745
34806
|
def PrivateParameters(self, PrivateParameters):
|
|
34746
34807
|
self._PrivateParameters = PrivateParameters
|
|
34747
34808
|
|
|
34809
|
+
@property
|
|
34810
|
+
def HostHeader(self):
|
|
34811
|
+
"""Custom origin HOST header, this parameter only takes effect when OriginType=IP_DOMAIN.
|
|
34812
|
+
|
|
34813
|
+
- If OriginType=COS or AWS_S3, the origin HOST header will be consistent with the origin domain name.
|
|
34814
|
+
- If OriginType=ORIGIN_GROUP, the origin HOST header follows the configuration within the origin group;if not configured, it defaults to the acceleration domain name.
|
|
34815
|
+
- If OriginType=VOD or SPACE, there is no need to configure this header, and it will take effect according to the corresponding origin domain name.
|
|
34816
|
+
:rtype: str
|
|
34817
|
+
"""
|
|
34818
|
+
return self._HostHeader
|
|
34819
|
+
|
|
34820
|
+
@HostHeader.setter
|
|
34821
|
+
def HostHeader(self, HostHeader):
|
|
34822
|
+
self._HostHeader = HostHeader
|
|
34823
|
+
|
|
34748
34824
|
@property
|
|
34749
34825
|
def VodeoSubAppId(self):
|
|
34750
34826
|
warnings.warn("parameter `VodeoSubAppId` is deprecated", DeprecationWarning)
|
|
@@ -34792,6 +34868,29 @@ If it is not specified, the default value is off.
|
|
|
34792
34868
|
|
|
34793
34869
|
self._VodeoBucketId = VodeoBucketId
|
|
34794
34870
|
|
|
34871
|
+
@property
|
|
34872
|
+
def VodOriginScope(self):
|
|
34873
|
+
"""VOD origin-pull scope. this parameter is valid only when OriginType = VOD. valid values: <li>all: all files in the VOD application corresponding to the current origin server. the default value is all;</li> <li>bucket: files in a specified bucket under the VOD application corresponding to the current origin server. specify the bucket by the parameter VodBucketId.</li>.
|
|
34874
|
+
</li>
|
|
34875
|
+
:rtype: str
|
|
34876
|
+
"""
|
|
34877
|
+
return self._VodOriginScope
|
|
34878
|
+
|
|
34879
|
+
@VodOriginScope.setter
|
|
34880
|
+
def VodOriginScope(self, VodOriginScope):
|
|
34881
|
+
self._VodOriginScope = VodOriginScope
|
|
34882
|
+
|
|
34883
|
+
@property
|
|
34884
|
+
def VodBucketId(self):
|
|
34885
|
+
"""VOD bucket ID. this parameter is required when OriginType = VOD and VodOriginScope = bucket. data source: storage ID of the bucket under the VOD professional edition application.
|
|
34886
|
+
:rtype: str
|
|
34887
|
+
"""
|
|
34888
|
+
return self._VodBucketId
|
|
34889
|
+
|
|
34890
|
+
@VodBucketId.setter
|
|
34891
|
+
def VodBucketId(self, VodBucketId):
|
|
34892
|
+
self._VodBucketId = VodBucketId
|
|
34893
|
+
|
|
34795
34894
|
|
|
34796
34895
|
def _deserialize(self, params):
|
|
34797
34896
|
self._OriginType = params.get("OriginType")
|
|
@@ -34804,9 +34903,12 @@ If it is not specified, the default value is off.
|
|
|
34804
34903
|
obj = PrivateParameter()
|
|
34805
34904
|
obj._deserialize(item)
|
|
34806
34905
|
self._PrivateParameters.append(obj)
|
|
34906
|
+
self._HostHeader = params.get("HostHeader")
|
|
34807
34907
|
self._VodeoSubAppId = params.get("VodeoSubAppId")
|
|
34808
34908
|
self._VodeoDistributionRange = params.get("VodeoDistributionRange")
|
|
34809
34909
|
self._VodeoBucketId = params.get("VodeoBucketId")
|
|
34910
|
+
self._VodOriginScope = params.get("VodOriginScope")
|
|
34911
|
+
self._VodBucketId = params.get("VodBucketId")
|
|
34810
34912
|
memeber_set = set(params.keys())
|
|
34811
34913
|
for name, value in vars(self).items():
|
|
34812
34914
|
property_name = name[1:]
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=
|
|
1
|
+
tencentcloud/__init__.py,sha256=pbWl_Vf5B4zLGGBwWvNr_Lr_iuZ2dLjcNmvS5mxB2qg,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=FuBG5ZJpmnVpDyVC84G_cjEWSa-mm6oyBvOIDe5SP-g,2924
|
|
@@ -48,7 +48,7 @@ tencentcloud/billing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hS
|
|
|
48
48
|
tencentcloud/billing/v20180709/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
49
49
|
tencentcloud/billing/v20180709/billing_client.py,sha256=qHclCnxap_Xsss_NgNyPTQ8Rm1FLSvJNAOg4hxOsbqc,40886
|
|
50
50
|
tencentcloud/billing/v20180709/errorcodes.py,sha256=W5tlTU0vSP7DKyTW1XM1QVz95cIwsCaA2Dgnnk211IQ,2356
|
|
51
|
-
tencentcloud/billing/v20180709/models.py,sha256=
|
|
51
|
+
tencentcloud/billing/v20180709/models.py,sha256=i30bTg6menwvTyNDbeZM2_ER5fMG_NFslFwrk6UyNLo,582059
|
|
52
52
|
tencentcloud/cam/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
53
53
|
tencentcloud/cam/v20190116/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
54
54
|
tencentcloud/cam/v20190116/cam_client.py,sha256=cQFaz-s6EzqeCpWmIX0Kd_F2xZByDcObmj5c6eoMGAI,75169
|
|
@@ -279,7 +279,7 @@ tencentcloud/emr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
|
279
279
|
tencentcloud/emr/v20190103/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
280
280
|
tencentcloud/emr/v20190103/emr_client.py,sha256=17Tw4TLoomfZ4ijc1QAxJe26RbyuIoIAdAYgW9CaA70,24732
|
|
281
281
|
tencentcloud/emr/v20190103/errorcodes.py,sha256=36EYY_5Hn2VuWkk5AjkO69vwyhPFBaZ7rFHi45-1AoM,16117
|
|
282
|
-
tencentcloud/emr/v20190103/models.py,sha256=
|
|
282
|
+
tencentcloud/emr/v20190103/models.py,sha256=Imz47ZAoy_bWC0IWU5uiXYk4VkOzbgh36S1DdssiozA,502245
|
|
283
283
|
tencentcloud/es/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
284
284
|
tencentcloud/es/v20180416/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
285
285
|
tencentcloud/es/v20180416/errorcodes.py,sha256=eFfqlutc7CbMOy79d8iRon8NRIxohRBZn1JYnKXvFUY,4663
|
|
@@ -339,12 +339,12 @@ tencentcloud/intlpartnersmgt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NM
|
|
|
339
339
|
tencentcloud/intlpartnersmgt/v20220928/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
340
340
|
tencentcloud/intlpartnersmgt/v20220928/errorcodes.py,sha256=ob6XjXp7Alcx0kON4shg4STrhKSTTomJjKjifRV3jJg,8738
|
|
341
341
|
tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.py,sha256=FVKMds1TvgWZJXsmS70K4v-URMjtv5pa6gmjHRt3rD0,44258
|
|
342
|
-
tencentcloud/intlpartnersmgt/v20220928/models.py,sha256=
|
|
342
|
+
tencentcloud/intlpartnersmgt/v20220928/models.py,sha256=gC67s9GS35xsuC_SHkDpA5B2_RZ5Gh-nOokdVEvTNSc,253612
|
|
343
343
|
tencentcloud/iotcloud/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
344
344
|
tencentcloud/iotcloud/v20210408/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
345
345
|
tencentcloud/iotcloud/v20210408/errorcodes.py,sha256=ot2acVUWnZ1XbJLkM4K-jT_Gw5TQD53TtZwnfFzJJ9Y,5887
|
|
346
346
|
tencentcloud/iotcloud/v20210408/iotcloud_client.py,sha256=ZDU7SdCFpHojiQd-TfjZqxCzdwtALjecNrtEw4HMtko,19397
|
|
347
|
-
tencentcloud/iotcloud/v20210408/models.py,sha256=
|
|
347
|
+
tencentcloud/iotcloud/v20210408/models.py,sha256=ojsq-EnaTR7V-wrlsdzhHWIHbjIpAJ3ebRcwTaRjHOg,110161
|
|
348
348
|
tencentcloud/ip/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
349
349
|
tencentcloud/ip/v20210409/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
350
350
|
tencentcloud/ip/v20210409/errorcodes.py,sha256=8jvhxoRpHkM9eR0ZG5iC4jbTXMwDxnBHBoCB3JzP1iw,3069
|
|
@@ -408,7 +408,7 @@ tencentcloud/monitor/v20180724/monitor_client.py,sha256=trcnM-vkXAG1BuLAcjoqaAox
|
|
|
408
408
|
tencentcloud/mps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
409
409
|
tencentcloud/mps/v20190612/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
410
410
|
tencentcloud/mps/v20190612/errorcodes.py,sha256=OO1P1ImPOrG2TF71Wk-MNeoPcXLs2K2ft0FSY0OacyE,15253
|
|
411
|
-
tencentcloud/mps/v20190612/models.py,sha256=
|
|
411
|
+
tencentcloud/mps/v20190612/models.py,sha256=G1EJi1BcDrBD0kknF6IPvWFJL9frTuH2R0j65-W8650,1955286
|
|
412
412
|
tencentcloud/mps/v20190612/mps_client.py,sha256=gk9swrx2W3FO_8O2URA8LrdNXeBt0WouG2pwQKdzUAE,96362
|
|
413
413
|
tencentcloud/msp/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
414
414
|
tencentcloud/msp/v20180319/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -457,7 +457,7 @@ tencentcloud/rce/v20201103/rce_client.py,sha256=w4u078ueWTBjiPAabErGWImYHMifd9Su
|
|
|
457
457
|
tencentcloud/redis/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
458
458
|
tencentcloud/redis/v20180412/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
459
459
|
tencentcloud/redis/v20180412/errorcodes.py,sha256=e9RuOTgVItPW6MyARrP1tZ45naesdctPvpwxgktEmkc,14229
|
|
460
|
-
tencentcloud/redis/v20180412/models.py,sha256=
|
|
460
|
+
tencentcloud/redis/v20180412/models.py,sha256=O25m_KhJcUbedGPXtxN0-nRI3WNVFIPCqiiIpRYyoaI,766097
|
|
461
461
|
tencentcloud/redis/v20180412/redis_client.py,sha256=7rgQrN7UF2cvpmvTjd9yONapODEN3s2UI_zwI92K9DU,103675
|
|
462
462
|
tencentcloud/rum/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
463
463
|
tencentcloud/rum/v20210622/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -486,13 +486,13 @@ tencentcloud/sms/v20210111/sms_client.py,sha256=OM034Nl5EK8H9hEdx0M23lBTbMcmI0eQ
|
|
|
486
486
|
tencentcloud/sqlserver/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
487
487
|
tencentcloud/sqlserver/v20180328/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
488
488
|
tencentcloud/sqlserver/v20180328/errorcodes.py,sha256=ypazBCQaGSMMfaaaYIWNpwgz4CuAULLitwpLuXS4RVw,10034
|
|
489
|
-
tencentcloud/sqlserver/v20180328/models.py,sha256=
|
|
489
|
+
tencentcloud/sqlserver/v20180328/models.py,sha256=xggSWHXkwV1ziq9cKfECMJw4lxVquyC4NRm2B5EEG_A,613187
|
|
490
490
|
tencentcloud/sqlserver/v20180328/sqlserver_client.py,sha256=SNoE1Wc79g_RERhaBpCNFgKKXEqd5_TXajdldVgdNOE,79554
|
|
491
491
|
tencentcloud/ssl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
492
492
|
tencentcloud/ssl/v20191205/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
493
|
-
tencentcloud/ssl/v20191205/errorcodes.py,sha256=
|
|
494
|
-
tencentcloud/ssl/v20191205/models.py,sha256=
|
|
495
|
-
tencentcloud/ssl/v20191205/ssl_client.py,sha256=
|
|
493
|
+
tencentcloud/ssl/v20191205/errorcodes.py,sha256=zpL4WMmK8ykGToj_vb0Hz2kCZ8UJIylhzeKoLQgfyKQ,10803
|
|
494
|
+
tencentcloud/ssl/v20191205/models.py,sha256=8abTrq_oQCKsebYFbXFg6dQChavauM1lbQm_M-xm63U,540648
|
|
495
|
+
tencentcloud/ssl/v20191205/ssl_client.py,sha256=I6aDpUti_E7nQBskfkiZvh72zaGIhnmXUjW7Qr-gLyM,39449
|
|
496
496
|
tencentcloud/ssm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
497
497
|
tencentcloud/ssm/v20190923/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
498
498
|
tencentcloud/ssm/v20190923/errorcodes.py,sha256=NBOI-WQKLIKbuU6tJKH1ymD-gq-VAaqmxK3FFXEvmcM,3759
|
|
@@ -574,7 +574,7 @@ tencentcloud/teo/v20220106/models.py,sha256=O7LYEZTTKjloNI2BuDHcaBdEpxjHezVYck_x
|
|
|
574
574
|
tencentcloud/teo/v20220106/teo_client.py,sha256=WqbKWMCSVc-Ey-oHXwtzs9bVefmD0B_Up0e1B5vC8OM,82907
|
|
575
575
|
tencentcloud/teo/v20220901/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
576
576
|
tencentcloud/teo/v20220901/errorcodes.py,sha256=1TLhna8MLSCt74G25lFKLjLNMgBQivezJy9DlXokTXE,60712
|
|
577
|
-
tencentcloud/teo/v20220901/models.py,sha256=
|
|
577
|
+
tencentcloud/teo/v20220901/models.py,sha256=9Xbat71hgNni7gCBZxx6emAWniFUZj4h3zlRZse8KZk,1622956
|
|
578
578
|
tencentcloud/teo/v20220901/teo_client.py,sha256=zARs4NDLF3YBhZEcFtKD4PAKyGmw6Mp9Ue3UAmyuxwI,150139
|
|
579
579
|
tencentcloud/tiw/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
580
580
|
tencentcloud/tiw/v20190919/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -659,7 +659,7 @@ tencentcloud/yunjing/v20180228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
|
659
659
|
tencentcloud/yunjing/v20180228/errorcodes.py,sha256=VEqwMbMBe7F2oAW6ZDu3vAivBr60lbo7FWduFqRTEVg,3195
|
|
660
660
|
tencentcloud/yunjing/v20180228/models.py,sha256=0rnsJ4JkA5aCTV1cVwCuKnzooe6IhQ0NS3ij6tJ22uw,330670
|
|
661
661
|
tencentcloud/yunjing/v20180228/yunjing_client.py,sha256=LY01pPiy1k_AXnHgG0FonGekRSFMY3t9pcYH8aE27oQ,67389
|
|
662
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
663
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
664
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
665
|
-
tencentcloud_sdk_python_intl_en-3.0.
|
|
662
|
+
tencentcloud_sdk_python_intl_en-3.0.1224.dist-info/METADATA,sha256=-uQy23GR83o17BxCjOSZFHIIClVxxeBHoJH3y_DRNNg,1628
|
|
663
|
+
tencentcloud_sdk_python_intl_en-3.0.1224.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
664
|
+
tencentcloud_sdk_python_intl_en-3.0.1224.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
665
|
+
tencentcloud_sdk_python_intl_en-3.0.1224.dist-info/RECORD,,
|
|
File without changes
|