tencentcloud-sdk-python-teo 3.0.1382__tar.gz → 3.0.1384__tar.gz
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.
- {tencentcloud-sdk-python-teo-3.0.1382 → tencentcloud-sdk-python-teo-3.0.1384}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-teo-3.0.1382 → tencentcloud-sdk-python-teo-3.0.1384}/setup.py +1 -1
- {tencentcloud-sdk-python-teo-3.0.1382 → tencentcloud-sdk-python-teo-3.0.1384}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-teo-3.0.1382 → tencentcloud-sdk-python-teo-3.0.1384}/tencentcloud/teo/v20220901/models.py +81 -13
- {tencentcloud-sdk-python-teo-3.0.1382 → tencentcloud-sdk-python-teo-3.0.1384}/tencentcloud/teo/v20220901/teo_client.py +5 -0
- {tencentcloud-sdk-python-teo-3.0.1382 → tencentcloud-sdk-python-teo-3.0.1384}/tencentcloud_sdk_python_teo.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-teo-3.0.1384/tencentcloud_sdk_python_teo.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-teo-3.0.1382/tencentcloud_sdk_python_teo.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-teo-3.0.1382 → tencentcloud-sdk-python-teo-3.0.1384}/README.rst +0 -0
- {tencentcloud-sdk-python-teo-3.0.1382 → tencentcloud-sdk-python-teo-3.0.1384}/setup.cfg +0 -0
- {tencentcloud-sdk-python-teo-3.0.1382 → tencentcloud-sdk-python-teo-3.0.1384}/tencentcloud/teo/__init__.py +0 -0
- {tencentcloud-sdk-python-teo-3.0.1382 → tencentcloud-sdk-python-teo-3.0.1384}/tencentcloud/teo/v20220106/__init__.py +0 -0
- {tencentcloud-sdk-python-teo-3.0.1382 → tencentcloud-sdk-python-teo-3.0.1384}/tencentcloud/teo/v20220106/errorcodes.py +0 -0
- {tencentcloud-sdk-python-teo-3.0.1382 → tencentcloud-sdk-python-teo-3.0.1384}/tencentcloud/teo/v20220106/models.py +0 -0
- {tencentcloud-sdk-python-teo-3.0.1382 → tencentcloud-sdk-python-teo-3.0.1384}/tencentcloud/teo/v20220106/teo_client.py +0 -0
- {tencentcloud-sdk-python-teo-3.0.1382 → tencentcloud-sdk-python-teo-3.0.1384}/tencentcloud/teo/v20220901/__init__.py +0 -0
- {tencentcloud-sdk-python-teo-3.0.1382 → tencentcloud-sdk-python-teo-3.0.1384}/tencentcloud/teo/v20220901/errorcodes.py +0 -0
- {tencentcloud-sdk-python-teo-3.0.1382 → tencentcloud-sdk-python-teo-3.0.1384}/tencentcloud_sdk_python_teo.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-teo-3.0.1382 → tencentcloud-sdk-python-teo-3.0.1384}/tencentcloud_sdk_python_teo.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-teo-3.0.1382 → tencentcloud-sdk-python-teo-3.0.1384}/tencentcloud_sdk_python_teo.egg-info/top_level.txt +0 -0
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-teo',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common==3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1384"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Teo SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -9100,11 +9100,24 @@ http://www.example.com/example.txt。参数值当前必填。
|
|
|
9100
9100
|
:type EncodeUrl: bool
|
|
9101
9101
|
:param _Headers: 附带的http头部信息。
|
|
9102
9102
|
:type Headers: list of Header
|
|
9103
|
+
:param _PrefetchMediaSegments: 媒体分片预热控制,取值有:
|
|
9104
|
+
<li>on:开启分片预热,预热描述文件,并递归解析描述文件分片进行预热;</li>
|
|
9105
|
+
<li>off:仅预热提交的描述文件;</li>不填写时,默认值为 off。
|
|
9106
|
+
|
|
9107
|
+
注意事项:
|
|
9108
|
+
1. 支持的描述文件为 M3U8,对应分片为 TS;
|
|
9109
|
+
2. 要求描述文件能正常请求,并按行业标准描述分片路径;
|
|
9110
|
+
3. 递归解析深度不超过 3 层;
|
|
9111
|
+
4. 解析获取的分片会正常累加每日预热用量,当用量超出配额时,会静默处理,不再执行预热。
|
|
9112
|
+
|
|
9113
|
+
该参数为白名单功能,如有需要,请联系腾讯云工程师处理。
|
|
9114
|
+
:type PrefetchMediaSegments: str
|
|
9103
9115
|
"""
|
|
9104
9116
|
self._ZoneId = None
|
|
9105
9117
|
self._Targets = None
|
|
9106
9118
|
self._EncodeUrl = None
|
|
9107
9119
|
self._Headers = None
|
|
9120
|
+
self._PrefetchMediaSegments = None
|
|
9108
9121
|
|
|
9109
9122
|
@property
|
|
9110
9123
|
def ZoneId(self):
|
|
@@ -9157,6 +9170,27 @@ http://www.example.com/example.txt。参数值当前必填。
|
|
|
9157
9170
|
def Headers(self, Headers):
|
|
9158
9171
|
self._Headers = Headers
|
|
9159
9172
|
|
|
9173
|
+
@property
|
|
9174
|
+
def PrefetchMediaSegments(self):
|
|
9175
|
+
"""媒体分片预热控制,取值有:
|
|
9176
|
+
<li>on:开启分片预热,预热描述文件,并递归解析描述文件分片进行预热;</li>
|
|
9177
|
+
<li>off:仅预热提交的描述文件;</li>不填写时,默认值为 off。
|
|
9178
|
+
|
|
9179
|
+
注意事项:
|
|
9180
|
+
1. 支持的描述文件为 M3U8,对应分片为 TS;
|
|
9181
|
+
2. 要求描述文件能正常请求,并按行业标准描述分片路径;
|
|
9182
|
+
3. 递归解析深度不超过 3 层;
|
|
9183
|
+
4. 解析获取的分片会正常累加每日预热用量,当用量超出配额时,会静默处理,不再执行预热。
|
|
9184
|
+
|
|
9185
|
+
该参数为白名单功能,如有需要,请联系腾讯云工程师处理。
|
|
9186
|
+
:rtype: str
|
|
9187
|
+
"""
|
|
9188
|
+
return self._PrefetchMediaSegments
|
|
9189
|
+
|
|
9190
|
+
@PrefetchMediaSegments.setter
|
|
9191
|
+
def PrefetchMediaSegments(self, PrefetchMediaSegments):
|
|
9192
|
+
self._PrefetchMediaSegments = PrefetchMediaSegments
|
|
9193
|
+
|
|
9160
9194
|
|
|
9161
9195
|
def _deserialize(self, params):
|
|
9162
9196
|
self._ZoneId = params.get("ZoneId")
|
|
@@ -9168,6 +9202,7 @@ http://www.example.com/example.txt。参数值当前必填。
|
|
|
9168
9202
|
obj = Header()
|
|
9169
9203
|
obj._deserialize(item)
|
|
9170
9204
|
self._Headers.append(obj)
|
|
9205
|
+
self._PrefetchMediaSegments = params.get("PrefetchMediaSegments")
|
|
9171
9206
|
memeber_set = set(params.keys())
|
|
9172
9207
|
for name, value in vars(self).items():
|
|
9173
9208
|
property_name = name[1:]
|
|
@@ -31972,13 +32007,13 @@ class ModifyOriginParameters(AbstractModel):
|
|
|
31972
32007
|
<li>https:使用 HTTPS 协议;</li>
|
|
31973
32008
|
<li>follow:协议跟随。</li>
|
|
31974
32009
|
:type OriginProtocol: str
|
|
31975
|
-
:param _HTTPOriginPort: HTTP 回源端口,取值范围 1~65535
|
|
32010
|
+
:param _HTTPOriginPort: HTTP 回源端口,取值范围 1~65535。当回源协议 OriginProtocol 为 http 或者 follow 时该参数必填。
|
|
31976
32011
|
:type HTTPOriginPort: int
|
|
31977
|
-
:param _HTTPSOriginPort: HTTPS 回源端口,取值范围 1~65535
|
|
32012
|
+
:param _HTTPSOriginPort: HTTPS 回源端口,取值范围 1~65535。当回源协议 OriginProtocol 为 https 或者 follow 时该参数必填。
|
|
31978
32013
|
:type HTTPSOriginPort: int
|
|
31979
|
-
:param _PrivateAccess:
|
|
32014
|
+
:param _PrivateAccess: 指定是否允许访问私有对象存储源站,当源站类型 OriginType = COS 或 AWSS3 时该参数必填,取值有:
|
|
31980
32015
|
<li>on:使用私有鉴权;</li>
|
|
31981
|
-
<li>off:不使用私有鉴权。</li
|
|
32016
|
+
<li>off:不使用私有鉴权。</li>
|
|
31982
32017
|
:type PrivateAccess: str
|
|
31983
32018
|
:param _PrivateParameters: 私有鉴权使用参数,该参数仅当 OriginType = AWSS3 且 PrivateAccess = on 时会生效。
|
|
31984
32019
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
@@ -32040,7 +32075,7 @@ class ModifyOriginParameters(AbstractModel):
|
|
|
32040
32075
|
|
|
32041
32076
|
@property
|
|
32042
32077
|
def HTTPOriginPort(self):
|
|
32043
|
-
"""HTTP 回源端口,取值范围 1~65535
|
|
32078
|
+
"""HTTP 回源端口,取值范围 1~65535。当回源协议 OriginProtocol 为 http 或者 follow 时该参数必填。
|
|
32044
32079
|
:rtype: int
|
|
32045
32080
|
"""
|
|
32046
32081
|
return self._HTTPOriginPort
|
|
@@ -32051,7 +32086,7 @@ class ModifyOriginParameters(AbstractModel):
|
|
|
32051
32086
|
|
|
32052
32087
|
@property
|
|
32053
32088
|
def HTTPSOriginPort(self):
|
|
32054
|
-
"""HTTPS 回源端口,取值范围 1~65535
|
|
32089
|
+
"""HTTPS 回源端口,取值范围 1~65535。当回源协议 OriginProtocol 为 https 或者 follow 时该参数必填。
|
|
32055
32090
|
:rtype: int
|
|
32056
32091
|
"""
|
|
32057
32092
|
return self._HTTPSOriginPort
|
|
@@ -32062,9 +32097,9 @@ class ModifyOriginParameters(AbstractModel):
|
|
|
32062
32097
|
|
|
32063
32098
|
@property
|
|
32064
32099
|
def PrivateAccess(self):
|
|
32065
|
-
"""
|
|
32100
|
+
"""指定是否允许访问私有对象存储源站,当源站类型 OriginType = COS 或 AWSS3 时该参数必填,取值有:
|
|
32066
32101
|
<li>on:使用私有鉴权;</li>
|
|
32067
|
-
<li>off:不使用私有鉴权。</li
|
|
32102
|
+
<li>off:不使用私有鉴权。</li>
|
|
32068
32103
|
:rtype: str
|
|
32069
32104
|
"""
|
|
32070
32105
|
return self._PrivateAccess
|
|
@@ -34067,6 +34102,8 @@ class OriginDetail(AbstractModel):
|
|
|
34067
34102
|
:param _PrivateParameters: 私有鉴权使用参数,该参数仅当源站类型 PrivateAccess = on 时会生效。
|
|
34068
34103
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
34069
34104
|
:type PrivateParameters: list of PrivateParameter
|
|
34105
|
+
:param _HostHeader: 当前配置的回源 HOST 头。
|
|
34106
|
+
:type HostHeader: str
|
|
34070
34107
|
:param _VodeoSubAppId: MO 子应用 ID
|
|
34071
34108
|
:type VodeoSubAppId: int
|
|
34072
34109
|
:param _VodeoDistributionRange: MO 分发范围,取值有: <li>All:全部</li> <li>Bucket:存储桶</li>
|
|
@@ -34086,6 +34123,7 @@ class OriginDetail(AbstractModel):
|
|
|
34086
34123
|
self._BackOriginGroupName = None
|
|
34087
34124
|
self._PrivateAccess = None
|
|
34088
34125
|
self._PrivateParameters = None
|
|
34126
|
+
self._HostHeader = None
|
|
34089
34127
|
self._VodeoSubAppId = None
|
|
34090
34128
|
self._VodeoDistributionRange = None
|
|
34091
34129
|
self._VodeoBucketId = None
|
|
@@ -34185,6 +34223,17 @@ class OriginDetail(AbstractModel):
|
|
|
34185
34223
|
def PrivateParameters(self, PrivateParameters):
|
|
34186
34224
|
self._PrivateParameters = PrivateParameters
|
|
34187
34225
|
|
|
34226
|
+
@property
|
|
34227
|
+
def HostHeader(self):
|
|
34228
|
+
"""当前配置的回源 HOST 头。
|
|
34229
|
+
:rtype: str
|
|
34230
|
+
"""
|
|
34231
|
+
return self._HostHeader
|
|
34232
|
+
|
|
34233
|
+
@HostHeader.setter
|
|
34234
|
+
def HostHeader(self, HostHeader):
|
|
34235
|
+
self._HostHeader = HostHeader
|
|
34236
|
+
|
|
34188
34237
|
@property
|
|
34189
34238
|
def VodeoSubAppId(self):
|
|
34190
34239
|
warnings.warn("parameter `VodeoSubAppId` is deprecated", DeprecationWarning)
|
|
@@ -34267,6 +34316,7 @@ class OriginDetail(AbstractModel):
|
|
|
34267
34316
|
obj = PrivateParameter()
|
|
34268
34317
|
obj._deserialize(item)
|
|
34269
34318
|
self._PrivateParameters.append(obj)
|
|
34319
|
+
self._HostHeader = params.get("HostHeader")
|
|
34270
34320
|
self._VodeoSubAppId = params.get("VodeoSubAppId")
|
|
34271
34321
|
self._VodeoDistributionRange = params.get("VodeoDistributionRange")
|
|
34272
34322
|
self._VodeoBucketId = params.get("VodeoBucketId")
|
|
@@ -34842,6 +34892,11 @@ class OriginInfo(AbstractModel):
|
|
|
34842
34892
|
:type PrivateAccess: str
|
|
34843
34893
|
:param _PrivateParameters: 私有鉴权使用参数,该参数仅当源站类型 PrivateAccess = on 时会生效。
|
|
34844
34894
|
:type PrivateParameters: list of PrivateParameter
|
|
34895
|
+
:param _HostHeader: 自定义回源 HOST 头,该参数仅当 OriginType=IP_DOMAIN 时生效。
|
|
34896
|
+
如果 OriginType=COS 或 AWS_S3 时,回源 HOST 头将与源站域名保持一致。
|
|
34897
|
+
如果OriginType=ORIGIN_GROUP 或 LB 时,回源 HOST 头遵循源站组内配置,如果没有配置则默认为加速域名。
|
|
34898
|
+
如果 OriginType=VOD 或 SPACE 时,无需配置该头部,按对应的回源域名生效。
|
|
34899
|
+
:type HostHeader: str
|
|
34845
34900
|
:param _VodeoSubAppId: VODEO 子应用 ID。该参数当 OriginType = VODEO 时必填。
|
|
34846
34901
|
:type VodeoSubAppId: int
|
|
34847
34902
|
:param _VodeoDistributionRange: VODEO 分发范围,该参数当 OriginType = VODEO 时必填。取值有:
|
|
@@ -34861,6 +34916,7 @@ class OriginInfo(AbstractModel):
|
|
|
34861
34916
|
self._BackupOrigin = None
|
|
34862
34917
|
self._PrivateAccess = None
|
|
34863
34918
|
self._PrivateParameters = None
|
|
34919
|
+
self._HostHeader = None
|
|
34864
34920
|
self._VodeoSubAppId = None
|
|
34865
34921
|
self._VodeoDistributionRange = None
|
|
34866
34922
|
self._VodeoBucketId = None
|
|
@@ -34939,6 +34995,20 @@ class OriginInfo(AbstractModel):
|
|
|
34939
34995
|
def PrivateParameters(self, PrivateParameters):
|
|
34940
34996
|
self._PrivateParameters = PrivateParameters
|
|
34941
34997
|
|
|
34998
|
+
@property
|
|
34999
|
+
def HostHeader(self):
|
|
35000
|
+
"""自定义回源 HOST 头,该参数仅当 OriginType=IP_DOMAIN 时生效。
|
|
35001
|
+
如果 OriginType=COS 或 AWS_S3 时,回源 HOST 头将与源站域名保持一致。
|
|
35002
|
+
如果OriginType=ORIGIN_GROUP 或 LB 时,回源 HOST 头遵循源站组内配置,如果没有配置则默认为加速域名。
|
|
35003
|
+
如果 OriginType=VOD 或 SPACE 时,无需配置该头部,按对应的回源域名生效。
|
|
35004
|
+
:rtype: str
|
|
35005
|
+
"""
|
|
35006
|
+
return self._HostHeader
|
|
35007
|
+
|
|
35008
|
+
@HostHeader.setter
|
|
35009
|
+
def HostHeader(self, HostHeader):
|
|
35010
|
+
self._HostHeader = HostHeader
|
|
35011
|
+
|
|
34942
35012
|
@property
|
|
34943
35013
|
def VodeoSubAppId(self):
|
|
34944
35014
|
warnings.warn("parameter `VodeoSubAppId` is deprecated", DeprecationWarning)
|
|
@@ -35021,6 +35091,7 @@ class OriginInfo(AbstractModel):
|
|
|
35021
35091
|
obj = PrivateParameter()
|
|
35022
35092
|
obj._deserialize(item)
|
|
35023
35093
|
self._PrivateParameters.append(obj)
|
|
35094
|
+
self._HostHeader = params.get("HostHeader")
|
|
35024
35095
|
self._VodeoSubAppId = params.get("VodeoSubAppId")
|
|
35025
35096
|
self._VodeoDistributionRange = params.get("VodeoDistributionRange")
|
|
35026
35097
|
self._VodeoBucketId = params.get("VodeoBucketId")
|
|
@@ -38934,7 +39005,7 @@ class RuleEngineAction(AbstractModel):
|
|
|
38934
39005
|
<li>ModifyRequestHeader:修改 HTTP 节点请求头;</li>
|
|
38935
39006
|
<li>ResponseSpeedLimit:单连接下载限速;</li>
|
|
38936
39007
|
<li>SetContentIdentifier:设置内容标识符;</li>
|
|
38937
|
-
<li>Vary:Vary
|
|
39008
|
+
<li>Vary:Vary 特性配置。</li>
|
|
38938
39009
|
:type Name: str
|
|
38939
39010
|
:param _CacheParameters: 节点缓存 TTL 配置参数,当 Name 取值为 Cache 时,该参数必填。
|
|
38940
39011
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
@@ -39040,7 +39111,6 @@ class RuleEngineAction(AbstractModel):
|
|
|
39040
39111
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
39041
39112
|
:type SetContentIdentifierParameters: :class:`tencentcloud.teo.v20220901.models.SetContentIdentifierParameters`
|
|
39042
39113
|
:param _VaryParameters: Vary 特性配置参数,当 Name 取值为 Vary 时,该参数必填。
|
|
39043
|
-
该功能灰度中,如需使用,请联系腾讯云客服。
|
|
39044
39114
|
:type VaryParameters: :class:`tencentcloud.teo.v20220901.models.VaryParameters`
|
|
39045
39115
|
"""
|
|
39046
39116
|
self._Name = None
|
|
@@ -39118,7 +39188,7 @@ class RuleEngineAction(AbstractModel):
|
|
|
39118
39188
|
<li>ModifyRequestHeader:修改 HTTP 节点请求头;</li>
|
|
39119
39189
|
<li>ResponseSpeedLimit:单连接下载限速;</li>
|
|
39120
39190
|
<li>SetContentIdentifier:设置内容标识符;</li>
|
|
39121
|
-
<li>Vary:Vary
|
|
39191
|
+
<li>Vary:Vary 特性配置。</li>
|
|
39122
39192
|
:rtype: str
|
|
39123
39193
|
"""
|
|
39124
39194
|
return self._Name
|
|
@@ -39539,7 +39609,6 @@ class RuleEngineAction(AbstractModel):
|
|
|
39539
39609
|
@property
|
|
39540
39610
|
def VaryParameters(self):
|
|
39541
39611
|
"""Vary 特性配置参数,当 Name 取值为 Vary 时,该参数必填。
|
|
39542
|
-
该功能灰度中,如需使用,请联系腾讯云客服。
|
|
39543
39612
|
:rtype: :class:`tencentcloud.teo.v20220901.models.VaryParameters`
|
|
39544
39613
|
"""
|
|
39545
39614
|
return self._VaryParameters
|
|
@@ -43803,7 +43872,6 @@ class VanityNameServersIps(AbstractModel):
|
|
|
43803
43872
|
|
|
43804
43873
|
class VaryParameters(AbstractModel):
|
|
43805
43874
|
"""[Vary 特性](https://cloud.tencent.com/document/product/1552/89301) 配置参数。
|
|
43806
|
-
该功能灰度中,如需使用,请联系腾讯云客服。
|
|
43807
43875
|
|
|
43808
43876
|
"""
|
|
43809
43877
|
|
|
@@ -145,6 +145,7 @@ class TeoClient(AbstractClient):
|
|
|
145
145
|
|
|
146
146
|
def CreateAliasDomain(self, request):
|
|
147
147
|
"""创建别称域名。
|
|
148
|
+
该功能仅企业版套餐支持,并且该功能当前仍在内测中,如需使用,请[联系我们](https://cloud.tencent.com/online-service?from=connect-us)。
|
|
148
149
|
|
|
149
150
|
:param request: Request instance for CreateAliasDomain.
|
|
150
151
|
:type request: :class:`tencentcloud.teo.v20220901.models.CreateAliasDomainRequest`
|
|
@@ -728,6 +729,7 @@ class TeoClient(AbstractClient):
|
|
|
728
729
|
|
|
729
730
|
def DeleteAliasDomain(self, request):
|
|
730
731
|
"""删除别称域名。
|
|
732
|
+
该功能仅企业版套餐支持,并且该功能当前仍在内测中,如需使用,请[联系我们](https://cloud.tencent.com/online-service?from=connect-us)。
|
|
731
733
|
|
|
732
734
|
:param request: Request instance for DeleteAliasDomain.
|
|
733
735
|
:type request: :class:`tencentcloud.teo.v20220901.models.DeleteAliasDomainRequest`
|
|
@@ -1190,6 +1192,7 @@ class TeoClient(AbstractClient):
|
|
|
1190
1192
|
|
|
1191
1193
|
def DescribeAliasDomains(self, request):
|
|
1192
1194
|
"""查询别称域名信息列表。
|
|
1195
|
+
该功能仅企业版套餐支持,并且该功能当前仍在内测中,如需使用,请[联系我们](https://cloud.tencent.com/online-service?from=connect-us)。
|
|
1193
1196
|
|
|
1194
1197
|
:param request: Request instance for DescribeAliasDomains.
|
|
1195
1198
|
:type request: :class:`tencentcloud.teo.v20220901.models.DescribeAliasDomainsRequest`
|
|
@@ -2560,6 +2563,7 @@ class TeoClient(AbstractClient):
|
|
|
2560
2563
|
|
|
2561
2564
|
def ModifyAliasDomain(self, request):
|
|
2562
2565
|
"""修改别称域名。
|
|
2566
|
+
该功能仅企业版套餐支持,并且该功能当前仍在内测中,如需使用,请[联系我们](https://cloud.tencent.com/online-service?from=connect-us)。
|
|
2563
2567
|
|
|
2564
2568
|
:param request: Request instance for ModifyAliasDomain.
|
|
2565
2569
|
:type request: :class:`tencentcloud.teo.v20220901.models.ModifyAliasDomainRequest`
|
|
@@ -2583,6 +2587,7 @@ class TeoClient(AbstractClient):
|
|
|
2583
2587
|
|
|
2584
2588
|
def ModifyAliasDomainStatus(self, request):
|
|
2585
2589
|
"""修改别称域名状态。
|
|
2590
|
+
该功能仅企业版套餐支持,并且该功能当前仍在内测中,如需使用,请[联系我们](https://cloud.tencent.com/online-service?from=connect-us)。
|
|
2586
2591
|
|
|
2587
2592
|
:param request: Request instance for ModifyAliasDomainStatus.
|
|
2588
2593
|
:type request: :class:`tencentcloud.teo.v20220901.models.ModifyAliasDomainStatusRequest`
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1384
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1382
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|