tencentcloud-sdk-python 3.0.1159__py2.py3-none-any.whl → 3.0.1161__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.
Files changed (32) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/antiddos/v20200309/models.py +25 -0
  3. tencentcloud/cdb/v20170320/models.py +128 -0
  4. tencentcloud/domain/v20180808/errorcodes.py +6 -0
  5. tencentcloud/domain/v20180808/models.py +24 -0
  6. tencentcloud/ess/v20201111/ess_client.py +29 -0
  7. tencentcloud/ess/v20201111/models.py +231 -0
  8. tencentcloud/faceid/v20180301/models.py +2 -2
  9. tencentcloud/iotexplorer/v20190423/models.py +2 -2
  10. tencentcloud/lighthouse/v20200324/lighthouse_client.py +5 -5
  11. tencentcloud/lighthouse/v20200324/models.py +44 -42
  12. tencentcloud/trocket/v20230308/models.py +578 -0
  13. tencentcloud/trocket/v20230308/trocket_client.py +28 -0
  14. tencentcloud/trtc/v20190722/errorcodes.py +3 -3
  15. tencentcloud/trtc/v20190722/models.py +160 -22
  16. tencentcloud/trtc/v20190722/trtc_client.py +47 -4
  17. tencentcloud/tse/v20201207/models.py +26 -0
  18. tencentcloud/tsf/v20180326/errorcodes.py +12 -0
  19. tencentcloud/tsf/v20180326/models.py +80 -3
  20. tencentcloud/vdb/__init__.py +0 -0
  21. tencentcloud/vdb/v20230616/__init__.py +0 -0
  22. tencentcloud/vdb/v20230616/errorcodes.py +21 -0
  23. tencentcloud/vdb/v20230616/models.py +731 -0
  24. tencentcloud/vdb/v20230616/vdb_client.py +49 -0
  25. tencentcloud/waf/v20180125/models.py +192 -0
  26. tencentcloud/waf/v20180125/waf_client.py +23 -0
  27. tencentcloud/wedata/v20210820/models.py +12 -0
  28. {tencentcloud_sdk_python-3.0.1159.dist-info → tencentcloud_sdk_python-3.0.1161.dist-info}/METADATA +1 -1
  29. {tencentcloud_sdk_python-3.0.1159.dist-info → tencentcloud_sdk_python-3.0.1161.dist-info}/RECORD +32 -27
  30. {tencentcloud_sdk_python-3.0.1159.dist-info → tencentcloud_sdk_python-3.0.1161.dist-info}/LICENSE +0 -0
  31. {tencentcloud_sdk_python-3.0.1159.dist-info → tencentcloud_sdk_python-3.0.1161.dist-info}/WHEEL +0 -0
  32. {tencentcloud_sdk_python-3.0.1159.dist-info → tencentcloud_sdk_python-3.0.1161.dist-info}/top_level.txt +0 -0
@@ -2198,6 +2198,140 @@ class DescribeConsumerGroupResponse(AbstractModel):
2198
2198
  self._RequestId = params.get("RequestId")
2199
2199
 
2200
2200
 
