tencentcloud-sdk-python 3.0.1464__py2.py3-none-any.whl → 3.0.1466__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/ai3d/v20250513/ai3d_client.py +2 -2
- tencentcloud/ai3d/v20250513/models.py +2 -2
- tencentcloud/billing/v20180709/models.py +2 -2
- tencentcloud/ccc/v20200210/ccc_client.py +23 -0
- tencentcloud/ccc/v20200210/models.py +184 -0
- tencentcloud/cdn/v20180606/cdn_client.py +0 -74
- tencentcloud/cdn/v20180606/models.py +0 -546
- tencentcloud/cfw/v20190904/models.py +167 -2
- tencentcloud/ckafka/v20190819/models.py +50 -2
- tencentcloud/ctem/v20231128/models.py +441 -0
- tencentcloud/emr/v20190103/models.py +49 -0
- tencentcloud/ess/v20201111/ess_client.py +3 -3
- tencentcloud/ess/v20201111/models.py +7 -7
- tencentcloud/essbasic/v20210526/models.py +2 -2
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +23 -0
- tencentcloud/iotexplorer/v20190423/models.py +165 -0
- tencentcloud/lcic/v20220817/models.py +24 -6
- tencentcloud/lighthouse/v20200324/errorcodes.py +3 -0
- tencentcloud/lighthouse/v20200324/models.py +280 -10
- tencentcloud/lke/v20231130/lke_client.py +0 -46
- tencentcloud/lke/v20231130/models.py +0 -192
- tencentcloud/lkeap/v20240522/lkeap_client.py +5 -2
- tencentcloud/mongodb/v20190725/models.py +76 -48
- tencentcloud/mongodb/v20190725/mongodb_client.py +1 -1
- tencentcloud/mps/v20190612/errorcodes.py +42 -0
- tencentcloud/mps/v20190612/models.py +810 -43
- tencentcloud/mps/v20190612/mps_client.py +92 -0
- tencentcloud/organization/v20210331/models.py +6 -6
- tencentcloud/redis/v20180412/models.py +16 -12
- tencentcloud/redis/v20180412/redis_client.py +2 -2
- tencentcloud/tcss/v20201101/models.py +30 -0
- tencentcloud/teo/v20220901/models.py +15 -0
- tencentcloud/trtc/v20190722/models.py +28 -12
- tencentcloud/tse/v20201207/models.py +76 -0
- tencentcloud/tse/v20201207/tse_client.py +1 -1
- tencentcloud/vpc/v20170312/errorcodes.py +3 -0
- tencentcloud/waf/v20180125/models.py +1176 -101
- tencentcloud/waf/v20180125/waf_client.py +1 -1
- {tencentcloud_sdk_python-3.0.1464.dist-info → tencentcloud_sdk_python-3.0.1466.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1464.dist-info → tencentcloud_sdk_python-3.0.1466.dist-info}/RECORD +44 -44
- {tencentcloud_sdk_python-3.0.1464.dist-info → tencentcloud_sdk_python-3.0.1466.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1464.dist-info → tencentcloud_sdk_python-3.0.1466.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1464.dist-info → tencentcloud_sdk_python-3.0.1466.dist-info}/top_level.txt +0 -0
@@ -1400,6 +1400,8 @@ class CloudNativeAPIGatewayConfig(AbstractModel):
|
|
1400
1400
|
:type NetworkId: str
|
1401
1401
|
:param _IPV6FullChain: 是否为新 ipv6 CLB
|
1402
1402
|
:type IPV6FullChain: bool
|
1403
|
+
:param _CustomizedConfigContent: 负载均衡个性化配置内容
|
1404
|
+
:type CustomizedConfigContent: str
|
1403
1405
|
"""
|
1404
1406
|
self._ConsoleType = None
|
1405
1407
|
self._HttpUrl = None
|
@@ -1423,6 +1425,7 @@ class CloudNativeAPIGatewayConfig(AbstractModel):
|
|
1423
1425
|
self._SlaveZoneName = None
|
1424
1426
|
self._NetworkId = None
|
1425
1427
|
self._IPV6FullChain = None
|
1428
|
+
self._CustomizedConfigContent = None
|
1426
1429
|
|
1427
1430
|
@property
|
1428
1431
|
def ConsoleType(self):
|
@@ -1667,6 +1670,17 @@ class CloudNativeAPIGatewayConfig(AbstractModel):
|
|
1667
1670
|
def IPV6FullChain(self, IPV6FullChain):
|
1668
1671
|
self._IPV6FullChain = IPV6FullChain
|
1669
1672
|
|
1673
|
+
@property
|
1674
|
+
def CustomizedConfigContent(self):
|
1675
|
+
r"""负载均衡个性化配置内容
|
1676
|
+
:rtype: str
|
1677
|
+
"""
|
1678
|
+
return self._CustomizedConfigContent
|
1679
|
+
|
1680
|
+
@CustomizedConfigContent.setter
|
1681
|
+
def CustomizedConfigContent(self, CustomizedConfigContent):
|
1682
|
+
self._CustomizedConfigContent = CustomizedConfigContent
|
1683
|
+
|
1670
1684
|
|
1671
1685
|
def _deserialize(self, params):
|
1672
1686
|
self._ConsoleType = params.get("ConsoleType")
|
@@ -1693,6 +1707,7 @@ class CloudNativeAPIGatewayConfig(AbstractModel):
|
|
1693
1707
|
self._SlaveZoneName = params.get("SlaveZoneName")
|
1694
1708
|
self._NetworkId = params.get("NetworkId")
|
1695
1709
|
self._IPV6FullChain = params.get("IPV6FullChain")
|
1710
|
+
self._CustomizedConfigContent = params.get("CustomizedConfigContent")
|
1696
1711
|
memeber_set = set(params.keys())
|
1697
1712
|
for name, value in vars(self).items():
|
1698
1713
|
property_name = name[1:]
|
@@ -8170,10 +8185,13 @@ class CreateNativeGatewayServiceSourceResponse(AbstractModel):
|
|
8170
8185
|
r"""
|
8171
8186
|
:param _Result: 创建是否成功
|
8172
8187
|
:type Result: bool
|
8188
|
+
:param _SourceID: 服务来源ID
|
8189
|
+
:type SourceID: str
|
8173
8190
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
8174
8191
|
:type RequestId: str
|
8175
8192
|
"""
|
8176
8193
|
self._Result = None
|
8194
|
+
self._SourceID = None
|
8177
8195
|
self._RequestId = None
|
8178
8196
|
|
8179
8197
|
@property
|
@@ -8187,6 +8205,17 @@ class CreateNativeGatewayServiceSourceResponse(AbstractModel):
|
|
8187
8205
|
def Result(self, Result):
|
8188
8206
|
self._Result = Result
|
8189
8207
|
|
8208
|
+
@property
|
8209
|
+
def SourceID(self):
|
8210
|
+
r"""服务来源ID
|
8211
|
+
:rtype: str
|
8212
|
+
"""
|
8213
|
+
return self._SourceID
|
8214
|
+
|
8215
|
+
@SourceID.setter
|
8216
|
+
def SourceID(self, SourceID):
|
8217
|
+
self._SourceID = SourceID
|
8218
|
+
|
8190
8219
|
@property
|
8191
8220
|
def RequestId(self):
|
8192
8221
|
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
@@ -8201,6 +8230,7 @@ class CreateNativeGatewayServiceSourceResponse(AbstractModel):
|
|
8201
8230
|
|
8202
8231
|
def _deserialize(self, params):
|
8203
8232
|
self._Result = params.get("Result")
|
8233
|
+
self._SourceID = params.get("SourceID")
|
8204
8234
|
self._RequestId = params.get("RequestId")
|
8205
8235
|
|
8206
8236
|
|
@@ -16661,6 +16691,8 @@ class DescribeNativeGatewayServiceSourcesRequest(AbstractModel):
|
|
16661
16691
|
:type Limit: int
|
16662
16692
|
:param _Offset: 分页偏移量
|
16663
16693
|
:type Offset: int
|
16694
|
+
:param _SourceID: 服务来源ID
|
16695
|
+
:type SourceID: str
|
16664
16696
|
:param _SourceName: 服务来源实例名称,模糊搜索
|
16665
16697
|
:type SourceName: str
|
16666
16698
|
:param _SourceTypes: 微服务引擎类型:TSE-Nacos|TSE-Consul|TSE-PolarisMesh|Customer-Nacos|Customer-Consul|Customer-PolarisMesh
|
@@ -16673,6 +16705,7 @@ class DescribeNativeGatewayServiceSourcesRequest(AbstractModel):
|
|
16673
16705
|
self._GatewayID = None
|
16674
16706
|
self._Limit = None
|
16675
16707
|
self._Offset = None
|
16708
|
+
self._SourceID = None
|
16676
16709
|
self._SourceName = None
|
16677
16710
|
self._SourceTypes = None
|
16678
16711
|
self._OrderField = None
|
@@ -16711,6 +16744,17 @@ class DescribeNativeGatewayServiceSourcesRequest(AbstractModel):
|
|
16711
16744
|
def Offset(self, Offset):
|
16712
16745
|
self._Offset = Offset
|
16713
16746
|
|
16747
|
+
@property
|
16748
|
+
def SourceID(self):
|
16749
|
+
r"""服务来源ID
|
16750
|
+
:rtype: str
|
16751
|
+
"""
|
16752
|
+
return self._SourceID
|
16753
|
+
|
16754
|
+
@SourceID.setter
|
16755
|
+
def SourceID(self, SourceID):
|
16756
|
+
self._SourceID = SourceID
|
16757
|
+
|
16714
16758
|
@property
|
16715
16759
|
def SourceName(self):
|
16716
16760
|
r"""服务来源实例名称,模糊搜索
|
@@ -16760,6 +16804,7 @@ class DescribeNativeGatewayServiceSourcesRequest(AbstractModel):
|
|
16760
16804
|
self._GatewayID = params.get("GatewayID")
|
16761
16805
|
self._Limit = params.get("Limit")
|
16762
16806
|
self._Offset = params.get("Offset")
|
16807
|
+
self._SourceID = params.get("SourceID")
|
16763
16808
|
self._SourceName = params.get("SourceName")
|
16764
16809
|
self._SourceTypes = params.get("SourceTypes")
|
16765
16810
|
self._OrderField = params.get("OrderField")
|
@@ -26815,6 +26860,16 @@ class ModifyNetworkBasicInfoRequest(AbstractModel):
|
|
26815
26860
|
:type InternetMaxBandwidthOut: int
|
26816
26861
|
:param _Description: 负载均衡描述
|
26817
26862
|
:type Description: str
|
26863
|
+
:param _SlaType: 负载均衡的规格类型,支持:
|
26864
|
+
- 不传为共享型。
|
26865
|
+
- clb.c2.medium:标准型规格
|
26866
|
+
- clb.c3.small:高阶型1规格
|
26867
|
+
- clb.c3.medium:高阶型2规格
|
26868
|
+
- clb.c4.small:超强型1规格
|
26869
|
+
- clb.c4.medium:超强型2规格
|
26870
|
+
- clb.c4.large:超强型3规格
|
26871
|
+
- clb.c4.xlarge:超强型4规格
|
26872
|
+
:type SlaType: str
|
26818
26873
|
"""
|
26819
26874
|
self._GatewayId = None
|
26820
26875
|
self._GroupId = None
|
@@ -26822,6 +26877,7 @@ class ModifyNetworkBasicInfoRequest(AbstractModel):
|
|
26822
26877
|
self._Vip = None
|
26823
26878
|
self._InternetMaxBandwidthOut = None
|
26824
26879
|
self._Description = None
|
26880
|
+
self._SlaType = None
|
26825
26881
|
|
26826
26882
|
@property
|
26827
26883
|
def GatewayId(self):
|
@@ -26892,6 +26948,25 @@ class ModifyNetworkBasicInfoRequest(AbstractModel):
|
|
26892
26948
|
def Description(self, Description):
|
26893
26949
|
self._Description = Description
|
26894
26950
|
|
26951
|
+
@property
|
26952
|
+
def SlaType(self):
|
26953
|
+
r"""负载均衡的规格类型,支持:
|
26954
|
+
- 不传为共享型。
|
26955
|
+
- clb.c2.medium:标准型规格
|
26956
|
+
- clb.c3.small:高阶型1规格
|
26957
|
+
- clb.c3.medium:高阶型2规格
|
26958
|
+
- clb.c4.small:超强型1规格
|
26959
|
+
- clb.c4.medium:超强型2规格
|
26960
|
+
- clb.c4.large:超强型3规格
|
26961
|
+
- clb.c4.xlarge:超强型4规格
|
26962
|
+
:rtype: str
|
26963
|
+
"""
|
26964
|
+
return self._SlaType
|
26965
|
+
|
26966
|
+
@SlaType.setter
|
26967
|
+
def SlaType(self, SlaType):
|
26968
|
+
self._SlaType = SlaType
|
26969
|
+
|
26895
26970
|
|
26896
26971
|
def _deserialize(self, params):
|
26897
26972
|
self._GatewayId = params.get("GatewayId")
|
@@ -26900,6 +26975,7 @@ class ModifyNetworkBasicInfoRequest(AbstractModel):
|
|
26900
26975
|
self._Vip = params.get("Vip")
|
26901
26976
|
self._InternetMaxBandwidthOut = params.get("InternetMaxBandwidthOut")
|
26902
26977
|
self._Description = params.get("Description")
|
26978
|
+
self._SlaType = params.get("SlaType")
|
26903
26979
|
memeber_set = set(params.keys())
|
26904
26980
|
for name, value in vars(self).items():
|
26905
26981
|
property_name = name[1:]
|
@@ -2511,7 +2511,7 @@ class TseClient(AbstractClient):
|
|
2511
2511
|
|
2512
2512
|
|
2513
2513
|
def ModifyNetworkBasicInfo(self, request):
|
2514
|
-
r"""修改云原生API
|
2514
|
+
r"""修改云原生API网关实例网络基本信息,例如带宽以及描述、规格升级,只支持修改客户端公网/内网的信息。
|
2515
2515
|
|
2516
2516
|
:param request: Request instance for ModifyNetworkBasicInfo.
|
2517
2517
|
:type request: :class:`tencentcloud.tse.v20201207.models.ModifyNetworkBasicInfoRequest`
|
@@ -722,6 +722,9 @@ MISSINGPARAMETER = 'MissingParameter'
|
|
722
722
|
# 缺少多个参数错误
|
723
723
|
MISSINGPARAMETER_MULTIMISSINGPARAMETER = 'MissingParameter.MultiMissingParameter'
|
724
724
|
|
725
|
+
# EIP实例开启了删除保护开关。
|
726
|
+
OPERATIONDENIED_ADDRESSDELETIONPROTECTIONENABLED = 'OperationDenied.AddressDeletionProtectionEnabled'
|
727
|
+
|
725
728
|
# 指定公网IP处于隔离状态。
|
726
729
|
OPERATIONDENIED_ADDRESSINARREARS = 'OperationDenied.AddressInArrears'
|
727
730
|
|