tencentcloud-sdk-python 3.0.1295__py2.py3-none-any.whl → 3.0.1297__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/cdb/v20170320/cdb_client.py +23 -0
- tencentcloud/cdb/v20170320/models.py +124 -0
- tencentcloud/dbbrain/v20210527/dbbrain_client.py +23 -0
- tencentcloud/dbbrain/v20210527/models.py +255 -0
- tencentcloud/essbasic/v20210526/essbasic_client.py +3 -3
- tencentcloud/hunyuan/v20230901/models.py +2 -2
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +92 -0
- tencentcloud/iotexplorer/v20190423/models.py +288 -2
- tencentcloud/lighthouse/v20200324/models.py +2 -2
- tencentcloud/lke/v20231130/models.py +45 -0
- tencentcloud/lkeap/__init__.py +0 -0
- tencentcloud/lkeap/v20240522/__init__.py +0 -0
- tencentcloud/lkeap/v20240522/errorcodes.py +66 -0
- tencentcloud/lkeap/v20240522/lkeap_client.py +573 -0
- tencentcloud/lkeap/v20240522/models.py +3622 -0
- tencentcloud/monitor/v20180724/models.py +141 -0
- tencentcloud/ocr/v20181119/errorcodes.py +6 -0
- tencentcloud/ocr/v20181119/models.py +328 -0
- tencentcloud/ocr/v20181119/ocr_client.py +25 -0
- tencentcloud/sqlserver/v20180328/models.py +76 -4
- tencentcloud/tcb/v20180608/models.py +1 -1
- tencentcloud/teo/v20220901/models.py +20 -14
- tencentcloud/tke/v20180525/errorcodes.py +3 -0
- tencentcloud/tke/v20180525/models.py +55 -4
- tencentcloud/trocket/v20230308/models.py +166 -0
- tencentcloud/trocket/v20230308/trocket_client.py +25 -0
- tencentcloud/vclm/v20240523/models.py +6 -4
- tencentcloud/vpc/v20170312/models.py +26 -26
- tencentcloud/vpc/v20170312/vpc_client.py +2 -2
- tencentcloud/waf/v20180125/models.py +1 -1
- tencentcloud/wedata/v20210820/models.py +71 -2
- {tencentcloud_sdk_python-3.0.1295.dist-info → tencentcloud_sdk_python-3.0.1297.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1295.dist-info → tencentcloud_sdk_python-3.0.1297.dist-info}/RECORD +37 -32
- {tencentcloud_sdk_python-3.0.1295.dist-info → tencentcloud_sdk_python-3.0.1297.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1295.dist-info → tencentcloud_sdk_python-3.0.1297.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1295.dist-info → tencentcloud_sdk_python-3.0.1297.dist-info}/top_level.txt +0 -0
@@ -12009,10 +12009,14 @@ class DescribeDBInstancesAttributeResponse(AbstractModel):
|
|
12009
12009
|
:type TDEConfig: :class:`tencentcloud.sqlserver.v20180328.models.TDEConfigAttribute`
|
12010
12010
|
:param _SSLConfig: SSL加密
|
12011
12011
|
:type SSLConfig: :class:`tencentcloud.sqlserver.v20180328.models.SSLConfig`
|
12012
|
-
:param _DrReadableInfo:
|
12012
|
+
:param _DrReadableInfo: 双节点备机只读信息
|
12013
12013
|
:type DrReadableInfo: :class:`tencentcloud.sqlserver.v20180328.models.DrReadableInfo`
|
12014
12014
|
:param _OldVipList: 等待回收的IP列表
|
12015
12015
|
:type OldVipList: list of OldVip
|
12016
|
+
:param _XEventStatus: 操作日志采集状态,enable-采集中,disable-不可用,renew_doing-配置开启或关闭中
|
12017
|
+
:type XEventStatus: str
|
12018
|
+
:param _MultiDrReadableInfo: 多节点备机只读信息
|
12019
|
+
:type MultiDrReadableInfo: list of DrReadableInfo
|
12016
12020
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
12017
12021
|
:type RequestId: str
|
12018
12022
|
"""
|
@@ -12028,6 +12032,8 @@ class DescribeDBInstancesAttributeResponse(AbstractModel):
|
|
12028
12032
|
self._SSLConfig = None
|
12029
12033
|
self._DrReadableInfo = None
|
12030
12034
|
self._OldVipList = None
|
12035
|
+
self._XEventStatus = None
|
12036
|
+
self._MultiDrReadableInfo = None
|
12031
12037
|
self._RequestId = None
|
12032
12038
|
|
12033
12039
|
@property
|
@@ -12142,7 +12148,7 @@ class DescribeDBInstancesAttributeResponse(AbstractModel):
|
|
12142
12148
|
|
12143
12149
|
@property
|
12144
12150
|
def DrReadableInfo(self):
|
12145
|
-
"""
|
12151
|
+
"""双节点备机只读信息
|
12146
12152
|
:rtype: :class:`tencentcloud.sqlserver.v20180328.models.DrReadableInfo`
|
12147
12153
|
"""
|
12148
12154
|
return self._DrReadableInfo
|
@@ -12162,6 +12168,28 @@ class DescribeDBInstancesAttributeResponse(AbstractModel):
|
|
12162
12168
|
def OldVipList(self, OldVipList):
|
12163
12169
|
self._OldVipList = OldVipList
|
12164
12170
|
|
12171
|
+
@property
|
12172
|
+
def XEventStatus(self):
|
12173
|
+
"""操作日志采集状态,enable-采集中,disable-不可用,renew_doing-配置开启或关闭中
|
12174
|
+
:rtype: str
|
12175
|
+
"""
|
12176
|
+
return self._XEventStatus
|
12177
|
+
|
12178
|
+
@XEventStatus.setter
|
12179
|
+
def XEventStatus(self, XEventStatus):
|
12180
|
+
self._XEventStatus = XEventStatus
|
12181
|
+
|
12182
|
+
@property
|
12183
|
+
def MultiDrReadableInfo(self):
|
12184
|
+
"""多节点备机只读信息
|
12185
|
+
:rtype: list of DrReadableInfo
|
12186
|
+
"""
|
12187
|
+
return self._MultiDrReadableInfo
|
12188
|
+
|
12189
|
+
@MultiDrReadableInfo.setter
|
12190
|
+
def MultiDrReadableInfo(self, MultiDrReadableInfo):
|
12191
|
+
self._MultiDrReadableInfo = MultiDrReadableInfo
|
12192
|
+
|
12165
12193
|
@property
|
12166
12194
|
def RequestId(self):
|
12167
12195
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
@@ -12198,6 +12226,13 @@ class DescribeDBInstancesAttributeResponse(AbstractModel):
|
|
12198
12226
|
obj = OldVip()
|
12199
12227
|
obj._deserialize(item)
|
12200
12228
|
self._OldVipList.append(obj)
|
12229
|
+
self._XEventStatus = params.get("XEventStatus")
|
12230
|
+
if params.get("MultiDrReadableInfo") is not None:
|
12231
|
+
self._MultiDrReadableInfo = []
|
12232
|
+
for item in params.get("MultiDrReadableInfo"):
|
12233
|
+
obj = DrReadableInfo()
|
12234
|
+
obj._deserialize(item)
|
12235
|
+
self._MultiDrReadableInfo.append(obj)
|
12201
12236
|
self._RequestId = params.get("RequestId")
|
12202
12237
|
|
12203
12238
|
|
@@ -12250,7 +12285,7 @@ class DescribeDBInstancesRequest(AbstractModel):
|
|
12250
12285
|
:type SearchKey: str
|
12251
12286
|
:param _UidSet: 实例唯一Uid列表
|
12252
12287
|
:type UidSet: list of str
|
12253
|
-
:param _InstanceType: 实例类型 HA-高可用 RO-只读实例 SI-基础版 BI
|
12288
|
+
:param _InstanceType: 实例类型 HA-高可用 RO-只读实例 SI-基础版 BI-商业智能服务,cvmHA-云盘双机高可用,cvmRO-云盘只读副本,MultiHA-多节点,cvmMultiHA-云盘多节点
|
12254
12289
|
:type InstanceType: str
|
12255
12290
|
:param _PaginationType: 分页查询方式 offset-按照偏移量分页查询,pageNumber-按照页数分页查询,默认取值pageNumber
|
12256
12291
|
:type PaginationType: str
|
@@ -12452,7 +12487,7 @@ class DescribeDBInstancesRequest(AbstractModel):
|
|
12452
12487
|
|
12453
12488
|
@property
|
12454
12489
|
def InstanceType(self):
|
12455
|
-
"""实例类型 HA-高可用 RO-只读实例 SI-基础版 BI
|
12490
|
+
"""实例类型 HA-高可用 RO-只读实例 SI-基础版 BI-商业智能服务,cvmHA-云盘双机高可用,cvmRO-云盘只读副本,MultiHA-多节点,cvmMultiHA-云盘多节点
|
12456
12491
|
:rtype: str
|
12457
12492
|
"""
|
12458
12493
|
return self._InstanceType
|
@@ -23209,6 +23244,8 @@ class ModifyDBInstanceNetworkRequest(AbstractModel):
|
|
23209
23244
|
:param _DRNetwork: 目标节点,0-修改主节点网络,1-修改备节点网络,默认取值0
|
23210
23245
|
|
23211
23246
|
:type DRNetwork: int
|
23247
|
+
:param _DrInstanceId: 备机资源ID。当DRNetwork = 1时必填
|
23248
|
+
:type DrInstanceId: str
|
23212
23249
|
"""
|
23213
23250
|
self._InstanceId = None
|
23214
23251
|
self._NewVpcId = None
|
@@ -23216,6 +23253,7 @@ class ModifyDBInstanceNetworkRequest(AbstractModel):
|
|
23216
23253
|
self._OldIpRetainTime = None
|
23217
23254
|
self._Vip = None
|
23218
23255
|
self._DRNetwork = None
|
23256
|
+
self._DrInstanceId = None
|
23219
23257
|
|
23220
23258
|
@property
|
23221
23259
|
def InstanceId(self):
|
@@ -23284,6 +23322,17 @@ class ModifyDBInstanceNetworkRequest(AbstractModel):
|
|
23284
23322
|
def DRNetwork(self, DRNetwork):
|
23285
23323
|
self._DRNetwork = DRNetwork
|
23286
23324
|
|
23325
|
+
@property
|
23326
|
+
def DrInstanceId(self):
|
23327
|
+
"""备机资源ID。当DRNetwork = 1时必填
|
23328
|
+
:rtype: str
|
23329
|
+
"""
|
23330
|
+
return self._DrInstanceId
|
23331
|
+
|
23332
|
+
@DrInstanceId.setter
|
23333
|
+
def DrInstanceId(self, DrInstanceId):
|
23334
|
+
self._DrInstanceId = DrInstanceId
|
23335
|
+
|
23287
23336
|
|
23288
23337
|
def _deserialize(self, params):
|
23289
23338
|
self._InstanceId = params.get("InstanceId")
|
@@ -23292,6 +23341,7 @@ class ModifyDBInstanceNetworkRequest(AbstractModel):
|
|
23292
23341
|
self._OldIpRetainTime = params.get("OldIpRetainTime")
|
23293
23342
|
self._Vip = params.get("Vip")
|
23294
23343
|
self._DRNetwork = params.get("DRNetwork")
|
23344
|
+
self._DrInstanceId = params.get("DrInstanceId")
|
23295
23345
|
memeber_set = set(params.keys())
|
23296
23346
|
for name, value in vars(self).items():
|
23297
23347
|
property_name = name[1:]
|
@@ -31381,6 +31431,9 @@ class UpgradeDBInstanceRequest(AbstractModel):
|
|
31381
31431
|
:type MultiZones: str
|
31382
31432
|
:param _WaitSwitch: 执行变配的方式,默认为 1。支持值包括:0 - 立刻执行,1 - 维护时间窗执行
|
31383
31433
|
:type WaitSwitch: int
|
31434
|
+
:param _DrZones: 多节点架构实例的备节点可用区,默认为空。如果需要在变配的同时修改指定备节点的可用区时必传,当MultiZones = MultiZones时主节点和备节点可用区不能全部相同。备机可用区集合最小为2个,最大不超过5个。
|
31435
|
+
|
31436
|
+
:type DrZones: list of DrZoneInfo
|
31384
31437
|
"""
|
31385
31438
|
self._InstanceId = None
|
31386
31439
|
self._Memory = None
|
@@ -31392,6 +31445,7 @@ class UpgradeDBInstanceRequest(AbstractModel):
|
|
31392
31445
|
self._HAType = None
|
31393
31446
|
self._MultiZones = None
|
31394
31447
|
self._WaitSwitch = None
|
31448
|
+
self._DrZones = None
|
31395
31449
|
|
31396
31450
|
@property
|
31397
31451
|
def InstanceId(self):
|
@@ -31503,6 +31557,18 @@ class UpgradeDBInstanceRequest(AbstractModel):
|
|
31503
31557
|
def WaitSwitch(self, WaitSwitch):
|
31504
31558
|
self._WaitSwitch = WaitSwitch
|
31505
31559
|
|
31560
|
+
@property
|
31561
|
+
def DrZones(self):
|
31562
|
+
"""多节点架构实例的备节点可用区,默认为空。如果需要在变配的同时修改指定备节点的可用区时必传,当MultiZones = MultiZones时主节点和备节点可用区不能全部相同。备机可用区集合最小为2个,最大不超过5个。
|
31563
|
+
|
31564
|
+
:rtype: list of DrZoneInfo
|
31565
|
+
"""
|
31566
|
+
return self._DrZones
|
31567
|
+
|
31568
|
+
@DrZones.setter
|
31569
|
+
def DrZones(self, DrZones):
|
31570
|
+
self._DrZones = DrZones
|
31571
|
+
|
31506
31572
|
|
31507
31573
|
def _deserialize(self, params):
|
31508
31574
|
self._InstanceId = params.get("InstanceId")
|
@@ -31515,6 +31581,12 @@ class UpgradeDBInstanceRequest(AbstractModel):
|
|
31515
31581
|
self._HAType = params.get("HAType")
|
31516
31582
|
self._MultiZones = params.get("MultiZones")
|
31517
31583
|
self._WaitSwitch = params.get("WaitSwitch")
|
31584
|
+
if params.get("DrZones") is not None:
|
31585
|
+
self._DrZones = []
|
31586
|
+
for item in params.get("DrZones"):
|
31587
|
+
obj = DrZoneInfo()
|
31588
|
+
obj._deserialize(item)
|
31589
|
+
self._DrZones.append(obj)
|
31518
31590
|
memeber_set = set(params.keys())
|
31519
31591
|
for name, value in vars(self).items():
|
31520
31592
|
property_name = name[1:]
|
@@ -7915,6 +7915,7 @@ class CreatePurgeTaskRequest(AbstractModel):
|
|
7915
7915
|
def __init__(self):
|
7916
7916
|
r"""
|
7917
7917
|
:param _ZoneId: 站点 ID。
|
7918
|
+
若您希望快速提交不同站点下的 Targets Url,可以将其填写为 *,但前提是调用该 API 的账号必须具备主账号下全部站点资源的权限。
|
7918
7919
|
:type ZoneId: str
|
7919
7920
|
:param _Type: 节点缓存清除类型,取值有:
|
7920
7921
|
<li>purge_url:URL刷新;</li>
|
@@ -7943,6 +7944,7 @@ class CreatePurgeTaskRequest(AbstractModel):
|
|
7943
7944
|
@property
|
7944
7945
|
def ZoneId(self):
|
7945
7946
|
"""站点 ID。
|
7947
|
+
若您希望快速提交不同站点下的 Targets Url,可以将其填写为 *,但前提是调用该 API 的账号必须具备主账号下全部站点资源的权限。
|
7946
7948
|
:rtype: str
|
7947
7949
|
"""
|
7948
7950
|
return self._ZoneId
|
@@ -17723,13 +17725,15 @@ class DescribeTimingL7AnalysisDataRequest(AbstractModel):
|
|
17723
17725
|
:param _EndTime: 结束时间。
|
17724
17726
|
:type EndTime: str
|
17725
17727
|
:param _MetricNames: 指标列表,取值有:
|
17726
|
-
<li>l7Flow_outFlux: L7 EdgeOne
|
17727
|
-
<li>l7Flow_inFlux: L7
|
17728
|
-
<li>l7Flow_flux: L7 访问总流量(EdgeOne
|
17729
|
-
<li>l7Flow_outBandwidth: L7 EdgeOne
|
17730
|
-
<li>l7Flow_inBandwidth:L7
|
17731
|
-
<li>l7Flow_bandwidth:L7 访问总带宽(EdgeOne
|
17732
|
-
<li>l7Flow_request: L7
|
17728
|
+
<li>l7Flow_outFlux: L7 EdgeOne 响应流量,单位:Byte;</li>
|
17729
|
+
<li>l7Flow_inFlux: L7 客户端请求流量,单位:Byte;</li>
|
17730
|
+
<li>l7Flow_flux: L7 访问总流量(EdgeOne 响应+客户端请求),单位:Byte;</li>
|
17731
|
+
<li>l7Flow_outBandwidth: L7 EdgeOne 响应带宽,单位:bps;</li>
|
17732
|
+
<li>l7Flow_inBandwidth:L7 客户端请求带宽,单位:bps;</li>
|
17733
|
+
<li>l7Flow_bandwidth:L7 访问总带宽(EdgeOne 响应+客户端请求),单位:bps;</li>
|
17734
|
+
<li>l7Flow_request: L7 访问请求数,单位:次;</li>
|
17735
|
+
<li> l7Flow_avgResponseTime: L7 访问平均响应耗时,单位:ms;</li>
|
17736
|
+
<li> l7Flow_avgFirstByteResponseTime: L7 访问平均首字节响应耗时,单位:ms。</li>
|
17733
17737
|
:type MetricNames: list of str
|
17734
17738
|
:param _ZoneIds: 站点 ID 集合,此参数必填。
|
17735
17739
|
:type ZoneIds: list of str
|
@@ -17798,13 +17802,15 @@ class DescribeTimingL7AnalysisDataRequest(AbstractModel):
|
|
17798
17802
|
@property
|
17799
17803
|
def MetricNames(self):
|
17800
17804
|
"""指标列表,取值有:
|
17801
|
-
<li>l7Flow_outFlux: L7 EdgeOne
|
17802
|
-
<li>l7Flow_inFlux: L7
|
17803
|
-
<li>l7Flow_flux: L7 访问总流量(EdgeOne
|
17804
|
-
<li>l7Flow_outBandwidth: L7 EdgeOne
|
17805
|
-
<li>l7Flow_inBandwidth:L7
|
17806
|
-
<li>l7Flow_bandwidth:L7 访问总带宽(EdgeOne
|
17807
|
-
<li>l7Flow_request: L7
|
17805
|
+
<li>l7Flow_outFlux: L7 EdgeOne 响应流量,单位:Byte;</li>
|
17806
|
+
<li>l7Flow_inFlux: L7 客户端请求流量,单位:Byte;</li>
|
17807
|
+
<li>l7Flow_flux: L7 访问总流量(EdgeOne 响应+客户端请求),单位:Byte;</li>
|
17808
|
+
<li>l7Flow_outBandwidth: L7 EdgeOne 响应带宽,单位:bps;</li>
|
17809
|
+
<li>l7Flow_inBandwidth:L7 客户端请求带宽,单位:bps;</li>
|
17810
|
+
<li>l7Flow_bandwidth:L7 访问总带宽(EdgeOne 响应+客户端请求),单位:bps;</li>
|
17811
|
+
<li>l7Flow_request: L7 访问请求数,单位:次;</li>
|
17812
|
+
<li> l7Flow_avgResponseTime: L7 访问平均响应耗时,单位:ms;</li>
|
17813
|
+
<li> l7Flow_avgFirstByteResponseTime: L7 访问平均首字节响应耗时,单位:ms。</li>
|
17808
17814
|
:rtype: list of str
|
17809
17815
|
"""
|
17810
17816
|
return self._MetricNames
|
@@ -536,6 +536,9 @@ INVALIDPARAMETER_SUBNETNOTEXIST = 'InvalidParameter.SubnetNotExist'
|
|
536
536
|
# 客户创建参数中,k8s 版本、运行时版本或 tke-eni-agent 版本不支持客户选择的操作系统中的CgroupV2。
|
537
537
|
INVALIDPARAMETER_VERSIONNOTSUPPORTCGROUPV2 = 'InvalidParameter.VersionNotSupportCgroupV2'
|
538
538
|
|
539
|
+
# 参数值中数量错误。
|
540
|
+
INVALIDPARAMETERVALUE_SIZE = 'InvalidParameterValue.Size'
|
541
|
+
|
539
542
|
# 超过配额限制。
|
540
543
|
LIMITEXCEEDED = 'LimitExceeded'
|
541
544
|
|
@@ -27669,7 +27669,7 @@ class EksCluster(AbstractModel):
|
|
27669
27669
|
:type SubnetIds: list of str
|
27670
27670
|
:param _K8SVersion: k8s 版本号
|
27671
27671
|
:type K8SVersion: str
|
27672
|
-
:param _Status: 集群状态(running运行中,initializing 初始化中,
|
27672
|
+
:param _Status: 集群状态(running 运行中,initializing 初始化中,Failed 异常,Idling 空闲中,Activating 激活中,Terminating 删除中)
|
27673
27673
|
:type Status: str
|
27674
27674
|
:param _ClusterDesc: 集群描述信息
|
27675
27675
|
:type ClusterDesc: str
|
@@ -27758,7 +27758,7 @@ class EksCluster(AbstractModel):
|
|
27758
27758
|
|
27759
27759
|
@property
|
27760
27760
|
def Status(self):
|
27761
|
-
"""集群状态(running运行中,initializing 初始化中,
|
27761
|
+
"""集群状态(running 运行中,initializing 初始化中,Failed 异常,Idling 空闲中,Activating 激活中,Terminating 删除中)
|
27762
27762
|
:rtype: str
|
27763
27763
|
"""
|
27764
27764
|
return self._Status
|
@@ -39194,7 +39194,7 @@ class PrometheusClusterAgentBasic(AbstractModel):
|
|
39194
39194
|
|
39195
39195
|
def __init__(self):
|
39196
39196
|
r"""
|
39197
|
-
:param _Region:
|
39197
|
+
:param _Region: 地域
|
39198
39198
|
:type Region: str
|
39199
39199
|
:param _ClusterType: 集群类型
|
39200
39200
|
:type ClusterType: str
|
@@ -39222,7 +39222,7 @@ class PrometheusClusterAgentBasic(AbstractModel):
|
|
39222
39222
|
|
39223
39223
|
@property
|
39224
39224
|
def Region(self):
|
39225
|
-
"""
|
39225
|
+
"""地域
|
39226
39226
|
:rtype: str
|
39227
39227
|
"""
|
39228
39228
|
return self._Region
|
@@ -42439,6 +42439,15 @@ class ReleaseDetails(AbstractModel):
|
|
42439
42439
|
:param _ComputedValues: 应用参数
|
42440
42440
|
注意:此字段可能返回 null,表示取不到有效值。
|
42441
42441
|
:type ComputedValues: str
|
42442
|
+
:param _ChartFrom: chart 的来源, tke-market, others
|
42443
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
42444
|
+
:type ChartFrom: str
|
42445
|
+
:param _ChartURL: 第三方chart 的安装地址
|
42446
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
42447
|
+
:type ChartURL: str
|
42448
|
+
:param _Resources: 通过chart 创建的资源
|
42449
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
42450
|
+
:type Resources: str
|
42442
42451
|
"""
|
42443
42452
|
self._Name = None
|
42444
42453
|
self._Namespace = None
|
@@ -42455,6 +42464,9 @@ class ReleaseDetails(AbstractModel):
|
|
42455
42464
|
self._FirstDeployedTime = None
|
42456
42465
|
self._LastDeployedTime = None
|
42457
42466
|
self._ComputedValues = None
|
42467
|
+
self._ChartFrom = None
|
42468
|
+
self._ChartURL = None
|
42469
|
+
self._Resources = None
|
42458
42470
|
|
42459
42471
|
@property
|
42460
42472
|
def Name(self):
|
@@ -42634,6 +42646,42 @@ class ReleaseDetails(AbstractModel):
|
|
42634
42646
|
def ComputedValues(self, ComputedValues):
|
42635
42647
|
self._ComputedValues = ComputedValues
|
42636
42648
|
|
42649
|
+
@property
|
42650
|
+
def ChartFrom(self):
|
42651
|
+
"""chart 的来源, tke-market, others
|
42652
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
42653
|
+
:rtype: str
|
42654
|
+
"""
|
42655
|
+
return self._ChartFrom
|
42656
|
+
|
42657
|
+
@ChartFrom.setter
|
42658
|
+
def ChartFrom(self, ChartFrom):
|
42659
|
+
self._ChartFrom = ChartFrom
|
42660
|
+
|
42661
|
+
@property
|
42662
|
+
def ChartURL(self):
|
42663
|
+
"""第三方chart 的安装地址
|
42664
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
42665
|
+
:rtype: str
|
42666
|
+
"""
|
42667
|
+
return self._ChartURL
|
42668
|
+
|
42669
|
+
@ChartURL.setter
|
42670
|
+
def ChartURL(self, ChartURL):
|
42671
|
+
self._ChartURL = ChartURL
|
42672
|
+
|
42673
|
+
@property
|
42674
|
+
def Resources(self):
|
42675
|
+
"""通过chart 创建的资源
|
42676
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
42677
|
+
:rtype: str
|
42678
|
+
"""
|
42679
|
+
return self._Resources
|
42680
|
+
|
42681
|
+
@Resources.setter
|
42682
|
+
def Resources(self, Resources):
|
42683
|
+
self._Resources = Resources
|
42684
|
+
|
42637
42685
|
|
42638
42686
|
def _deserialize(self, params):
|
42639
42687
|
self._Name = params.get("Name")
|
@@ -42651,6 +42699,9 @@ class ReleaseDetails(AbstractModel):
|
|
42651
42699
|
self._FirstDeployedTime = params.get("FirstDeployedTime")
|
42652
42700
|
self._LastDeployedTime = params.get("LastDeployedTime")
|
42653
42701
|
self._ComputedValues = params.get("ComputedValues")
|
42702
|
+
self._ChartFrom = params.get("ChartFrom")
|
42703
|
+
self._ChartURL = params.get("ChartURL")
|
42704
|
+
self._Resources = params.get("Resources")
|
42654
42705
|
memeber_set = set(params.keys())
|
42655
42706
|
for name, value in vars(self).items():
|
42656
42707
|
property_name = name[1:]
|
@@ -6845,6 +6845,172 @@ class DescribeRoleListResponse(AbstractModel):
|
|
6845
6845
|
self._RequestId = params.get("RequestId")
|
6846
6846
|
|
6847
6847
|
|
6848
|
+
class DescribeTopicListByGroupRequest(AbstractModel):
|
6849
|
+
"""DescribeTopicListByGroup请求参数结构体
|
6850
|
+
|
6851
|
+
"""
|
6852
|
+
|
6853
|
+
def __init__(self):
|
6854
|
+
r"""
|
6855
|
+
:param _InstanceId: 集群ID
|
6856
|
+
:type InstanceId: str
|
6857
|
+
:param _Offset: 查询起始位置
|
6858
|
+
:type Offset: int
|
6859
|
+
:param _Limit: 查询结果限制数量
|
6860
|
+
:type Limit: int
|
6861
|
+
:param _ConsumerGroup: 消费组名称
|
6862
|
+
:type ConsumerGroup: str
|
6863
|
+
:param _Filters: 查询条件列表
|
6864
|
+
:type Filters: list of Filter
|
6865
|
+
"""
|
6866
|
+
self._InstanceId = None
|
6867
|
+
self._Offset = None
|
6868
|
+
self._Limit = None
|
6869
|
+
self._ConsumerGroup = None
|
6870
|
+
self._Filters = None
|
6871
|
+
|
6872
|
+
@property
|
6873
|
+
def InstanceId(self):
|
6874
|
+
"""集群ID
|
6875
|
+
:rtype: str
|
6876
|
+
"""
|
6877
|
+
return self._InstanceId
|
6878
|
+
|
6879
|
+
@InstanceId.setter
|
6880
|
+
def InstanceId(self, InstanceId):
|
6881
|
+
self._InstanceId = InstanceId
|
6882
|
+
|
6883
|
+
@property
|
6884
|
+
def Offset(self):
|
6885
|
+
"""查询起始位置
|
6886
|
+
:rtype: int
|
6887
|
+
"""
|
6888
|
+
return self._Offset
|
6889
|
+
|
6890
|
+
@Offset.setter
|
6891
|
+
def Offset(self, Offset):
|
6892
|
+
self._Offset = Offset
|
6893
|
+
|
6894
|
+
@property
|
6895
|
+
def Limit(self):
|
6896
|
+
"""查询结果限制数量
|
6897
|
+
:rtype: int
|
6898
|
+
"""
|
6899
|
+
return self._Limit
|
6900
|
+
|
6901
|
+
@Limit.setter
|
6902
|
+
def Limit(self, Limit):
|
6903
|
+
self._Limit = Limit
|
6904
|
+
|
6905
|
+
@property
|
6906
|
+
def ConsumerGroup(self):
|
6907
|
+
"""消费组名称
|
6908
|
+
:rtype: str
|
6909
|
+
"""
|
6910
|
+
return self._ConsumerGroup
|
6911
|
+
|
6912
|
+
@ConsumerGroup.setter
|
6913
|
+
def ConsumerGroup(self, ConsumerGroup):
|
6914
|
+
self._ConsumerGroup = ConsumerGroup
|
6915
|
+
|
6916
|
+
@property
|
6917
|
+
def Filters(self):
|
6918
|
+
"""查询条件列表
|
6919
|
+
:rtype: list of Filter
|
6920
|
+
"""
|
6921
|
+
return self._Filters
|
6922
|
+
|
6923
|
+
@Filters.setter
|
6924
|
+
def Filters(self, Filters):
|
6925
|
+
self._Filters = Filters
|
6926
|
+
|
6927
|
+
|
6928
|
+
def _deserialize(self, params):
|
6929
|
+
self._InstanceId = params.get("InstanceId")
|
6930
|
+
self._Offset = params.get("Offset")
|
6931
|
+
self._Limit = params.get("Limit")
|
6932
|
+
self._ConsumerGroup = params.get("ConsumerGroup")
|
6933
|
+
if params.get("Filters") is not None:
|
6934
|
+
self._Filters = []
|
6935
|
+
for item in params.get("Filters"):
|
6936
|
+
obj = Filter()
|
6937
|
+
obj._deserialize(item)
|
6938
|
+
self._Filters.append(obj)
|
6939
|
+
memeber_set = set(params.keys())
|
6940
|
+
for name, value in vars(self).items():
|
6941
|
+
property_name = name[1:]
|
6942
|
+
if property_name in memeber_set:
|
6943
|
+
memeber_set.remove(property_name)
|
6944
|
+
if len(memeber_set) > 0:
|
6945
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
6946
|
+
|
6947
|
+
|
6948
|
+
|
6949
|
+
class DescribeTopicListByGroupResponse(AbstractModel):
|
6950
|
+
"""DescribeTopicListByGroup返回参数结构体
|
6951
|
+
|
6952
|
+
"""
|
6953
|
+
|
6954
|
+
def __init__(self):
|
6955
|
+
r"""
|
6956
|
+
:param _TotalCount: 查询总数
|
6957
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
6958
|
+
:type TotalCount: int
|
6959
|
+
:param _Data: 主题列表
|
6960
|
+
:type Data: list of SubscriptionData
|
6961
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
6962
|
+
:type RequestId: str
|
6963
|
+
"""
|
6964
|
+
self._TotalCount = None
|
6965
|
+
self._Data = None
|
6966
|
+
self._RequestId = None
|
6967
|
+
|
6968
|
+
@property
|
6969
|
+
def TotalCount(self):
|
6970
|
+
"""查询总数
|
6971
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
6972
|
+
:rtype: int
|
6973
|
+
"""
|
6974
|
+
return self._TotalCount
|
6975
|
+
|
6976
|
+
@TotalCount.setter
|
6977
|
+
def TotalCount(self, TotalCount):
|
6978
|
+
self._TotalCount = TotalCount
|
6979
|
+
|
6980
|
+
@property
|
6981
|
+
def Data(self):
|
6982
|
+
"""主题列表
|
6983
|
+
:rtype: list of SubscriptionData
|
6984
|
+
"""
|
6985
|
+
return self._Data
|
6986
|
+
|
6987
|
+
@Data.setter
|
6988
|
+
def Data(self, Data):
|
6989
|
+
self._Data = Data
|
6990
|
+
|
6991
|
+
@property
|
6992
|
+
def RequestId(self):
|
6993
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
6994
|
+
:rtype: str
|
6995
|
+
"""
|
6996
|
+
return self._RequestId
|
6997
|
+
|
6998
|
+
@RequestId.setter
|
6999
|
+
def RequestId(self, RequestId):
|
7000
|
+
self._RequestId = RequestId
|
7001
|
+
|
7002
|
+
|
7003
|
+
def _deserialize(self, params):
|
7004
|
+
self._TotalCount = params.get("TotalCount")
|
7005
|
+
if params.get("Data") is not None:
|
7006
|
+
self._Data = []
|
7007
|
+
for item in params.get("Data"):
|
7008
|
+
obj = SubscriptionData()
|
7009
|
+
obj._deserialize(item)
|
7010
|
+
self._Data.append(obj)
|
7011
|
+
self._RequestId = params.get("RequestId")
|
7012
|
+
|
7013
|
+
|
6848
7014
|
class DescribeTopicListRequest(AbstractModel):
|
6849
7015
|
"""DescribeTopicList请求参数结构体
|
6850
7016
|
|
@@ -1024,6 +1024,31 @@ class TrocketClient(AbstractClient):
|
|
1024
1024
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1025
1025
|
|
1026
1026
|
|
1027
|
+
def DescribeTopicListByGroup(self, request):
|
1028
|
+
"""根据消费组获取主题列表,Filter参数使用说明如下:
|
1029
|
+
|
1030
|
+
TopicName,主题名称过滤
|
1031
|
+
|
1032
|
+
:param request: Request instance for DescribeTopicListByGroup.
|
1033
|
+
:type request: :class:`tencentcloud.trocket.v20230308.models.DescribeTopicListByGroupRequest`
|
1034
|
+
:rtype: :class:`tencentcloud.trocket.v20230308.models.DescribeTopicListByGroupResponse`
|
1035
|
+
|
1036
|
+
"""
|
1037
|
+
try:
|
1038
|
+
params = request._serialize()
|
1039
|
+
headers = request.headers
|
1040
|
+
body = self.call("DescribeTopicListByGroup", params, headers=headers)
|
1041
|
+
response = json.loads(body)
|
1042
|
+
model = models.DescribeTopicListByGroupResponse()
|
1043
|
+
model._deserialize(response["Response"])
|
1044
|
+
return model
|
1045
|
+
except Exception as e:
|
1046
|
+
if isinstance(e, TencentCloudSDKException):
|
1047
|
+
raise
|
1048
|
+
else:
|
1049
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1050
|
+
|
1051
|
+
|
1027
1052
|
def ImportSourceClusterConsumerGroups(self, request):
|
1028
1053
|
"""导入消费者组列表
|
1029
1054
|
|
@@ -1884,7 +1884,7 @@ class SubmitVideoTranslateJobRequest(AbstractModel):
|
|
1884
1884
|
fps 要求:【15-60】fps
|
1885
1885
|
分辨率要求:单边像素要求在 【360~4096】 之间。
|
1886
1886
|
大小要求:不超过500MB
|
1887
|
-
|
1887
|
+
请保证文件的下载速度,否则会下载失败。
|
1888
1888
|
:type VideoUrl: str
|
1889
1889
|
:param _SrcLang: 输入视频中音频语种
|
1890
1890
|
目前支持语种范围:zh(中文), en(英文)
|
@@ -1893,8 +1893,9 @@ fps 要求:【15-60】fps
|
|
1893
1893
|
格式要求:支持 mp3、m4a、aac、wav 格式。
|
1894
1894
|
时长要求:【5~600】秒,音频时长要匹配视频时长。
|
1895
1895
|
大小要求:不超过 100MB。
|
1896
|
+
请保证文件的下载速度,否则会下载失败。
|
1896
1897
|
:type AudioUrl: str
|
1897
|
-
:param _DstLang:
|
1898
|
+
:param _DstLang: 输出视频中翻译语种。默认是en(英语)。
|
1898
1899
|
目前支持语种范围:zh(简体中文)、en(英语)、ar(阿拉伯语)、de(德语)、es(西班牙语)、fr(法语)、id(印尼语)、it(意大利语)、ja(日语)、ko(韩语)、ms(马来语)、pt(葡萄牙语)、ru(俄语)、th(泰语)、tr(土耳其语)、vi(越南语)
|
1899
1900
|
:type DstLang: str
|
1900
1901
|
:param _VoiceType: 翻译语种匹配音色种别,其他说明如下:
|
@@ -1932,7 +1933,7 @@ fps 要求:【15-60】fps
|
|
1932
1933
|
fps 要求:【15-60】fps
|
1933
1934
|
分辨率要求:单边像素要求在 【360~4096】 之间。
|
1934
1935
|
大小要求:不超过500MB
|
1935
|
-
|
1936
|
+
请保证文件的下载速度,否则会下载失败。
|
1936
1937
|
:rtype: str
|
1937
1938
|
"""
|
1938
1939
|
return self._VideoUrl
|
@@ -1959,6 +1960,7 @@ fps 要求:【15-60】fps
|
|
1959
1960
|
格式要求:支持 mp3、m4a、aac、wav 格式。
|
1960
1961
|
时长要求:【5~600】秒,音频时长要匹配视频时长。
|
1961
1962
|
大小要求:不超过 100MB。
|
1963
|
+
请保证文件的下载速度,否则会下载失败。
|
1962
1964
|
:rtype: str
|
1963
1965
|
"""
|
1964
1966
|
return self._AudioUrl
|
@@ -1969,7 +1971,7 @@ fps 要求:【15-60】fps
|
|
1969
1971
|
|
1970
1972
|
@property
|
1971
1973
|
def DstLang(self):
|
1972
|
-
"""
|
1974
|
+
"""输出视频中翻译语种。默认是en(英语)。
|
1973
1975
|
目前支持语种范围:zh(简体中文)、en(英语)、ar(阿拉伯语)、de(德语)、es(西班牙语)、fr(法语)、id(印尼语)、it(意大利语)、ja(日语)、ko(韩语)、ms(马来语)、pt(葡萄牙语)、ru(俄语)、th(泰语)、tr(土耳其语)、vi(越南语)
|
1974
1976
|
:rtype: str
|
1975
1977
|
"""
|