2201
+ class DescribeFusionInstanceListRequest(AbstractModel):
2202
+ """DescribeFusionInstanceList请求参数结构体
2203
+
2204
+ """
2205
+
2206
+ def __init__(self):
2207
+ r"""
2208
+ :param _Offset: 查询起始位置
2209
+ :type Offset: int
2210
+ :param _Limit: 查询结果限制数量
2211
+ :type Limit: int
2212
+ :param _Filters: 查询条件列表
2213
+ :type Filters: list of Filter
2214
+ :param _TagFilters: 标签过滤器
2215
+ :type TagFilters: list of TagFilter
2216
+ """
2217
+ self._Offset = None
2218
+ self._Limit = None
2219
+ self._Filters = None
2220
+ self._TagFilters = None
2221
+
2222
+ @property
2223
+ def Offset(self):
2224
+ return self._Offset
2225
+
2226
+ @Offset.setter
2227
+ def Offset(self, Offset):
2228
+ self._Offset = Offset
2229
+
2230
+ @property
2231
+ def Limit(self):
2232
+ return self._Limit
2233
+
2234
+ @Limit.setter
2235
+ def Limit(self, Limit):
2236
+ self._Limit = Limit
2237
+
2238
+ @property
2239
+ def Filters(self):
2240
+ return self._Filters
2241
+
2242
+ @Filters.setter
2243
+ def Filters(self, Filters):
2244
+ self._Filters = Filters
2245
+
2246
+ @property
2247
+ def TagFilters(self):
2248
+ return self._TagFilters
2249
+
2250
+ @TagFilters.setter
2251
+ def TagFilters(self, TagFilters):
2252
+ self._TagFilters = TagFilters
2253
+
2254
+
2255
+ def _deserialize(self, params):
2256
+ self._Offset = params.get("Offset")
2257
+ self._Limit = params.get("Limit")
2258
+ if params.get("Filters") is not None:
2259
+ self._Filters = []
2260
+ for item in params.get("Filters"):
2261
+ obj = Filter()
2262
+ obj._deserialize(item)
2263
+ self._Filters.append(obj)
2264
+ if params.get("TagFilters") is not None:
2265
+ self._TagFilters = []
2266
+ for item in params.get("TagFilters"):
2267
+ obj = TagFilter()
2268
+ obj._deserialize(item)
2269
+ self._TagFilters.append(obj)
2270
+ memeber_set = set(params.keys())
2271
+ for name, value in vars(self).items():
2272
+ property_name = name[1:]
2273
+ if property_name in memeber_set:
2274
+ memeber_set.remove(property_name)
2275
+ if len(memeber_set) > 0:
2276
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
2277
+
2278
+
2279
+
2280
+ class DescribeFusionInstanceListResponse(AbstractModel):
2281
+ """DescribeFusionInstanceList返回参数结构体
2282
+
2283
+ """
2284
+
2285
+ def __init__(self):
2286
+ r"""
2287
+ :param _TotalCount: 查询总数
2288
+ 注意:此字段可能返回 null,表示取不到有效值。
2289
+ :type TotalCount: int
2290
+ :param _Data: 实例列表
2291
+ :type Data: list of FusionInstanceItem
2292
+ :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2293
+ :type RequestId: str
2294
+ """
2295
+ self._TotalCount = None
2296
+ self._Data = None
2297
+ self._RequestId = None
2298
+
2299
+ @property
2300
+ def TotalCount(self):
2301
+ return self._TotalCount
2302
+
2303
+ @TotalCount.setter
2304
+ def TotalCount(self, TotalCount):
2305
+ self._TotalCount = TotalCount
2306
+
2307
+ @property
2308
+ def Data(self):
2309
+ return self._Data
2310
+
2311
+ @Data.setter
2312
+ def Data(self, Data):
2313
+ self._Data = Data
2314
+
2315
+ @property
2316
+ def RequestId(self):
2317
+ return self._RequestId
2318
+
2319
+ @RequestId.setter
2320
+ def RequestId(self, RequestId):
2321
+ self._RequestId = RequestId
2322
+
2323
+
2324
+ def _deserialize(self, params):
2325
+ self._TotalCount = params.get("TotalCount")
2326
+ if params.get("Data") is not None:
2327
+ self._Data = []
2328
+ for item in params.get("Data"):
2329
+ obj = FusionInstanceItem()
2330
+ obj._deserialize(item)
2331
+ self._Data.append(obj)
2332
+ self._RequestId = params.get("RequestId")
2333
+
2334
+
2201
2335
  class DescribeInstanceListRequest(AbstractModel):
