tencentcloud-sdk-python 3.0.1364__py2.py3-none-any.whl → 3.0.1365__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/cdc/v20201214/cdc_client.py +46 -0
- tencentcloud/cdc/v20201214/errorcodes.py +18 -0
- tencentcloud/cdc/v20201214/models.py +173 -0
- tencentcloud/cdn/v20180606/models.py +15 -0
- tencentcloud/clb/v20180317/models.py +0 -2
- tencentcloud/cvm/v20170312/models.py +34 -0
- tencentcloud/dbbrain/v20210527/dbbrain_client.py +23 -0
- tencentcloud/dbbrain/v20210527/models.py +109 -0
- tencentcloud/dlc/v20210125/dlc_client.py +23 -0
- tencentcloud/dlc/v20210125/models.py +124 -0
- tencentcloud/lkeap/v20240522/lkeap_client.py +3 -3
- tencentcloud/monitor/v20180724/models.py +8 -8
- tencentcloud/monitor/v20180724/monitor_client.py +1 -1
- tencentcloud/mps/v20190612/errorcodes.py +6 -0
- tencentcloud/mps/v20190612/models.py +133 -8
- tencentcloud/ssm/v20190923/models.py +45 -0
- tencentcloud/tds/v20220801/models.py +441 -0
- tencentcloud/tds/v20220801/tds_client.py +23 -0
- tencentcloud/tem/v20210701/models.py +0 -498
- tencentcloud/teo/v20220901/models.py +4 -4
- tencentcloud/waf/v20180125/models.py +173 -0
- {tencentcloud_sdk_python-3.0.1364.dist-info → tencentcloud_sdk_python-3.0.1365.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1364.dist-info → tencentcloud_sdk_python-3.0.1365.dist-info}/RECORD +27 -27
- {tencentcloud_sdk_python-3.0.1364.dist-info → tencentcloud_sdk_python-3.0.1365.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1364.dist-info → tencentcloud_sdk_python-3.0.1365.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1364.dist-info → tencentcloud_sdk_python-3.0.1365.dist-info}/top_level.txt +0 -0
@@ -13105,6 +13105,130 @@ class DescribeAdvancedStoreLocationResponse(AbstractModel):
|
|
13105
13105
|
self._RequestId = params.get("RequestId")
|
13106
13106
|
|
13107
13107
|
|
13108
|
+
class DescribeClusterMonitorInfosRequest(AbstractModel):
|
13109
|
+
"""DescribeClusterMonitorInfos请求参数结构体
|
13110
|
+
|
13111
|
+
"""
|
13112
|
+
|
13113
|
+
def __init__(self):
|
13114
|
+
r"""
|
13115
|
+
:param _DataEngineId: 引擎Id
|
13116
|
+
:type DataEngineId: str
|
13117
|
+
:param _TimeStart: 任务创建时间的起始时间
|
13118
|
+
:type TimeStart: str
|
13119
|
+
:param _TimeEnd: 任务创建时间的结束时间
|
13120
|
+
:type TimeEnd: str
|
13121
|
+
:param _MetricName: 指标名称
|
13122
|
+
:type MetricName: str
|
13123
|
+
"""
|
13124
|
+
self._DataEngineId = None
|
13125
|
+
self._TimeStart = None
|
13126
|
+
self._TimeEnd = None
|
13127
|
+
self._MetricName = None
|
13128
|
+
|
13129
|
+
@property
|
13130
|
+
def DataEngineId(self):
|
13131
|
+
"""引擎Id
|
13132
|
+
:rtype: str
|
13133
|
+
"""
|
13134
|
+
return self._DataEngineId
|
13135
|
+
|
13136
|
+
@DataEngineId.setter
|
13137
|
+
def DataEngineId(self, DataEngineId):
|
13138
|
+
self._DataEngineId = DataEngineId
|
13139
|
+
|
13140
|
+
@property
|
13141
|
+
def TimeStart(self):
|
13142
|
+
"""任务创建时间的起始时间
|
13143
|
+
:rtype: str
|
13144
|
+
"""
|
13145
|
+
return self._TimeStart
|
13146
|
+
|
13147
|
+
@TimeStart.setter
|
13148
|
+
def TimeStart(self, TimeStart):
|
13149
|
+
self._TimeStart = TimeStart
|
13150
|
+
|
13151
|
+
@property
|
13152
|
+
def TimeEnd(self):
|
13153
|
+
"""任务创建时间的结束时间
|
13154
|
+
:rtype: str
|
13155
|
+
"""
|
13156
|
+
return self._TimeEnd
|
13157
|
+
|
13158
|
+
@TimeEnd.setter
|
13159
|
+
def TimeEnd(self, TimeEnd):
|
13160
|
+
self._TimeEnd = TimeEnd
|
13161
|
+
|
13162
|
+
@property
|
13163
|
+
def MetricName(self):
|
13164
|
+
"""指标名称
|
13165
|
+
:rtype: str
|
13166
|
+
"""
|
13167
|
+
return self._MetricName
|
13168
|
+
|
13169
|
+
@MetricName.setter
|
13170
|
+
def MetricName(self, MetricName):
|
13171
|
+
self._MetricName = MetricName
|
13172
|
+
|
13173
|
+
|
13174
|
+
def _deserialize(self, params):
|
13175
|
+
self._DataEngineId = params.get("DataEngineId")
|
13176
|
+
self._TimeStart = params.get("TimeStart")
|
13177
|
+
self._TimeEnd = params.get("TimeEnd")
|
13178
|
+
self._MetricName = params.get("MetricName")
|
13179
|
+
memeber_set = set(params.keys())
|
13180
|
+
for name, value in vars(self).items():
|
13181
|
+
property_name = name[1:]
|
13182
|
+
if property_name in memeber_set:
|
13183
|
+
memeber_set.remove(property_name)
|
13184
|
+
if len(memeber_set) > 0:
|
13185
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
13186
|
+
|
13187
|
+
|
13188
|
+
|
13189
|
+
class DescribeClusterMonitorInfosResponse(AbstractModel):
|
13190
|
+
"""DescribeClusterMonitorInfos返回参数结构体
|
13191
|
+
|
13192
|
+
"""
|
13193
|
+
|
13194
|
+
def __init__(self):
|
13195
|
+
r"""
|
13196
|
+
:param _Info: 集群监控信息列表
|
13197
|
+
:type Info: str
|
13198
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
13199
|
+
:type RequestId: str
|
13200
|
+
"""
|
13201
|
+
self._Info = None
|
13202
|
+
self._RequestId = None
|
13203
|
+
|
13204
|
+
@property
|
13205
|
+
def Info(self):
|
13206
|
+
"""集群监控信息列表
|
13207
|
+
:rtype: str
|
13208
|
+
"""
|
13209
|
+
return self._Info
|
13210
|
+
|
13211
|
+
@Info.setter
|
13212
|
+
def Info(self, Info):
|
13213
|
+
self._Info = Info
|
13214
|
+
|
13215
|
+
@property
|
13216
|
+
def RequestId(self):
|
13217
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
13218
|
+
:rtype: str
|
13219
|
+
"""
|
13220
|
+
return self._RequestId
|
13221
|
+
|
13222
|
+
@RequestId.setter
|
13223
|
+
def RequestId(self, RequestId):
|
13224
|
+
self._RequestId = RequestId
|
13225
|
+
|
13226
|
+
|
13227
|
+
def _deserialize(self, params):
|
13228
|
+
self._Info = params.get("Info")
|
13229
|
+
self._RequestId = params.get("RequestId")
|
13230
|
+
|
13231
|
+
|
13108
13232
|
class DescribeDLCCatalogAccessRequest(AbstractModel):
|
13109
13233
|
"""DescribeDLCCatalogAccess请求参数结构体
|
13110
13234
|
|
@@ -38,14 +38,14 @@ class LkeapClient(AbstractClient):
|
|
38
38
|
#### 已支持的模型
|
39
39
|
- DeepSeek-V3-0324(model 参数值为**deepseek-v3-0324**)
|
40
40
|
- DeepSeek-V3-0324为671B参数MoE模型,在编程与技术能力、上下文理解与长文本处理等方面优势突出。
|
41
|
-
- 支持
|
41
|
+
- 支持128K上下文长度,最大输出16k(不含思维链)。
|
42
42
|
- 注意:相比于DeepSeek-V3,DeepSeek-V3-0324仅更新了模型权重,未增加参数量。总模型大小为685B,其中包括671B的主模型权重和 14B 的多令牌预测(MTP)模块权重,后续均描述主模型参数量。
|
43
43
|
- DeepSeek-V3(model 参数值为**deepseek-v3**)
|
44
44
|
- DeepSeek-V3为671B参数MoE模型,在百科知识、数学推理等多项任务上优势突出,评测成绩在主流榜单中位列开源模型榜首。
|
45
|
-
- 支持64K
|
45
|
+
- 支持64K上下文长度,最大输出16k。
|
46
46
|
- DeepSeek-R1(model 参数值为**deepseek-r1**)
|
47
47
|
- DeepSeek-R1为671B模型,使用强化学习训练,推理过程包含大量反思和验证,思维链长度可达数万字。 该系列模型在数学、代码以及各种复杂逻辑推理任务上推理效果优异,并为用户展现了完整的思考过程。
|
48
|
-
- 支持64K
|
48
|
+
- 支持64K上下文长度,最大输出16k。
|
49
49
|
|
50
50
|
### 计费说明
|
51
51
|
|
@@ -38568,7 +38568,7 @@ class UpdateAlertRuleRequest(AbstractModel):
|
|
38568
38568
|
|
38569
38569
|
def __init__(self):
|
38570
38570
|
r"""
|
38571
|
-
:param _RuleId: Prometheus
|
38571
|
+
:param _RuleId: Prometheus 告警规则 ID
|
38572
38572
|
:type RuleId: str
|
38573
38573
|
:param _InstanceId: Prometheus 实例 ID
|
38574
38574
|
:type InstanceId: str
|
@@ -38586,13 +38586,13 @@ class UpdateAlertRuleRequest(AbstractModel):
|
|
38586
38586
|
:type Duration: str
|
38587
38587
|
:param _Receivers: 告警规则接收组列表(当前规则绑定的接收组列表可通过 DescribeAlertRules 接口获取;用户已有的接收组列表可通过 DescribeAlarmNotices 接口获取)
|
38588
38588
|
:type Receivers: list of str
|
38589
|
-
:param _Labels:
|
38589
|
+
:param _Labels: 告警规则标签列表
|
38590
38590
|
:type Labels: list of PrometheusRuleKV
|
38591
|
-
:param _Annotations:
|
38591
|
+
:param _Annotations: 告警规则注释列表。
|
38592
38592
|
|
38593
38593
|
告警对象和告警消息是 Prometheus Rule Annotations 的特殊字段,需要通过 annotations 来传递,对应的 Key 分别为summary/description。
|
38594
38594
|
:type Annotations: list of PrometheusRuleKV
|
38595
|
-
:param _Type:
|
38595
|
+
:param _Type: 告警策略模板分类(自定义,可不填)
|
38596
38596
|
:type Type: str
|
38597
38597
|
"""
|
38598
38598
|
self._RuleId = None
|
@@ -38608,7 +38608,7 @@ class UpdateAlertRuleRequest(AbstractModel):
|
|
38608
38608
|
|
38609
38609
|
@property
|
38610
38610
|
def RuleId(self):
|
38611
|
-
"""Prometheus
|
38611
|
+
"""Prometheus 告警规则 ID
|
38612
38612
|
:rtype: str
|
38613
38613
|
"""
|
38614
38614
|
return self._RuleId
|
@@ -38689,7 +38689,7 @@ class UpdateAlertRuleRequest(AbstractModel):
|
|
38689
38689
|
|
38690
38690
|
@property
|
38691
38691
|
def Labels(self):
|
38692
|
-
"""
|
38692
|
+
"""告警规则标签列表
|
38693
38693
|
:rtype: list of PrometheusRuleKV
|
38694
38694
|
"""
|
38695
38695
|
return self._Labels
|
@@ -38700,7 +38700,7 @@ class UpdateAlertRuleRequest(AbstractModel):
|
|
38700
38700
|
|
38701
38701
|
@property
|
38702
38702
|
def Annotations(self):
|
38703
|
-
"""
|
38703
|
+
"""告警规则注释列表。
|
38704
38704
|
|
38705
38705
|
告警对象和告警消息是 Prometheus Rule Annotations 的特殊字段,需要通过 annotations 来传递,对应的 Key 分别为summary/description。
|
38706
38706
|
:rtype: list of PrometheusRuleKV
|
@@ -38713,7 +38713,7 @@ class UpdateAlertRuleRequest(AbstractModel):
|
|
38713
38713
|
|
38714
38714
|
@property
|
38715
38715
|
def Type(self):
|
38716
|
-
"""
|
38716
|
+
"""告警策略模板分类(自定义,可不填)
|
38717
38717
|
:rtype: str
|
38718
38718
|
"""
|
38719
38719
|
return self._Type
|
@@ -3391,7 +3391,7 @@ class MonitorClient(AbstractClient):
|
|
3391
3391
|
def UpdateAlertRule(self, request):
|
3392
3392
|
"""更新 Prometheus 的告警规则。
|
3393
3393
|
|
3394
|
-
请注意,**告警对象和告警消息是 Prometheus Rule Annotations 的特殊字段,需要通过 annotations 来传递,对应的 Key 分别为summary/description
|
3394
|
+
请注意,**告警对象和告警消息是 Prometheus Rule Annotations 的特殊字段,需要通过 annotations 来传递,对应的 Key 分别为summary/description**,请参考 [Prometheus Rule更多配置请参考](https://prometheus.io/docs/prometheus/latest/configuration/alerting_rules/)。
|
3395
3395
|
|
3396
3396
|
:param request: Request instance for UpdateAlertRule.
|
3397
3397
|
:type request: :class:`tencentcloud.monitor.v20180724.models.UpdateAlertRuleRequest`
|
@@ -398,6 +398,12 @@ INVALIDPARAMETERVALUE_XPOS = 'InvalidParameterValue.XPos'
|
|
398
398
|
# 水印原点距离视频图像坐标原点的垂直位置。支持 %、px 两种格式。
|
399
399
|
INVALIDPARAMETERVALUE_YPOS = 'InvalidParameterValue.YPos'
|
400
400
|
|
401
|
+
# 热词库创建数量到达默认上限
|
402
|
+
LIMITEXCEEDED_TOOMUCHHOTWORDS = 'LimitExceeded.TooMuchHotWords'
|
403
|
+
|
404
|
+
# 大型热词库创建到达上限
|
405
|
+
LIMITEXCEEDED_TOOMUCHLARGEHOTWORDS = 'LimitExceeded.TooMuchLargeHotWords'
|
406
|
+
|
401
407
|
# 超过限制值:模板数超限。
|
402
408
|
LIMITEXCEEDED_TOOMUCHTEMPLATE = 'LimitExceeded.TooMuchTemplate'
|
403
409
|
|
@@ -17363,20 +17363,23 @@ class CreateLiveRecordTemplateRequest(AbstractModel):
|
|
17363
17363
|
|
17364
17364
|
def __init__(self):
|
17365
17365
|
r"""
|
17366
|
-
:param _HLSConfigure: HLS
|
17366
|
+
:param _HLSConfigure: HLS配置参数,和MP4Configure需要二选一必填。
|
17367
17367
|
:type HLSConfigure: :class:`tencentcloud.mps.v20190612.models.HLSConfigureInfo`
|
17368
|
+
:param _MP4Configure: MP4配置参数,和HLSConfigure需要二选一必填。
|
17369
|
+
:type MP4Configure: :class:`tencentcloud.mps.v20190612.models.MP4ConfigureInfo`
|
17368
17370
|
:param _Name: 录制模板名称,长度限制:64 个字符。
|
17369
17371
|
:type Name: str
|
17370
17372
|
:param _Comment: 模板描述信息,长度限制:256 个字符。
|
17371
17373
|
:type Comment: str
|
17372
17374
|
"""
|
17373
17375
|
self._HLSConfigure = None
|
17376
|
+
self._MP4Configure = None
|
17374
17377
|
self._Name = None
|
17375
17378
|
self._Comment = None
|
17376
17379
|
|
17377
17380
|
@property
|
17378
17381
|
def HLSConfigure(self):
|
17379
|
-
"""HLS
|
17382
|
+
"""HLS配置参数,和MP4Configure需要二选一必填。
|
17380
17383
|
:rtype: :class:`tencentcloud.mps.v20190612.models.HLSConfigureInfo`
|
17381
17384
|
"""
|
17382
17385
|
return self._HLSConfigure
|
@@ -17385,6 +17388,17 @@ class CreateLiveRecordTemplateRequest(AbstractModel):
|
|
17385
17388
|
def HLSConfigure(self, HLSConfigure):
|
17386
17389
|
self._HLSConfigure = HLSConfigure
|
17387
17390
|
|
17391
|
+
@property
|
17392
|
+
def MP4Configure(self):
|
17393
|
+
"""MP4配置参数,和HLSConfigure需要二选一必填。
|
17394
|
+
:rtype: :class:`tencentcloud.mps.v20190612.models.MP4ConfigureInfo`
|
17395
|
+
"""
|
17396
|
+
return self._MP4Configure
|
17397
|
+
|
17398
|
+
@MP4Configure.setter
|
17399
|
+
def MP4Configure(self, MP4Configure):
|
17400
|
+
self._MP4Configure = MP4Configure
|
17401
|
+
|
17388
17402
|
@property
|
17389
17403
|
def Name(self):
|
17390
17404
|
"""录制模板名称,长度限制:64 个字符。
|
@@ -17412,6 +17426,9 @@ class CreateLiveRecordTemplateRequest(AbstractModel):
|
|
17412
17426
|
if params.get("HLSConfigure") is not None:
|
17413
17427
|
self._HLSConfigure = HLSConfigureInfo()
|
17414
17428
|
self._HLSConfigure._deserialize(params.get("HLSConfigure"))
|
17429
|
+
if params.get("MP4Configure") is not None:
|
17430
|
+
self._MP4Configure = MP4ConfigureInfo()
|
17431
|
+
self._MP4Configure._deserialize(params.get("MP4Configure"))
|
17415
17432
|
self._Name = params.get("Name")
|
17416
17433
|
self._Comment = params.get("Comment")
|
17417
17434
|
memeber_set = set(params.keys())
|
@@ -36110,6 +36127,8 @@ class LiveRecordTemplate(AbstractModel):
|
|
36110
36127
|
:type Definition: int
|
36111
36128
|
:param _HLSConfigure: HLS 配置参数
|
36112
36129
|
:type HLSConfigure: :class:`tencentcloud.mps.v20190612.models.HLSConfigureInfo`
|
36130
|
+
:param _MP4Configure: MP4配置参数
|
36131
|
+
:type MP4Configure: :class:`tencentcloud.mps.v20190612.models.MP4ConfigureInfo`
|
36113
36132
|
:param _Name: 录制模板名称。
|
36114
36133
|
:type Name: str
|
36115
36134
|
:param _Comment: 模板描述信息。
|
@@ -36125,6 +36144,7 @@ class LiveRecordTemplate(AbstractModel):
|
|
36125
36144
|
"""
|
36126
36145
|
self._Definition = None
|
36127
36146
|
self._HLSConfigure = None
|
36147
|
+
self._MP4Configure = None
|
36128
36148
|
self._Name = None
|
36129
36149
|
self._Comment = None
|
36130
36150
|
self._Type = None
|
@@ -36153,6 +36173,17 @@ class LiveRecordTemplate(AbstractModel):
|
|
36153
36173
|
def HLSConfigure(self, HLSConfigure):
|
36154
36174
|
self._HLSConfigure = HLSConfigure
|
36155
36175
|
|
36176
|
+
@property
|
36177
|
+
def MP4Configure(self):
|
36178
|
+
"""MP4配置参数
|
36179
|
+
:rtype: :class:`tencentcloud.mps.v20190612.models.MP4ConfigureInfo`
|
36180
|
+
"""
|
36181
|
+
return self._MP4Configure
|
36182
|
+
|
36183
|
+
@MP4Configure.setter
|
36184
|
+
def MP4Configure(self, MP4Configure):
|
36185
|
+
self._MP4Configure = MP4Configure
|
36186
|
+
|
36156
36187
|
@property
|
36157
36188
|
def Name(self):
|
36158
36189
|
"""录制模板名称。
|
@@ -36216,6 +36247,9 @@ class LiveRecordTemplate(AbstractModel):
|
|
36216
36247
|
if params.get("HLSConfigure") is not None:
|
36217
36248
|
self._HLSConfigure = HLSConfigureInfo()
|
36218
36249
|
self._HLSConfigure._deserialize(params.get("HLSConfigure"))
|
36250
|
+
if params.get("MP4Configure") is not None:
|
36251
|
+
self._MP4Configure = MP4ConfigureInfo()
|
36252
|
+
self._MP4Configure._deserialize(params.get("MP4Configure"))
|
36219
36253
|
self._Name = params.get("Name")
|
36220
36254
|
self._Comment = params.get("Comment")
|
36221
36255
|
self._Type = params.get("Type")
|
@@ -39030,6 +39064,42 @@ class LowLightEnhanceConfig(AbstractModel):
|
|
39030
39064
|
|
39031
39065
|
|
39032
39066
|
|
39067
|
+
class MP4ConfigureInfo(AbstractModel):
|
39068
|
+
"""MP4配置参数
|
39069
|
+
|
39070
|
+
"""
|
39071
|
+
|
39072
|
+
def __init__(self):
|
39073
|
+
r"""
|
39074
|
+
:param _Interval: 录制周期,单位:秒,取值范围 10 分钟到720分钟。默认值:60分钟(3600秒)。
|
39075
|
+
:type Interval: int
|
39076
|
+
"""
|
39077
|
+
self._Interval = None
|
39078
|
+
|
39079
|
+
@property
|
39080
|
+
def Interval(self):
|
39081
|
+
"""录制周期,单位:秒,取值范围 10 分钟到720分钟。默认值:60分钟(3600秒)。
|
39082
|
+
:rtype: int
|
39083
|
+
"""
|
39084
|
+
return self._Interval
|
39085
|
+
|
39086
|
+
@Interval.setter
|
39087
|
+
def Interval(self, Interval):
|
39088
|
+
self._Interval = Interval
|
39089
|
+
|
39090
|
+
|
39091
|
+
def _deserialize(self, params):
|
39092
|
+
self._Interval = params.get("Interval")
|
39093
|
+
memeber_set = set(params.keys())
|
39094
|
+
for name, value in vars(self).items():
|
39095
|
+
property_name = name[1:]
|
39096
|
+
if property_name in memeber_set:
|
39097
|
+
memeber_set.remove(property_name)
|
39098
|
+
if len(memeber_set) > 0:
|
39099
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
39100
|
+
|
39101
|
+
|
39102
|
+
|
39033
39103
|
class ManageTaskRequest(AbstractModel):
|
39034
39104
|
"""ManageTask请求参数结构体
|
39035
39105
|
|
@@ -43659,7 +43729,10 @@ class ModifyAsrHotwordsRequest(AbstractModel):
|
|
43659
43729
|
|
43660
43730
|
def __init__(self):
|
43661
43731
|
r"""
|
43662
|
-
:param _HotwordsId: 热词库 id
|
43732
|
+
:param _HotwordsId: 热词库 id
|
43733
|
+
如果热词库是文本热词:Name 和 Content 至少填一个
|
43734
|
+
如果热词库是:Name、FileContent 和 FileName 至少填一个
|
43735
|
+
|
43663
43736
|
:type HotwordsId: str
|
43664
43737
|
:param _Name: 热词库名称
|
43665
43738
|
:type Name: str
|
@@ -43681,7 +43754,10 @@ class ModifyAsrHotwordsRequest(AbstractModel):
|
|
43681
43754
|
|
43682
43755
|
@property
|
43683
43756
|
def HotwordsId(self):
|
43684
|
-
"""热词库 id
|
43757
|
+
"""热词库 id
|
43758
|
+
如果热词库是文本热词:Name 和 Content 至少填一个
|
43759
|
+
如果热词库是:Name、FileContent 和 FileName 至少填一个
|
43760
|
+
|
43685
43761
|
:rtype: str
|
43686
43762
|
"""
|
43687
43763
|
return self._HotwordsId
|
@@ -44520,8 +44596,10 @@ class ModifyLiveRecordTemplateRequest(AbstractModel):
|
|
44520
44596
|
r"""
|
44521
44597
|
:param _Definition: 录制模板唯一标识。
|
44522
44598
|
:type Definition: int
|
44523
|
-
:param _HLSConfigure: HLS
|
44599
|
+
:param _HLSConfigure: HLS配置参数,和MP4Configure需要二选一必填。
|
44524
44600
|
:type HLSConfigure: :class:`tencentcloud.mps.v20190612.models.HLSConfigureInfo`
|
44601
|
+
:param _MP4Configure: MP4配置参数,和HLSConfigure需要二选一必填。
|
44602
|
+
:type MP4Configure: :class:`tencentcloud.mps.v20190612.models.MP4ConfigureInfo`
|
44525
44603
|
:param _Name: 录制模板名称,长度限制:64 个字符。
|
44526
44604
|
:type Name: str
|
44527
44605
|
:param _Comment: 模板描述信息,长度限制:256 个字符。
|
@@ -44529,6 +44607,7 @@ class ModifyLiveRecordTemplateRequest(AbstractModel):
|
|
44529
44607
|
"""
|
44530
44608
|
self._Definition = None
|
44531
44609
|
self._HLSConfigure = None
|
44610
|
+
self._MP4Configure = None
|
44532
44611
|
self._Name = None
|
44533
44612
|
self._Comment = None
|
44534
44613
|
|
@@ -44545,7 +44624,7 @@ class ModifyLiveRecordTemplateRequest(AbstractModel):
|
|
44545
44624
|
|
44546
44625
|
@property
|
44547
44626
|
def HLSConfigure(self):
|
44548
|
-
"""HLS
|
44627
|
+
"""HLS配置参数,和MP4Configure需要二选一必填。
|
44549
44628
|
:rtype: :class:`tencentcloud.mps.v20190612.models.HLSConfigureInfo`
|
44550
44629
|
"""
|
44551
44630
|
return self._HLSConfigure
|
@@ -44554,6 +44633,17 @@ class ModifyLiveRecordTemplateRequest(AbstractModel):
|
|
44554
44633
|
def HLSConfigure(self, HLSConfigure):
|
44555
44634
|
self._HLSConfigure = HLSConfigure
|
44556
44635
|
|
44636
|
+
@property
|
44637
|
+
def MP4Configure(self):
|
44638
|
+
"""MP4配置参数,和HLSConfigure需要二选一必填。
|
44639
|
+
:rtype: :class:`tencentcloud.mps.v20190612.models.MP4ConfigureInfo`
|
44640
|
+
"""
|
44641
|
+
return self._MP4Configure
|
44642
|
+
|
44643
|
+
@MP4Configure.setter
|
44644
|
+
def MP4Configure(self, MP4Configure):
|
44645
|
+
self._MP4Configure = MP4Configure
|
44646
|
+
|
44557
44647
|
@property
|
44558
44648
|
def Name(self):
|
44559
44649
|
"""录制模板名称,长度限制:64 个字符。
|
@@ -44582,6 +44672,9 @@ class ModifyLiveRecordTemplateRequest(AbstractModel):
|
|
44582
44672
|
if params.get("HLSConfigure") is not None:
|
44583
44673
|
self._HLSConfigure = HLSConfigureInfo()
|
44584
44674
|
self._HLSConfigure._deserialize(params.get("HLSConfigure"))
|
44675
|
+
if params.get("MP4Configure") is not None:
|
44676
|
+
self._MP4Configure = MP4ConfigureInfo()
|
44677
|
+
self._MP4Configure._deserialize(params.get("MP4Configure"))
|
44585
44678
|
self._Name = params.get("Name")
|
44586
44679
|
self._Comment = params.get("Comment")
|
44587
44680
|
memeber_set = set(params.keys())
|
@@ -50839,9 +50932,12 @@ class QualityControlData(AbstractModel):
|
|
50839
50932
|
:param _NoVideo: 为true时表示视频无视频轨。
|
50840
50933
|
注意:此字段可能返回 null,表示取不到有效值。
|
50841
50934
|
:type NoVideo: bool
|
50842
|
-
:param _QualityEvaluationScore:
|
50935
|
+
:param _QualityEvaluationScore: 视频无参考质量评分,百分制。
|
50843
50936
|
注意:此字段可能返回 null,表示取不到有效值。
|
50844
50937
|
:type QualityEvaluationScore: int
|
50938
|
+
:param _QualityEvaluationMeanOpinionScore: 视频无参考质量评分,MOS分数。
|
50939
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
50940
|
+
:type QualityEvaluationMeanOpinionScore: float
|
50845
50941
|
:param _QualityControlResultSet: 内容质检检出异常项。
|
50846
50942
|
注意:此字段可能返回 null,表示取不到有效值。
|
50847
50943
|
:type QualityControlResultSet: list of QualityControlResult
|
@@ -50852,6 +50948,7 @@ class QualityControlData(AbstractModel):
|
|
50852
50948
|
self._NoAudio = None
|
50853
50949
|
self._NoVideo = None
|
50854
50950
|
self._QualityEvaluationScore = None
|
50951
|
+
self._QualityEvaluationMeanOpinionScore = None
|
50855
50952
|
self._QualityControlResultSet = None
|
50856
50953
|
self._ContainerDiagnoseResultSet = None
|
50857
50954
|
|
@@ -50881,7 +50978,7 @@ class QualityControlData(AbstractModel):
|
|
50881
50978
|
|
50882
50979
|
@property
|
50883
50980
|
def QualityEvaluationScore(self):
|
50884
|
-
"""
|
50981
|
+
"""视频无参考质量评分,百分制。
|
50885
50982
|
注意:此字段可能返回 null,表示取不到有效值。
|
50886
50983
|
:rtype: int
|
50887
50984
|
"""
|
@@ -50891,6 +50988,18 @@ class QualityControlData(AbstractModel):
|
|
50891
50988
|
def QualityEvaluationScore(self, QualityEvaluationScore):
|
50892
50989
|
self._QualityEvaluationScore = QualityEvaluationScore
|
50893
50990
|
|
50991
|
+
@property
|
50992
|
+
def QualityEvaluationMeanOpinionScore(self):
|
50993
|
+
"""视频无参考质量评分,MOS分数。
|
50994
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
50995
|
+
:rtype: float
|
50996
|
+
"""
|
50997
|
+
return self._QualityEvaluationMeanOpinionScore
|
50998
|
+
|
50999
|
+
@QualityEvaluationMeanOpinionScore.setter
|
51000
|
+
def QualityEvaluationMeanOpinionScore(self, QualityEvaluationMeanOpinionScore):
|
51001
|
+
self._QualityEvaluationMeanOpinionScore = QualityEvaluationMeanOpinionScore
|
51002
|
+
|
50894
51003
|
@property
|
50895
51004
|
def QualityControlResultSet(self):
|
50896
51005
|
"""内容质检检出异常项。
|
@@ -50920,6 +51029,7 @@ class QualityControlData(AbstractModel):
|
|
50920
51029
|
self._NoAudio = params.get("NoAudio")
|
50921
51030
|
self._NoVideo = params.get("NoVideo")
|
50922
51031
|
self._QualityEvaluationScore = params.get("QualityEvaluationScore")
|
51032
|
+
self._QualityEvaluationMeanOpinionScore = params.get("QualityEvaluationMeanOpinionScore")
|
50923
51033
|
if params.get("QualityControlResultSet") is not None:
|
50924
51034
|
self._QualityControlResultSet = []
|
50925
51035
|
for item in params.get("QualityControlResultSet"):
|
@@ -62711,10 +62821,13 @@ class WordResult(AbstractModel):
|
|
62711
62821
|
:type Start: float
|
62712
62822
|
:param _End: 字词结束时间戳,单位秒。
|
62713
62823
|
:type End: float
|
62824
|
+
:param _Trans: 翻译文本
|
62825
|
+
:type Trans: str
|
62714
62826
|
"""
|
62715
62827
|
self._Word = None
|
62716
62828
|
self._Start = None
|
62717
62829
|
self._End = None
|
62830
|
+
self._Trans = None
|
62718
62831
|
|
62719
62832
|
@property
|
62720
62833
|
def Word(self):
|
@@ -62749,11 +62862,23 @@ class WordResult(AbstractModel):
|
|
62749
62862
|
def End(self, End):
|
62750
62863
|
self._End = End
|
62751
62864
|
|
62865
|
+
@property
|
62866
|
+
def Trans(self):
|
62867
|
+
"""翻译文本
|
62868
|
+
:rtype: str
|
62869
|
+
"""
|
62870
|
+
return self._Trans
|
62871
|
+
|
62872
|
+
@Trans.setter
|
62873
|
+
def Trans(self, Trans):
|
62874
|
+
self._Trans = Trans
|
62875
|
+
|
62752
62876
|
|
62753
62877
|
def _deserialize(self, params):
|
62754
62878
|
self._Word = params.get("Word")
|
62755
62879
|
self._Start = params.get("Start")
|
62756
62880
|
self._End = params.get("End")
|
62881
|
+
self._Trans = params.get("Trans")
|
62757
62882
|
memeber_set = set(params.keys())
|
62758
62883
|
for name, value in vars(self).items():
|
62759
62884
|
property_name = name[1:]
|
@@ -61,6 +61,8 @@ False -- 不开启
|
|
61
61
|
:type EnableRotation: bool
|
62
62
|
:param _RotationFrequency: 轮转周期,以天为单位,默认为1天。
|
63
63
|
:type RotationFrequency: int
|
64
|
+
:param _KmsHsmClusterId: KMS的独享集群的ID。当KmsKeyId为空,并且用户的KMS存在有效的HsmClusterId时有效。
|
65
|
+
:type KmsHsmClusterId: str
|
64
66
|
"""
|
65
67
|
self._SecretName = None
|
66
68
|
self._UserNamePrefix = None
|
@@ -74,6 +76,7 @@ False -- 不开启
|
|
74
76
|
self._RotationBeginTime = None
|
75
77
|
self._EnableRotation = None
|
76
78
|
self._RotationFrequency = None
|
79
|
+
self._KmsHsmClusterId = None
|
77
80
|
|
78
81
|
@property
|
79
82
|
def SecretName(self):
|
@@ -219,6 +222,17 @@ False -- 不开启
|
|
219
222
|
def RotationFrequency(self, RotationFrequency):
|
220
223
|
self._RotationFrequency = RotationFrequency
|
221
224
|
|
225
|
+
@property
|
226
|
+
def KmsHsmClusterId(self):
|
227
|
+
"""KMS的独享集群的ID。当KmsKeyId为空,并且用户的KMS存在有效的HsmClusterId时有效。
|
228
|
+
:rtype: str
|
229
|
+
"""
|
230
|
+
return self._KmsHsmClusterId
|
231
|
+
|
232
|
+
@KmsHsmClusterId.setter
|
233
|
+
def KmsHsmClusterId(self, KmsHsmClusterId):
|
234
|
+
self._KmsHsmClusterId = KmsHsmClusterId
|
235
|
+
|
222
236
|
|
223
237
|
def _deserialize(self, params):
|
224
238
|
self._SecretName = params.get("SecretName")
|
@@ -243,6 +257,7 @@ False -- 不开启
|
|
243
257
|
self._RotationBeginTime = params.get("RotationBeginTime")
|
244
258
|
self._EnableRotation = params.get("EnableRotation")
|
245
259
|
self._RotationFrequency = params.get("RotationFrequency")
|
260
|
+
self._KmsHsmClusterId = params.get("KmsHsmClusterId")
|
246
261
|
memeber_set = set(params.keys())
|
247
262
|
for name, value in vars(self).items():
|
248
263
|
property_name = name[1:]
|
@@ -362,6 +377,8 @@ class CreateSSHKeyPairSecretRequest(AbstractModel):
|
|
362
377
|
:type Tags: list of Tag
|
363
378
|
:param _SSHKeyName: 用户自定义输入的SSH密钥对的名称,可由数字,字母和下划线组成,只能以数字和字母开头,长度不超过25个字符。
|
364
379
|
:type SSHKeyName: str
|
380
|
+
:param _KmsHsmClusterId: KMS的独享集群的ID。当KmsKeyId为空,并且用户的KMS存在有效的HsmClusterId时有效。
|
381
|
+
:type KmsHsmClusterId: str
|
365
382
|
"""
|
366
383
|
self._SecretName = None
|
367
384
|
self._ProjectId = None
|
@@ -369,6 +386,7 @@ class CreateSSHKeyPairSecretRequest(AbstractModel):
|
|
369
386
|
self._KmsKeyId = None
|
370
387
|
self._Tags = None
|
371
388
|
self._SSHKeyName = None
|
389
|
+
self._KmsHsmClusterId = None
|
372
390
|
|
373
391
|
@property
|
374
392
|
def SecretName(self):
|
@@ -438,6 +456,17 @@ class CreateSSHKeyPairSecretRequest(AbstractModel):
|
|
438
456
|
def SSHKeyName(self, SSHKeyName):
|
439
457
|
self._SSHKeyName = SSHKeyName
|
440
458
|
|
459
|
+
@property
|
460
|
+
def KmsHsmClusterId(self):
|
461
|
+
"""KMS的独享集群的ID。当KmsKeyId为空,并且用户的KMS存在有效的HsmClusterId时有效。
|
462
|
+
:rtype: str
|
463
|
+
"""
|
464
|
+
return self._KmsHsmClusterId
|
465
|
+
|
466
|
+
@KmsHsmClusterId.setter
|
467
|
+
def KmsHsmClusterId(self, KmsHsmClusterId):
|
468
|
+
self._KmsHsmClusterId = KmsHsmClusterId
|
469
|
+
|
441
470
|
|
442
471
|
def _deserialize(self, params):
|
443
472
|
self._SecretName = params.get("SecretName")
|
@@ -451,6 +480,7 @@ class CreateSSHKeyPairSecretRequest(AbstractModel):
|
|
451
480
|
obj._deserialize(item)
|
452
481
|
self._Tags.append(obj)
|
453
482
|
self._SSHKeyName = params.get("SSHKeyName")
|
483
|
+
self._KmsHsmClusterId = params.get("KmsHsmClusterId")
|
454
484
|
memeber_set = set(params.keys())
|
455
485
|
for name, value in vars(self).items():
|
456
486
|
property_name = name[1:]
|
@@ -589,6 +619,8 @@ class CreateSecretRequest(AbstractModel):
|
|
589
619
|
:type AdditionalConfig: str
|
590
620
|
:param _Tags: 标签列表
|
591
621
|
:type Tags: list of Tag
|
622
|
+
:param _KmsHsmClusterId: KMS的独享集群的ID。当KmsKeyId为空,并且用户的KMS存在有效的HsmClusterId时有效。
|
623
|
+
:type KmsHsmClusterId: str
|
592
624
|
"""
|
593
625
|
self._SecretName = None
|
594
626
|
self._VersionId = None
|
@@ -599,6 +631,7 @@ class CreateSecretRequest(AbstractModel):
|
|
599
631
|
self._SecretString = None
|
600
632
|
self._AdditionalConfig = None
|
601
633
|
self._Tags = None
|
634
|
+
self._KmsHsmClusterId = None
|
602
635
|
|
603
636
|
@property
|
604
637
|
def SecretName(self):
|
@@ -699,6 +732,17 @@ class CreateSecretRequest(AbstractModel):
|
|
699
732
|
def Tags(self, Tags):
|
700
733
|
self._Tags = Tags
|
701
734
|
|
735
|
+
@property
|
736
|
+
def KmsHsmClusterId(self):
|
737
|
+
"""KMS的独享集群的ID。当KmsKeyId为空,并且用户的KMS存在有效的HsmClusterId时有效。
|
738
|
+
:rtype: str
|
739
|
+
"""
|
740
|
+
return self._KmsHsmClusterId
|
741
|
+
|
742
|
+
@KmsHsmClusterId.setter
|
743
|
+
def KmsHsmClusterId(self, KmsHsmClusterId):
|
744
|
+
self._KmsHsmClusterId = KmsHsmClusterId
|
745
|
+
|
702
746
|
|
703
747
|
def _deserialize(self, params):
|
704
748
|
self._SecretName = params.get("SecretName")
|
@@ -715,6 +759,7 @@ class CreateSecretRequest(AbstractModel):
|
|
715
759
|
obj = Tag()
|
716
760
|
obj._deserialize(item)
|
717
761
|
self._Tags.append(obj)
|
762
|
+
self._KmsHsmClusterId = params.get("KmsHsmClusterId")
|
718
763
|
memeber_set = set(params.keys())
|
719
764
|
for name, value in vars(self).items():
|
720
765
|
property_name = name[1:]
|