tencentcloud-sdk-python 3.0.1468__py2.py3-none-any.whl → 3.0.1470__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/models.py +40 -2
- tencentcloud/apm/v20210622/models.py +2 -2
- tencentcloud/ccc/v20200210/models.py +45 -0
- tencentcloud/cdb/v20170320/cdb_client.py +23 -0
- tencentcloud/cdb/v20170320/errorcodes.py +3 -0
- tencentcloud/cdb/v20170320/models.py +128 -19
- tencentcloud/cdwdoris/v20211228/models.py +52 -12
- tencentcloud/cdwpg/v20201230/models.py +15 -0
- tencentcloud/ckafka/v20190819/models.py +90 -0
- tencentcloud/cls/v20201016/models.py +6 -6
- tencentcloud/dbbrain/v20191016/models.py +116 -66
- tencentcloud/dbbrain/v20210527/dbbrain_client.py +23 -0
- tencentcloud/dbbrain/v20210527/models.py +619 -230
- tencentcloud/dts/v20180330/dts_client.py +1 -1
- tencentcloud/dts/v20180330/models.py +8 -4
- tencentcloud/dts/v20211206/dts_client.py +6 -5
- tencentcloud/dts/v20211206/models.py +136 -94
- tencentcloud/ess/v20201111/models.py +213 -2
- tencentcloud/essbasic/v20210526/models.py +203 -0
- tencentcloud/hai/v20230812/errorcodes.py +3 -0
- tencentcloud/ioa/v20220601/models.py +15 -0
- tencentcloud/lcic/v20220817/models.py +2 -2
- tencentcloud/lke/v20231130/lke_client.py +1 -1
- tencentcloud/lke/v20231130/models.py +379 -101
- tencentcloud/lkeap/v20240522/models.py +2 -2
- tencentcloud/mongodb/v20190725/models.py +979 -508
- tencentcloud/mongodb/v20190725/mongodb_client.py +8 -8
- tencentcloud/monitor/v20180724/errorcodes.py +6 -0
- tencentcloud/mps/v20190612/models.py +63 -4
- tencentcloud/ocr/v20181119/errorcodes.py +3 -0
- tencentcloud/postgres/v20170312/models.py +33 -16
- tencentcloud/redis/v20180412/models.py +24 -16
- tencentcloud/rum/v20210622/models.py +2 -2
- tencentcloud/teo/v20220901/models.py +637 -0
- tencentcloud/teo/v20220901/teo_client.py +69 -0
- tencentcloud/tke/v20180525/errorcodes.py +3 -0
- tencentcloud/tke/v20180525/models.py +26 -8
- tencentcloud/tsf/v20180326/errorcodes.py +3 -3
- tencentcloud/waf/v20180125/models.py +30 -0
- {tencentcloud_sdk_python-3.0.1468.dist-info → tencentcloud_sdk_python-3.0.1470.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1468.dist-info → tencentcloud_sdk_python-3.0.1470.dist-info}/RECORD +45 -45
- {tencentcloud_sdk_python-3.0.1468.dist-info → tencentcloud_sdk_python-3.0.1470.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1468.dist-info → tencentcloud_sdk_python-3.0.1470.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1468.dist-info → tencentcloud_sdk_python-3.0.1470.dist-info}/top_level.txt +0 -0
@@ -1007,11 +1007,14 @@ class DescribeAccountsResponse(AbstractModel):
|
|
1007
1007
|
:type TotalCount: int
|
1008
1008
|
:param _Accounts: 账号数组
|
1009
1009
|
:type Accounts: list of AccountInfo
|
1010
|
+
:param _ErrorMsg: error:...
|
1011
|
+
:type ErrorMsg: str
|
1010
1012
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1011
1013
|
:type RequestId: str
|
1012
1014
|
"""
|
1013
1015
|
self._TotalCount = None
|
1014
1016
|
self._Accounts = None
|
1017
|
+
self._ErrorMsg = None
|
1015
1018
|
self._RequestId = None
|
1016
1019
|
|
1017
1020
|
@property
|
@@ -1036,6 +1039,17 @@ class DescribeAccountsResponse(AbstractModel):
|
|
1036
1039
|
def Accounts(self, Accounts):
|
1037
1040
|
self._Accounts = Accounts
|
1038
1041
|
|
1042
|
+
@property
|
1043
|
+
def ErrorMsg(self):
|
1044
|
+
r"""error:...
|
1045
|
+
:rtype: str
|
1046
|
+
"""
|
1047
|
+
return self._ErrorMsg
|
1048
|
+
|
1049
|
+
@ErrorMsg.setter
|
1050
|
+
def ErrorMsg(self, ErrorMsg):
|
1051
|
+
self._ErrorMsg = ErrorMsg
|
1052
|
+
|
1039
1053
|
@property
|
1040
1054
|
def RequestId(self):
|
1041
1055
|
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
@@ -1056,6 +1070,7 @@ class DescribeAccountsResponse(AbstractModel):
|
|
1056
1070
|
obj = AccountInfo()
|
1057
1071
|
obj._deserialize(item)
|
1058
1072
|
self._Accounts.append(obj)
|
1073
|
+
self._ErrorMsg = params.get("ErrorMsg")
|
1059
1074
|
self._RequestId = params.get("RequestId")
|
1060
1075
|
|
1061
1076
|
|
@@ -22098,12 +22098,30 @@ class KafkaConnectParam(AbstractModel):
|
|
22098
22098
|
:type BrokerAddress: str
|
22099
22099
|
:param _Region: CKafka连接源的实例资源地域, 跨地域时必填
|
22100
22100
|
:type Region: str
|
22101
|
+
:param _NetworkType: 网络类型:PUBLIC公网;VPC
|
22102
|
+
:type NetworkType: str
|
22103
|
+
:param _UniqVpcId: vpcId,NetworkType=VPC时必传
|
22104
|
+
:type UniqVpcId: str
|
22105
|
+
:param _ServiceVip: vip,NetworkType=VPC时必传
|
22106
|
+
:type ServiceVip: str
|
22107
|
+
:param _Port: 端口,NetworkType=VPC时必传
|
22108
|
+
:type Port: int
|
22109
|
+
:param _CrossNetResourceUniqueId: 跨云同步下需要客户传递唯一Id标志一组资源
|
22110
|
+
:type CrossNetResourceUniqueId: str
|
22111
|
+
:param _CrossNetVpcSubNetId: 跨云子网ID
|
22112
|
+
:type CrossNetVpcSubNetId: str
|
22101
22113
|
"""
|
22102
22114
|
self._Resource = None
|
22103
22115
|
self._SelfBuilt = None
|
22104
22116
|
self._IsUpdate = None
|
22105
22117
|
self._BrokerAddress = None
|
22106
22118
|
self._Region = None
|
22119
|
+
self._NetworkType = None
|
22120
|
+
self._UniqVpcId = None
|
22121
|
+
self._ServiceVip = None
|
22122
|
+
self._Port = None
|
22123
|
+
self._CrossNetResourceUniqueId = None
|
22124
|
+
self._CrossNetVpcSubNetId = None
|
22107
22125
|
|
22108
22126
|
@property
|
22109
22127
|
def Resource(self):
|
@@ -22161,6 +22179,72 @@ class KafkaConnectParam(AbstractModel):
|
|
22161
22179
|
def Region(self, Region):
|
22162
22180
|
self._Region = Region
|
22163
22181
|
|
22182
|
+
@property
|
22183
|
+
def NetworkType(self):
|
22184
|
+
r"""网络类型:PUBLIC公网;VPC
|
22185
|
+
:rtype: str
|
22186
|
+
"""
|
22187
|
+
return self._NetworkType
|
22188
|
+
|
22189
|
+
@NetworkType.setter
|
22190
|
+
def NetworkType(self, NetworkType):
|
22191
|
+
self._NetworkType = NetworkType
|
22192
|
+
|
22193
|
+
@property
|
22194
|
+
def UniqVpcId(self):
|
22195
|
+
r"""vpcId,NetworkType=VPC时必传
|
22196
|
+
:rtype: str
|
22197
|
+
"""
|
22198
|
+
return self._UniqVpcId
|
22199
|
+
|
22200
|
+
@UniqVpcId.setter
|
22201
|
+
def UniqVpcId(self, UniqVpcId):
|
22202
|
+
self._UniqVpcId = UniqVpcId
|
22203
|
+
|
22204
|
+
@property
|
22205
|
+
def ServiceVip(self):
|
22206
|
+
r"""vip,NetworkType=VPC时必传
|
22207
|
+
:rtype: str
|
22208
|
+
"""
|
22209
|
+
return self._ServiceVip
|
22210
|
+
|
22211
|
+
@ServiceVip.setter
|
22212
|
+
def ServiceVip(self, ServiceVip):
|
22213
|
+
self._ServiceVip = ServiceVip
|
22214
|
+
|
22215
|
+
@property
|
22216
|
+
def Port(self):
|
22217
|
+
r"""端口,NetworkType=VPC时必传
|
22218
|
+
:rtype: int
|
22219
|
+
"""
|
22220
|
+
return self._Port
|
22221
|
+
|
22222
|
+
@Port.setter
|
22223
|
+
def Port(self, Port):
|
22224
|
+
self._Port = Port
|
22225
|
+
|
22226
|
+
@property
|
22227
|
+
def CrossNetResourceUniqueId(self):
|
22228
|
+
r"""跨云同步下需要客户传递唯一Id标志一组资源
|
22229
|
+
:rtype: str
|
22230
|
+
"""
|
22231
|
+
return self._CrossNetResourceUniqueId
|
22232
|
+
|
22233
|
+
@CrossNetResourceUniqueId.setter
|
22234
|
+
def CrossNetResourceUniqueId(self, CrossNetResourceUniqueId):
|
22235
|
+
self._CrossNetResourceUniqueId = CrossNetResourceUniqueId
|
22236
|
+
|
22237
|
+
@property
|
22238
|
+
def CrossNetVpcSubNetId(self):
|
22239
|
+
r"""跨云子网ID
|
22240
|
+
:rtype: str
|
22241
|
+
"""
|
22242
|
+
return self._CrossNetVpcSubNetId
|
22243
|
+
|
22244
|
+
@CrossNetVpcSubNetId.setter
|
22245
|
+
def CrossNetVpcSubNetId(self, CrossNetVpcSubNetId):
|
22246
|
+
self._CrossNetVpcSubNetId = CrossNetVpcSubNetId
|
22247
|
+
|
22164
22248
|
|
22165
22249
|
def _deserialize(self, params):
|
22166
22250
|
self._Resource = params.get("Resource")
|
@@ -22168,6 +22252,12 @@ class KafkaConnectParam(AbstractModel):
|
|
22168
22252
|
self._IsUpdate = params.get("IsUpdate")
|
22169
22253
|
self._BrokerAddress = params.get("BrokerAddress")
|
22170
22254
|
self._Region = params.get("Region")
|
22255
|
+
self._NetworkType = params.get("NetworkType")
|
22256
|
+
self._UniqVpcId = params.get("UniqVpcId")
|
22257
|
+
self._ServiceVip = params.get("ServiceVip")
|
22258
|
+
self._Port = params.get("Port")
|
22259
|
+
self._CrossNetResourceUniqueId = params.get("CrossNetResourceUniqueId")
|
22260
|
+
self._CrossNetVpcSubNetId = params.get("CrossNetVpcSubNetId")
|
22171
22261
|
memeber_set = set(params.keys())
|
22172
22262
|
for name, value in vars(self).items():
|
22173
22263
|
property_name = name[1:]
|
@@ -6096,7 +6096,7 @@ class CreateCloudProductLogCollectionRequest(AbstractModel):
|
|
6096
6096
|
- DCDB所有日志类型:gz
|
6097
6097
|
- MariaDB所有日志类型:gz
|
6098
6098
|
- PostgreSQL所有日志类型:gz
|
6099
|
-
- BH所有日志类型:overseas-polaris(
|
6099
|
+
- BH所有日志类型:overseas-polaris(中国香港地区和其他)/fsi-polaris(金融区)/general-polaris(普通区)/intl-sg-prod(国际站)
|
6100
6100
|
- APIS所有日志类型:gz
|
6101
6101
|
:type CloudProductRegion: str
|
6102
6102
|
:param _ClsRegion: CLS目标地域
|
@@ -6173,7 +6173,7 @@ class CreateCloudProductLogCollectionRequest(AbstractModel):
|
|
6173
6173
|
- DCDB所有日志类型:gz
|
6174
6174
|
- MariaDB所有日志类型:gz
|
6175
6175
|
- PostgreSQL所有日志类型:gz
|
6176
|
-
- BH所有日志类型:overseas-polaris(
|
6176
|
+
- BH所有日志类型:overseas-polaris(中国香港地区和其他)/fsi-polaris(金融区)/general-polaris(普通区)/intl-sg-prod(国际站)
|
6177
6177
|
- APIS所有日志类型:gz
|
6178
6178
|
:rtype: str
|
6179
6179
|
"""
|
@@ -11575,7 +11575,7 @@ class DeleteCloudProductLogCollectionRequest(AbstractModel):
|
|
11575
11575
|
- DCDB所有日志类型:gz
|
11576
11576
|
- MariaDB所有日志类型:gz
|
11577
11577
|
- PostgreSQL所有日志类型:gz
|
11578
|
-
- BH所有日志类型:overseas-polaris(
|
11578
|
+
- BH所有日志类型:overseas-polaris(中国香港地区和其他)/fsi-polaris(金融区)/general-polaris(普通区)/intl-sg-prod(国际站)
|
11579
11579
|
- APIS所有日志类型:gz
|
11580
11580
|
:type CloudProductRegion: str
|
11581
11581
|
"""
|
@@ -11630,7 +11630,7 @@ class DeleteCloudProductLogCollectionRequest(AbstractModel):
|
|
11630
11630
|
- DCDB所有日志类型:gz
|
11631
11631
|
- MariaDB所有日志类型:gz
|
11632
11632
|
- PostgreSQL所有日志类型:gz
|
11633
|
-
- BH所有日志类型:overseas-polaris(
|
11633
|
+
- BH所有日志类型:overseas-polaris(中国香港地区和其他)/fsi-polaris(金融区)/general-polaris(普通区)/intl-sg-prod(国际站)
|
11634
11634
|
- APIS所有日志类型:gz
|
11635
11635
|
:rtype: str
|
11636
11636
|
"""
|
@@ -23706,7 +23706,7 @@ class ModifyCloudProductLogCollectionRequest(AbstractModel):
|
|
23706
23706
|
- DCDB所有日志类型:gz
|
23707
23707
|
- MariaDB所有日志类型:gz
|
23708
23708
|
- PostgreSQL所有日志类型:gz
|
23709
|
-
- BH所有日志类型:overseas-polaris(
|
23709
|
+
- BH所有日志类型:overseas-polaris(中国香港地区和其他)/fsi-polaris(金融区)/general-polaris(普通区)/intl-sg-prod(国际站)
|
23710
23710
|
- APIS所有日志类型:gz
|
23711
23711
|
:type CloudProductRegion: str
|
23712
23712
|
:param _Extend: 日志配置拓展信息, 一般用于存储额外的日志投递配置
|
@@ -23764,7 +23764,7 @@ class ModifyCloudProductLogCollectionRequest(AbstractModel):
|
|
23764
23764
|
- DCDB所有日志类型:gz
|
23765
23765
|
- MariaDB所有日志类型:gz
|
23766
23766
|
- PostgreSQL所有日志类型:gz
|
23767
|
-
- BH所有日志类型:overseas-polaris(
|
23767
|
+
- BH所有日志类型:overseas-polaris(中国香港地区和其他)/fsi-polaris(金融区)/general-polaris(普通区)/intl-sg-prod(国际站)
|
23768
23768
|
- APIS所有日志类型:gz
|
23769
23769
|
:rtype: str
|
23770
23770
|
"""
|