2202
2336
  """DescribeInstanceList请求参数结构体
2203
2337
 
@@ -5059,6 +5193,312 @@ class Filter(AbstractModel):
5059
5193
 
5060
5194
 
5061
5195
 
5196
+ class FusionInstanceItem(AbstractModel):
5197
+ """实例列表页中的实例信息
5198
+
5199
+ """
5200
+
5201
+ def __init__(self):
5202
+ r"""
5203
+ :param _InstanceId: 实例ID
5204
+ :type InstanceId: str
5205
+ :param _InstanceName: 实例名称
5206
+ :type InstanceName: str
5207
+ :param _Version: 实例版本
5208
+ :type Version: str
5209
+ :param _InstanceType: 实例类型,
5210
+ EXPERIMENT,体验版
5211
+ BASIC,基础版
5212
+ PRO,专业版
5213
+ PLATINUM,铂金版
5214
+ :type InstanceType: str
5215
+ :param _InstanceStatus: 实例状态,
5216
+ RUNNING, 运行中
5217
+ MAINTAINING,维护中
5218
+ ABNORMAL,异常
5219
+ OVERDUE,欠费
5220
+ DESTROYED,已删除
5221
+ CREATING,创建中
5222
+ MODIFYING,变配中
5223
+ CREATE_FAILURE,创建失败
5224
+ MODIFY_FAILURE,变配失败
5225
+ DELETING,删除中
5226
+ :type InstanceStatus: str
5227
+ :param _TopicNumLimit: 实例主题数上限
5228
+ :type TopicNumLimit: int
5229
+ :param _GroupNumLimit: 实例消费组数量上限
5230
+ :type GroupNumLimit: int
5231
+ :param _PayMode: 计费模式,
5232
+ POSTPAID,按量计费
5233
+ PREPAID,包年包月
5234
+ :type PayMode: str
5235
+ :param _ExpiryTime: 到期时间,秒为单位
5236
+ 注意:此字段可能返回 null,表示取不到有效值。
5237
+ :type ExpiryTime: int
5238
+ :param _Remark: 备注信息
5239
+ 注意:此字段可能返回 null,表示取不到有效值。
5240
+ :type Remark: str
5241
+ :param _TopicNum: 主题数量
5242
+ :type TopicNum: int
5243
+ :param _GroupNum: 消费组数量
5244
+ :type GroupNum: int
5245
+ :param _TagList: 标签列表
5246
+ 注意:此字段可能返回 null,表示取不到有效值。
5247
+ :type TagList: list of Tag
5248
+ :param _SkuCode: 商品规格
5249
+ :type SkuCode: str
5250
+ :param _TpsLimit: TPS限流值
5251
+ 注意:此字段可能返回 null,表示取不到有效值。
5252
+ :type TpsLimit: int
5253
+ :param _ScaledTpsLimit: 弹性TPS限流值
5254
+ 注意:此字段可能返回 null,表示取不到有效值。
5255
+ :type ScaledTpsLimit: int
5256
+ :param _MessageRetention: 消息保留时间,小时为单位
5257
+ 注意:此字段可能返回 null,表示取不到有效值。
5258
+ :type MessageRetention: int
5259
+ :param _MaxMessageDelay: 延迟消息最大时长,小时为单位
5260
+ 注意:此字段可能返回 null,表示取不到有效值。
5261
+ :type MaxMessageDelay: int
5262
+ :param _RenewFlag: 是否自动续费
5263
+ 注意:此字段可能返回 null,表示取不到有效值。
5264
+ :type RenewFlag: int
5265
+ :param _InstanceItemExtraInfo: 4.x独有数据
5266
+ 注意:此字段可能返回 null,表示取不到有效值。
5267
+ :type InstanceItemExtraInfo: :class:`tencentcloud.trocket.v20230308.models.InstanceItemExtraInfo`
5268
+ :param _DestroyTime: 预销毁时间
5269
+ 注意:此字段可能返回 null,表示取不到有效值。
5270
+ :type DestroyTime: int
5271
+ """
5272
+ self._InstanceId = None
5273
+ self._InstanceName = None
5274
+ self._Version = None
5275
+ self._InstanceType = None
5276
+ self._InstanceStatus = None
5277
+ self._TopicNumLimit = None
5278
+ self._GroupNumLimit = None
5279
+ self._PayMode = None
5280
+ self._ExpiryTime = None
5281
+ self._Remark = None
5282
+ self._TopicNum = None
5283
+ self._GroupNum = None
5284
+ self._TagList = None
5285
+ self._SkuCode = None
5286
+ self._TpsLimit = None
5287
+ self._ScaledTpsLimit = None
5288
+ self._MessageRetention = None
5289
+ self._MaxMessageDelay = None
5290
+ self._RenewFlag = None
5291
+ self._InstanceItemExtraInfo = None
5292
+ self._DestroyTime = None
5293
+
5294
+ @property
5295
+ def InstanceId(self):
5296
+ return self._InstanceId
5297
+
5298
+ @InstanceId.setter
5299
+ def InstanceId(self, InstanceId):
5300
+ self._InstanceId = InstanceId
5301
+
5302
+ @property
5303
+ def InstanceName(self):
5304
+ return self._InstanceName
5305
+
5306
+ @InstanceName.setter
5307
+ def InstanceName(self, InstanceName):
5308
+ self._InstanceName = InstanceName
5309
+
5310
+ @property
5311
+ def Version(self):
5312
+ return self._Version
5313
+
5314
+ @Version.setter
5315
+ def Version(self, Version):
5316
+ self._Version = Version
5317
+
5318
+ @property
5319
+ def InstanceType(self):
5320
+ return self._InstanceType
5321
+
5322
+ @InstanceType.setter
5323
+ def InstanceType(self, InstanceType):
5324
+ self._InstanceType = InstanceType
5325
+
5326
+ @property
5327
+ def InstanceStatus(self):
5328
+ return self._InstanceStatus
5329
+
5330
+ @InstanceStatus.setter
5331
+ def InstanceStatus(self, InstanceStatus):
5332
+ self._InstanceStatus = InstanceStatus
5333
+
5334
+ @property
5335
+ def TopicNumLimit(self):
5336
+ return self._TopicNumLimit
5337
+
5338
+ @TopicNumLimit.setter
5339
+ def TopicNumLimit(self, TopicNumLimit):
5340
+ self._TopicNumLimit = TopicNumLimit
5341
+
5342
+ @property
5343
+ def GroupNumLimit(self):
5344
+ return self._GroupNumLimit
5345
+
5346
+ @GroupNumLimit.setter
5347
+ def GroupNumLimit(self, GroupNumLimit):
5348
+ self._GroupNumLimit = GroupNumLimit
5349
+
5350
+ @property
5351
+ def PayMode(self):
5352
+ return self._PayMode
5353
+
5354
+ @PayMode.setter
5355
+ def PayMode(self, PayMode):
5356
+ self._PayMode = PayMode
5357
+
5358
+ @property
5359
+ def ExpiryTime(self):
5360
+ return self._ExpiryTime
5361
+
5362
+ @ExpiryTime.setter
5363
+ def ExpiryTime(self, ExpiryTime):
5364
+ self._ExpiryTime = ExpiryTime
5365
+
5366
+ @property
5367
+ def Remark(self):
5368
+ return self._Remark
5369
+
5370
+ @Remark.setter
5371
+ def Remark(self, Remark):
5372
+ self._Remark = Remark
5373
+
5374
+ @property
5375
+ def TopicNum(self):
5376
+ return self._TopicNum
5377
+
5378
+ @TopicNum.setter
5379
+ def TopicNum(self, TopicNum):
5380
+ self._TopicNum = TopicNum
5381
+
5382
+ @property
5383
+ def GroupNum(self):
5384
+ return self._GroupNum
5385
+
5386
+ @GroupNum.setter
5387
+ def GroupNum(self, GroupNum):
5388
+ self._GroupNum = GroupNum
5389
+
5390
+ @property
5391
+ def TagList(self):
5392
+ return self._TagList
5393
+
5394
+ @TagList.setter
5395
+ def TagList(self, TagList):
5396
+ self._TagList = TagList
5397
+
5398
+ @property
5399
+ def SkuCode(self):
5400
+ return self._SkuCode
5401
+
5402
+ @SkuCode.setter
5403
+ def SkuCode(self, SkuCode):
5404
+ self._SkuCode = SkuCode
5405
+
5406
+ @property
5407
+ def TpsLimit(self):
5408
+ return self._TpsLimit
5409
+
5410
+ @TpsLimit.setter
5411
+ def TpsLimit(self, TpsLimit):
5412
+ self._TpsLimit = TpsLimit
5413
+
5414
+ @property
5415
+ def ScaledTpsLimit(self):
5416
+ return self._ScaledTpsLimit
5417
+
5418
+ @ScaledTpsLimit.setter
5419
+ def ScaledTpsLimit(self, ScaledTpsLimit):
5420
+ self._ScaledTpsLimit = ScaledTpsLimit
5421
+
5422
+ @property
5423
+ def MessageRetention(self):
5424
+ return self._MessageRetention
5425
+
5426
+ @MessageRetention.setter
5427
+ def MessageRetention(self, MessageRetention):
5428
+ self._MessageRetention = MessageRetention
5429
+
5430
+ @property
5431
+ def MaxMessageDelay(self):
5432
+ return self._MaxMessageDelay
5433
+
5434
+ @MaxMessageDelay.setter
5435
+ def MaxMessageDelay(self, MaxMessageDelay):
5436
+ self._MaxMessageDelay = MaxMessageDelay
5437
+
5438
+ @property
5439
+ def RenewFlag(self):
5440
+ return self._RenewFlag
5441
+
5442
+ @RenewFlag.setter
5443
+ def RenewFlag(self, RenewFlag):
5444
+ self._RenewFlag = RenewFlag
5445
+
5446
+ @property
5447
+ def InstanceItemExtraInfo(self):
5448
+ return self._InstanceItemExtraInfo
5449
+
5450
+ @InstanceItemExtraInfo.setter
5451
+ def InstanceItemExtraInfo(self, InstanceItemExtraInfo):
5452
+ self._InstanceItemExtraInfo = InstanceItemExtraInfo
5453
+
5454
+ @property
5455
+ def DestroyTime(self):
5456
+ return self._DestroyTime
5457
+
5458
+ @DestroyTime.setter
5459
+ def DestroyTime(self, DestroyTime):
5460
+ self._DestroyTime = DestroyTime
5461
+
5462
+
5463
+ def _deserialize(self, params):
5464
+ self._InstanceId = params.get("InstanceId")
5465
+ self._InstanceName = params.get("InstanceName")
5466
+ self._Version = params.get("Version")
5467
+ self._InstanceType = params.get("InstanceType")
5468
+ self._InstanceStatus = params.get("InstanceStatus")
5469
+ self._TopicNumLimit = params.get("TopicNumLimit")
5470
+ self._GroupNumLimit = params.get("GroupNumLimit")
5471
+ self._PayMode = params.get("PayMode")
5472
+ self._ExpiryTime = params.get("ExpiryTime")
5473
+ self._Remark = params.get("Remark")
5474
+ self._TopicNum = params.get("TopicNum")
5475
+ self._GroupNum = params.get("GroupNum")
5476
+ if params.get("TagList") is not None:
5477
+ self._TagList = []
5478
+ for item in params.get("TagList"):
5479
+ obj = Tag()
5480
+ obj._deserialize(item)
5481
+ self._TagList.append(obj)
5482
+ self._SkuCode = params.get("SkuCode")
5483
+ self._TpsLimit = params.get("TpsLimit")
5484
+ self._ScaledTpsLimit = params.get("ScaledTpsLimit")
5485
+ self._MessageRetention = params.get("MessageRetention")
5486
+ self._MaxMessageDelay = params.get("MaxMessageDelay")
5487
+ self._RenewFlag = params.get("RenewFlag")
5488
+ if params.get("InstanceItemExtraInfo") is not None:
5489
+ self._InstanceItemExtraInfo = InstanceItemExtraInfo()
5490
+ self._InstanceItemExtraInfo._deserialize(params.get("InstanceItemExtraInfo"))
5491
+ self._DestroyTime = params.get("DestroyTime")
5492
+ memeber_set = set(params.keys())
5493
+ for name, value in vars(self).items():
5494
+ property_name = name[1:]
5495
+ if property_name in memeber_set:
5496
+ memeber_set.remove(property_name)
5497
+ if len(memeber_set) > 0:
5498
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
5499
+
5500
+
5501
+
5062
5502
  class ImportSourceClusterConsumerGroupsRequest(AbstractModel):
5063
5503
  """ImportSourceClusterConsumerGroups请求参数结构体
