tencentcloud-sdk-python-intl-en 3.0.1086__py2.py3-none-any.whl → 3.0.1088__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.
- tencentcloud/__init__.py +1 -1
- tencentcloud/batch/v20170312/errorcodes.py +3 -0
- tencentcloud/batch/v20170312/models.py +119 -45
- tencentcloud/car/v20220110/models.py +2 -2
- tencentcloud/cbs/v20170312/models.py +2 -2
- tencentcloud/cdc/__init__.py +0 -0
- tencentcloud/cdc/v20201214/__init__.py +0 -0
- tencentcloud/cdc/v20201214/cdc_client.py +486 -0
- tencentcloud/cdc/v20201214/errorcodes.py +78 -0
- tencentcloud/cdc/v20201214/models.py +6084 -0
- tencentcloud/ckafka/v20190819/models.py +2 -2
- tencentcloud/cloudaudit/v20190319/errorcodes.py +3 -0
- tencentcloud/cloudaudit/v20190319/models.py +2 -2
- tencentcloud/cls/v20201016/models.py +177 -0
- tencentcloud/cmq/v20190304/models.py +74 -74
- tencentcloud/cvm/v20170312/errorcodes.py +6 -0
- tencentcloud/eb/v20210416/models.py +47 -2
- tencentcloud/ecm/v20190719/models.py +2 -2
- tencentcloud/gme/v20180711/errorcodes.py +1 -1
- tencentcloud/gme/v20180711/models.py +2 -2
- tencentcloud/lighthouse/v20200324/lighthouse_client.py +2 -2
- tencentcloud/lighthouse/v20200324/models.py +2 -2
- tencentcloud/live/v20180801/errorcodes.py +1 -1
- tencentcloud/live/v20180801/models.py +2 -2
- tencentcloud/organization/v20181225/errorcodes.py +16 -4
- tencentcloud/organization/v20181225/models.py +40 -40
- tencentcloud/organization/v20210331/errorcodes.py +96 -0
- tencentcloud/organization/v20210331/models.py +2110 -269
- tencentcloud/organization/v20210331/organization_client.py +417 -3
- tencentcloud/scf/v20180416/errorcodes.py +3 -0
- tencentcloud/scf/v20180416/models.py +2 -2
- tencentcloud/sms/v20210111/errorcodes.py +4 -1
- tencentcloud/tat/v20201028/errorcodes.py +12 -0
- tencentcloud/tat/v20201028/models.py +38 -38
- tencentcloud/tdmq/v20200217/models.py +2 -2
- tencentcloud/tem/v20210701/models.py +2 -2
- tencentcloud/teo/v20220901/errorcodes.py +19 -19
- tencentcloud/teo/v20220901/models.py +92 -20
- tencentcloud/vclm/__init__.py +0 -0
- tencentcloud/vclm/v20240523/__init__.py +0 -0
- tencentcloud/vclm/v20240523/errorcodes.py +126 -0
- tencentcloud/vclm/v20240523/models.py +538 -0
- tencentcloud/vclm/v20240523/vclm_client.py +72 -0
- tencentcloud/vod/v20180717/models.py +128 -11
- tencentcloud/waf/v20180125/errorcodes.py +3 -0
- tencentcloud/waf/v20180125/models.py +1680 -720
- tencentcloud/waf/v20180125/waf_client.py +83 -45
- tencentcloud/wedata/v20210820/models.py +6 -6
- {tencentcloud_sdk_python_intl_en-3.0.1086.dist-info → tencentcloud_sdk_python_intl_en-3.0.1088.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python_intl_en-3.0.1086.dist-info → tencentcloud_sdk_python_intl_en-3.0.1088.dist-info}/RECORD +52 -42
- {tencentcloud_sdk_python_intl_en-3.0.1086.dist-info → tencentcloud_sdk_python_intl_en-3.0.1088.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_intl_en-3.0.1086.dist-info → tencentcloud_sdk_python_intl_en-3.0.1088.dist-info}/top_level.txt +0 -0
|
@@ -22905,18 +22905,22 @@ class CreateVodDomainRequest(AbstractModel):
|
|
|
22905
22905
|
r"""
|
|
22906
22906
|
:param _Domain: Domain name to add to VOD. Note: a wildcard domain name is not supported.
|
|
22907
22907
|
:type Domain: str
|
|
22908
|
+
:param _SubAppId: <b>The VOD [application](https://intl.cloud.tencent.com/document/product/266/14574) ID. For customers who activate VOD service from December 25, 2023, if they want to access resources in a VOD application (whether it's the default application or a newly created one), they must fill in this field with the application ID.</b>
|
|
22909
|
+
:type SubAppId: int
|
|
22908
22910
|
:param _AccelerateArea: Region to enable acceleration. Valid values:
|
|
22909
22911
|
<li>`Chinese Mainland`</li>
|
|
22910
22912
|
<li>`Outside Chinese Mainland`</li>
|
|
22911
22913
|
<li>`Global`</li>
|
|
22912
22914
|
If `AccelerateArea` is not specified, VOD will enable acceleration in or outside Chinese mainland based on the regional information a user has configured with Tencent Cloud.
|
|
22913
22915
|
:type AccelerateArea: str
|
|
22914
|
-
:param
|
|
22915
|
-
|
|
22916
|
+
:param _Type: Domain type. Valid values:
|
|
22917
|
+
<li>`VOD`: Domain name distributed using the VOD product;</li> <li>`EdgeOne`: Domain name distributed using the EdgeOne product.</li>default value: VOD.
|
|
22918
|
+
:type Type: str
|
|
22916
22919
|
"""
|
|
22917
22920
|
self._Domain = None
|
|
22918
|
-
self._AccelerateArea = None
|
|
22919
22921
|
self._SubAppId = None
|
|
22922
|
+
self._AccelerateArea = None
|
|
22923
|
+
self._Type = None
|
|
22920
22924
|
|
|
22921
22925
|
@property
|
|
22922
22926
|
def Domain(self):
|
|
@@ -22929,6 +22933,17 @@ If `AccelerateArea` is not specified, VOD will enable acceleration in or outside
|
|
|
22929
22933
|
def Domain(self, Domain):
|
|
22930
22934
|
self._Domain = Domain
|
|
22931
22935
|
|
|
22936
|
+
@property
|
|
22937
|
+
def SubAppId(self):
|
|
22938
|
+
"""<b>The VOD [application](https://intl.cloud.tencent.com/document/product/266/14574) ID. For customers who activate VOD service from December 25, 2023, if they want to access resources in a VOD application (whether it's the default application or a newly created one), they must fill in this field with the application ID.</b>
|
|
22939
|
+
:rtype: int
|
|
22940
|
+
"""
|
|
22941
|
+
return self._SubAppId
|
|
22942
|
+
|
|
22943
|
+
@SubAppId.setter
|
|
22944
|
+
def SubAppId(self, SubAppId):
|
|
22945
|
+
self._SubAppId = SubAppId
|
|
22946
|
+
|
|
22932
22947
|
@property
|
|
22933
22948
|
def AccelerateArea(self):
|
|
22934
22949
|
"""Region to enable acceleration. Valid values:
|
|
@@ -22945,21 +22960,23 @@ If `AccelerateArea` is not specified, VOD will enable acceleration in or outside
|
|
|
22945
22960
|
self._AccelerateArea = AccelerateArea
|
|
22946
22961
|
|
|
22947
22962
|
@property
|
|
22948
|
-
def
|
|
22949
|
-
"""
|
|
22950
|
-
|
|
22963
|
+
def Type(self):
|
|
22964
|
+
"""Domain type. Valid values:
|
|
22965
|
+
<li>`VOD`: Domain name distributed using the VOD product;</li> <li>`EdgeOne`: Domain name distributed using the EdgeOne product.</li>default value: VOD.
|
|
22966
|
+
:rtype: str
|
|
22951
22967
|
"""
|
|
22952
|
-
return self.
|
|
22968
|
+
return self._Type
|
|
22953
22969
|
|
|
22954
|
-
@
|
|
22955
|
-
def
|
|
22956
|
-
self.
|
|
22970
|
+
@Type.setter
|
|
22971
|
+
def Type(self, Type):
|
|
22972
|
+
self._Type = Type
|
|
22957
22973
|
|
|
22958
22974
|
|
|
22959
22975
|
def _deserialize(self, params):
|
|
22960
22976
|
self._Domain = params.get("Domain")
|
|
22961
|
-
self._AccelerateArea = params.get("AccelerateArea")
|
|
22962
22977
|
self._SubAppId = params.get("SubAppId")
|
|
22978
|
+
self._AccelerateArea = params.get("AccelerateArea")
|
|
22979
|
+
self._Type = params.get("Type")
|
|
22963
22980
|
memeber_set = set(params.keys())
|
|
22964
22981
|
for name, value in vars(self).items():
|
|
22965
22982
|
property_name = name[1:]
|
|
@@ -33410,6 +33427,11 @@ Note: this field may return `null`, indicating that no valid value is obtained.
|
|
|
33410
33427
|
:param _QUICConfig: The QUIC configuration for the domain.
|
|
33411
33428
|
Note: This field may return null, indicating that no valid values can be obtained.
|
|
33412
33429
|
:type QUICConfig: :class:`tencentcloud.vod.v20180717.models.DomainQUICConfig`
|
|
33430
|
+
:param _IPFilterPolicy:
|
|
33431
|
+
:type IPFilterPolicy: :class:`tencentcloud.vod.v20180717.models.IPFilterPolicy`
|
|
33432
|
+
:param _Type: Domain type. Valid values:
|
|
33433
|
+
<li>`VOD`: Domain name distributed using the VOD product;</li> <li>`EdgeOne`: Domain name distributed using the EdgeOne product.</li>
|
|
33434
|
+
:type Type: str
|
|
33413
33435
|
"""
|
|
33414
33436
|
self._Domain = None
|
|
33415
33437
|
self._AccelerateAreaInfos = None
|
|
@@ -33419,6 +33441,8 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
33419
33441
|
self._RefererAuthPolicy = None
|
|
33420
33442
|
self._CreateTime = None
|
|
33421
33443
|
self._QUICConfig = None
|
|
33444
|
+
self._IPFilterPolicy = None
|
|
33445
|
+
self._Type = None
|
|
33422
33446
|
|
|
33423
33447
|
@property
|
|
33424
33448
|
def Domain(self):
|
|
@@ -33517,6 +33541,29 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
33517
33541
|
def QUICConfig(self, QUICConfig):
|
|
33518
33542
|
self._QUICConfig = QUICConfig
|
|
33519
33543
|
|
|
33544
|
+
@property
|
|
33545
|
+
def IPFilterPolicy(self):
|
|
33546
|
+
"""
|
|
33547
|
+
:rtype: :class:`tencentcloud.vod.v20180717.models.IPFilterPolicy`
|
|
33548
|
+
"""
|
|
33549
|
+
return self._IPFilterPolicy
|
|
33550
|
+
|
|
33551
|
+
@IPFilterPolicy.setter
|
|
33552
|
+
def IPFilterPolicy(self, IPFilterPolicy):
|
|
33553
|
+
self._IPFilterPolicy = IPFilterPolicy
|
|
33554
|
+
|
|
33555
|
+
@property
|
|
33556
|
+
def Type(self):
|
|
33557
|
+
"""Domain type. Valid values:
|
|
33558
|
+
<li>`VOD`: Domain name distributed using the VOD product;</li> <li>`EdgeOne`: Domain name distributed using the EdgeOne product.</li>
|
|
33559
|
+
:rtype: str
|
|
33560
|
+
"""
|
|
33561
|
+
return self._Type
|
|
33562
|
+
|
|
33563
|
+
@Type.setter
|
|
33564
|
+
def Type(self, Type):
|
|
33565
|
+
self._Type = Type
|
|
33566
|
+
|
|
33520
33567
|
|
|
33521
33568
|
def _deserialize(self, params):
|
|
33522
33569
|
self._Domain = params.get("Domain")
|
|
@@ -33540,6 +33587,10 @@ Note: This field may return null, indicating that no valid values can be obtaine
|
|
|
33540
33587
|
if params.get("QUICConfig") is not None:
|
|
33541
33588
|
self._QUICConfig = DomainQUICConfig()
|
|
33542
33589
|
self._QUICConfig._deserialize(params.get("QUICConfig"))
|
|
33590
|
+
if params.get("IPFilterPolicy") is not None:
|
|
33591
|
+
self._IPFilterPolicy = IPFilterPolicy()
|
|
33592
|
+
self._IPFilterPolicy._deserialize(params.get("IPFilterPolicy"))
|
|
33593
|
+
self._Type = params.get("Type")
|
|
33543
33594
|
memeber_set = set(params.keys())
|
|
33544
33595
|
for name, value in vars(self).items():
|
|
33545
33596
|
property_name = name[1:]
|
|
@@ -39036,6 +39087,72 @@ class HwPrivateAccess(AbstractModel):
|
|
|
39036
39087
|
|
|
39037
39088
|
|
|
39038
39089
|
|
|
39090
|
+
class IPFilterPolicy(AbstractModel):
|
|
39091
|
+
"""
|
|
39092
|
+
|
|
39093
|
+
"""
|
|
39094
|
+
|
|
39095
|
+
def __init__(self):
|
|
39096
|
+
r"""
|
|
39097
|
+
:param _Status:
|
|
39098
|
+
:type Status: str
|
|
39099
|
+
:param _FilterType:
|
|
39100
|
+
:type FilterType: str
|
|
39101
|
+
:param _IPList:
|
|
39102
|
+
:type IPList: list of str
|
|
39103
|
+
"""
|
|
39104
|
+
self._Status = None
|
|
39105
|
+
self._FilterType = None
|
|
39106
|
+
self._IPList = None
|
|
39107
|
+
|
|
39108
|
+
@property
|
|
39109
|
+
def Status(self):
|
|
39110
|
+
"""
|
|
39111
|
+
:rtype: str
|
|
39112
|
+
"""
|
|
39113
|
+
return self._Status
|
|
39114
|
+
|
|
39115
|
+
@Status.setter
|
|
39116
|
+
def Status(self, Status):
|
|
39117
|
+
self._Status = Status
|
|
39118
|
+
|
|
39119
|
+
@property
|
|
39120
|
+
def FilterType(self):
|
|
39121
|
+
"""
|
|
39122
|
+
:rtype: str
|
|
39123
|
+
"""
|
|
39124
|
+
return self._FilterType
|
|
39125
|
+
|
|
39126
|
+
@FilterType.setter
|
|
39127
|
+
def FilterType(self, FilterType):
|
|
39128
|
+
self._FilterType = FilterType
|
|
39129
|
+
|
|
39130
|
+
@property
|
|
39131
|
+
def IPList(self):
|
|
39132
|
+
"""
|
|
39133
|
+
:rtype: list of str
|
|
39134
|
+
"""
|
|
39135
|
+
return self._IPList
|
|
39136
|
+
|
|
39137
|
+
@IPList.setter
|
|
39138
|
+
def IPList(self, IPList):
|
|
39139
|
+
self._IPList = IPList
|
|
39140
|
+
|
|
39141
|
+
|
|
39142
|
+
def _deserialize(self, params):
|
|
39143
|
+
self._Status = params.get("Status")
|
|
39144
|
+
self._FilterType = params.get("FilterType")
|
|
39145
|
+
self._IPList = params.get("IPList")
|
|
39146
|
+
memeber_set = set(params.keys())
|
|
39147
|
+
for name, value in vars(self).items():
|
|
39148
|
+
property_name = name[1:]
|
|
39149
|
+
if property_name in memeber_set:
|
|
39150
|
+
memeber_set.remove(property_name)
|
|
39151
|
+
if len(memeber_set) > 0:
|
|
39152
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
39153
|
+
|
|
39154
|
+
|
|
39155
|
+
|
|
39039
39156
|
class ImageBlur(AbstractModel):
|
|
39040
39157
|
"""Image blurring parameters.
|
|
39041
39158
|
|
|
@@ -26,6 +26,9 @@ DRYRUNOPERATION = 'DryRunOperation'
|
|
|
26
26
|
# Operation failed.
|
|
27
27
|
FAILEDOPERATION = 'FailedOperation'
|
|
28
28
|
|
|
29
|
+
# CKafka internal error.
|
|
30
|
+
FAILEDOPERATION_CKAFKAINTERNALERROR = 'FailedOperation.CKafkaInternalError'
|
|
31
|
+
|
|
29
32
|
# Failed to call the CLS API.
|
|
30
33
|
FAILEDOPERATION_CLSDBOPERATIONFAILED = 'FailedOperation.CLSDBOperationFailed'
|
|
31
34
|
|