tencentcloud-sdk-python-intl-en 3.0.1222__py2.py3-none-any.whl → 3.0.1223__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/sqlserver/v20180328/models.py +2 -2
- tencentcloud/teo/v20220901/models.py +102 -0
- {tencentcloud_sdk_python_intl_en-3.0.1222.dist-info → tencentcloud_sdk_python_intl_en-3.0.1223.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1222.dist-info → tencentcloud_sdk_python_intl_en-3.0.1223.dist-info}/RECORD +7 -7
- {tencentcloud_sdk_python_intl_en-3.0.1222.dist-info → tencentcloud_sdk_python_intl_en-3.0.1223.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1222.dist-info → tencentcloud_sdk_python_intl_en-3.0.1223.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -1776,7 +1776,7 @@ class CreateBackupRequest(AbstractModel):
|
|
|
1776
1776
|
:type InstanceId: str
|
|
1777
1777
|
:param _BackupName: Backup name. If this parameter is left empty, a backup name in the format of "[Instance ID]_[Backup start timestamp]" will be automatically generated.
|
|
1778
1778
|
:type BackupName: str
|
|
1779
|
-
:param _StorageStrategy:
|
|
1779
|
+
:param _StorageStrategy: Backup storage policy. 0: Follow the custom backup retention policy; 1: Follow the instance lifecycle until the instance is eliminated. Default value: 0.
|
|
1780
1780
|
:type StorageStrategy: int
|
|
1781
1781
|
"""
|
|
1782
1782
|
self._Strategy = None
|
|
@@ -1831,7 +1831,7 @@ class CreateBackupRequest(AbstractModel):
|
|
|
1831
1831
|
|
|
1832
1832
|
@property
|
|
1833
1833
|
def StorageStrategy(self):
|
|
1834
|
-
"""
|
|
1834
|
+
"""Backup storage policy. 0: Follow the custom backup retention policy; 1: Follow the instance lifecycle until the instance is eliminated. Default value: 0.
|
|
1835
1835
|
:rtype: int
|
|
1836
1836
|
"""
|
|
1837
1837
|
return self._StorageStrategy
|
|
@@ -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=58sg2TIokiyIHRkosXpbzPuXM85iBlc1N2SsAHTsYHM,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
|
|
@@ -486,7 +486,7 @@ 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
|
|
@@ -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.1223.dist-info/METADATA,sha256=Fb35JSLthejN-3Ovd9HCRxBxisAXPXH6Ja-VkAqFr1Q,1628
|
|
663
|
+
tencentcloud_sdk_python_intl_en-3.0.1223.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
664
|
+
tencentcloud_sdk_python_intl_en-3.0.1223.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
665
|
+
tencentcloud_sdk_python_intl_en-3.0.1223.dist-info/RECORD,,
|
|
File without changes
|