5064
5504
 
@@ -5474,6 +5914,144 @@ PREPAID,包年包月
5474
5914
 
5475
5915
 
5476
5916
 
5917
+ class InstanceItemExtraInfo(AbstractModel):
5918
+ """4.x集群和5.0集群列表统一显示 4.x特殊数据承载接口
5919
+
5920
+ """
5921
+
5922
+ def __init__(self):
5923
+ r"""
5924
+ :param _IsVip: 是否vip
5925
+ 注意:此字段可能返回 null,表示取不到有效值。
5926
+ :type IsVip: bool
5927
+ :param _VipInstanceStatus: 4.x专享集群状态
5928
+ 注意:此字段可能返回 null,表示取不到有效值。
5929
+ :type VipInstanceStatus: int
5930
+ :param _MaxBandWidth: 专享集群峰值带宽
5931
+ 注意:此字段可能返回 null,表示取不到有效值。
5932
+ :type MaxBandWidth: int
5933
+ :param _SpecName: 专享集群规格
5934
+ 注意:此字段可能返回 null,表示取不到有效值。
5935
+ :type SpecName: str
5936
+ :param _NodeCount: 专享集群节点数量
5937
+ 注意:此字段可能返回 null,表示取不到有效值。
5938
+ :type NodeCount: int
5939
+ :param _MaxStorage: 专享集群最大存储
5940
+ 注意:此字段可能返回 null,表示取不到有效值。
5941
+ :type MaxStorage: int
5942
+ :param _MaxRetention: 专享集群最大保留时间
5943
+ 注意:此字段可能返回 null,表示取不到有效值。
5944
+ :type MaxRetention: int
5945
+ :param _MinRetention: 专项集群最大保留时间
5946
+ 注意:此字段可能返回 null,表示取不到有效值。
5947
+ :type MinRetention: int
5948
+ :param _InstanceStatus: 4.0共享集群
5949
+ 注意:此字段可能返回 null,表示取不到有效值。
5950
+ :type InstanceStatus: int
5951
+ """
5952
+ self._IsVip = None
5953
+ self._VipInstanceStatus = None
5954
+ self._MaxBandWidth = None
5955
+ self._SpecName = None
5956
+ self._NodeCount = None
5957
+ self._MaxStorage = None
5958
+ self._MaxRetention = None
5959
+ self._MinRetention = None
5960
+ self._InstanceStatus = None
5961
+
5962
+ @property
5963
+ def IsVip(self):
5964
+ return self._IsVip
5965
+
5966
+ @IsVip.setter
5967
+ def IsVip(self, IsVip):
5968
+ self._IsVip = IsVip
5969
+
5970
+ @property
5971
+ def VipInstanceStatus(self):
5972
+ return self._VipInstanceStatus
5973
+
5974
+ @VipInstanceStatus.setter
5975
+ def VipInstanceStatus(self, VipInstanceStatus):
5976
+ self._VipInstanceStatus = VipInstanceStatus
5977
+
5978
+ @property
5979
+ def MaxBandWidth(self):
5980
+ return self._MaxBandWidth
5981
+
5982
+ @MaxBandWidth.setter
5983
+ def MaxBandWidth(self, MaxBandWidth):
5984
+ self._MaxBandWidth = MaxBandWidth
5985
+
5986
+ @property
5987
+ def SpecName(self):
5988
+ return self._SpecName
5989
+
5990
+ @SpecName.setter
5991
+ def SpecName(self, SpecName):
5992
+ self._SpecName = SpecName
5993
+
5994
+ @property
5995
+ def NodeCount(self):
5996
+ return self._NodeCount
5997
+
5998
+ @NodeCount.setter
5999
+ def NodeCount(self, NodeCount):
6000
+ self._NodeCount = NodeCount
6001
+
6002
+ @property
6003
+ def MaxStorage(self):
6004
+ return self._MaxStorage
6005
+
6006
+ @MaxStorage.setter
6007
+ def MaxStorage(self, MaxStorage):
6008
+ self._MaxStorage = MaxStorage
6009
+
6010
+ @property
6011
+ def MaxRetention(self):
6012
+ return self._MaxRetention
6013
+
6014
+ @MaxRetention.setter
6015
+ def MaxRetention(self, MaxRetention):
6016
+ self._MaxRetention = MaxRetention
6017
+
6018
+ @property
6019
+ def MinRetention(self):
6020
+ return self._MinRetention
6021
+
6022
+ @MinRetention.setter
6023
+ def MinRetention(self, MinRetention):
6024
+ self._MinRetention = MinRetention
6025
+
6026
+ @property
6027
+ def InstanceStatus(self):
6028
+ return self._InstanceStatus
6029
+
6030
+ @InstanceStatus.setter
6031
+ def InstanceStatus(self, InstanceStatus):
6032
+ self._InstanceStatus = InstanceStatus
6033
+
6034
+
6035
+ def _deserialize(self, params):
6036
+ self._IsVip = params.get("IsVip")
6037
+ self._VipInstanceStatus = params.get("VipInstanceStatus")
6038
+ self._MaxBandWidth = params.get("MaxBandWidth")
6039
+ self._SpecName = params.get("SpecName")
6040
+ self._NodeCount = params.get("NodeCount")
6041
+ self._MaxStorage = params.get("MaxStorage")
6042
+ self._MaxRetention = params.get("MaxRetention")
6043
+ self._MinRetention = params.get("MinRetention")
6044
+ self._InstanceStatus = params.get("InstanceStatus")
6045
+ memeber_set = set(params.keys())
6046
+ for name, value in vars(self).items():
6047
+ property_name = name[1:]
6048
+ if property_name in memeber_set:
6049
+ memeber_set.remove(property_name)
6050
+ if len(memeber_set) > 0:
6051
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
6052
+
6053
+
6054
+
5477
6055
  class IpRule(AbstractModel):
5478
6056
  """IP规则
5479
6057
 
@@ -443,6 +443,34 @@ class TrocketClient(AbstractClient):
443
443
  raise TencentCloudSDKException(type(e).__name__, str(e))
444
444
 
445
445
 
446
+ def DescribeFusionInstanceList(self, request):
447
+ """获取实例列表,Filters参数使用说明如下:
448
+ 1. InstanceName, 名称模糊查询
449
+ 2. InstanceId,实例ID查询
450
+ 3. InstanceType, 实例类型查询,支持多选
451
+ 4. Version,实例版本查询
452
+ 当使用TagFilters查询时,Filters参数失效。
453
+
454
+ :param request: Request instance for DescribeFusionInstanceList.
455
+ :type request: :class:`tencentcloud.trocket.v20230308.models.DescribeFusionInstanceListRequest`
456
+ :rtype: :class:`tencentcloud.trocket.v20230308.models.DescribeFusionInstanceListResponse`
457
+
458
+ """
459
+ try:
460
+ params = request._serialize()
461
+ headers = request.headers
462
+ body = self.call("DescribeFusionInstanceList", params, headers=headers)
463
+ response = json.loads(body)
464
+ model = models.DescribeFusionInstanceListResponse()
465
+ model._deserialize(response["Response"])
466
+ return model
467
+ except Exception as e:
468
+ if isinstance(e, TencentCloudSDKException):
469
+ raise
470
+ else:
471
+ raise TencentCloudSDKException(type(e).__name__, str(e))
472
+
473
+
446
474
  def DescribeInstance(self, request):
447
475
  """查询实例信息
448
476
 
@@ -35,6 +35,9 @@ FAILEDOPERATION_CRUNSUPPORTMETHOD = 'FailedOperation.CRUnsupportMethod'
35
35
  # 房间中没有设置混流模板。
36
36
  FAILEDOPERATION_MIXSESSIONNOTEXIST = 'FailedOperation.MixSessionNotExist'
37
37
 
38
+ # 需要解锁所需能力位
39
+ FAILEDOPERATION_NOTABILITY = 'FailedOperation.NotAbility'
40
+
38
41
  # 未开通RTMP
39
42
  FAILEDOPERATION_NOTRTMPFUNCTION = 'FailedOperation.NotRtmpFunction'
40
43
 
@@ -53,9 +56,6 @@ FAILEDOPERATION_RESTRICTEDCONCURRENCY = 'FailedOperation.RestrictedConcurrency'
53
56
  # 房间不存在。
54
57
  FAILEDOPERATION_ROOMNOTEXIST = 'FailedOperation.RoomNotExist'
55
58
 
56
- # 该sdkappid没有开通AITranscription能力
57
- FAILEDOPERATION_SDKAPPIDNOTAITRANSCRIPTIONABILITY = 'FailedOperation.SdkAppIdNotAITranscriptionAbility'
58
-
59
59
  # 应用ID不存在。
60
60
  FAILEDOPERATION_SDKAPPIDNOTEXIST = 'FailedOperation.SdkAppIdNotExist'
61
61