tencentcloud-sdk-python 3.0.1368__py2.py3-none-any.whl → 3.0.1370__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/autoscaling/v20180419/autoscaling_client.py +2 -1
- tencentcloud/autoscaling/v20180419/models.py +198 -102
- tencentcloud/cbs/v20170312/cbs_client.py +1 -1
- tencentcloud/cbs/v20170312/models.py +41 -44
- tencentcloud/ccc/v20200210/models.py +15 -0
- tencentcloud/cdn/v20180606/cdn_client.py +70 -24
- tencentcloud/cdn/v20180606/models.py +4 -4
- tencentcloud/cfs/v20190719/models.py +15 -0
- tencentcloud/chc/v20230418/models.py +15 -0
- tencentcloud/cvm/v20170312/cvm_client.py +1 -1
- tencentcloud/cvm/v20170312/errorcodes.py +1 -1
- tencentcloud/cvm/v20170312/models.py +83 -40
- tencentcloud/dc/v20180410/models.py +25 -12
- tencentcloud/domain/v20180808/domain_client.py +4 -2
- tencentcloud/domain/v20180808/errorcodes.py +3 -0
- tencentcloud/domain/v20180808/models.py +584 -158
- tencentcloud/dsgc/v20190723/models.py +15 -0
- tencentcloud/dts/v20211206/models.py +0 -15
- tencentcloud/ecdn/v20191012/ecdn_client.py +18 -6
- tencentcloud/hai/v20230812/errorcodes.py +6 -0
- tencentcloud/hai/v20230812/hai_client.py +23 -0
- tencentcloud/hai/v20230812/models.py +109 -0
- tencentcloud/ims/v20201229/models.py +21 -2
- tencentcloud/ioa/v20220601/models.py +19 -4
- tencentcloud/iotexplorer/v20190423/models.py +94 -4
- tencentcloud/iotvideoindustry/v20201201/models.py +15 -0
- tencentcloud/iss/v20230517/errorcodes.py +6 -0
- tencentcloud/iss/v20230517/iss_client.py +115 -0
- tencentcloud/iss/v20230517/models.py +1095 -12
- tencentcloud/lcic/v20220817/errorcodes.py +1 -1
- tencentcloud/lke/v20231130/models.py +78 -6
- tencentcloud/lkeap/v20240522/models.py +191 -0
- tencentcloud/mps/v20190612/models.py +2 -2
- tencentcloud/ocr/v20181119/models.py +15 -0
- tencentcloud/postgres/v20170312/postgres_client.py +15 -5
- tencentcloud/redis/v20180412/models.py +159 -6
- tencentcloud/ses/v20201002/models.py +15 -0
- tencentcloud/tat/v20201028/errorcodes.py +6 -0
- tencentcloud/tat/v20201028/models.py +78 -32
- tencentcloud/tcss/v20201101/models.py +45 -0
- tencentcloud/teo/v20220901/models.py +35 -10
- tencentcloud/tione/v20211111/models.py +84 -0
- tencentcloud/tione/v20211111/tione_client.py +23 -0
- tencentcloud/trtc/v20190722/models.py +2 -6
- tencentcloud/vod/v20180717/models.py +6 -6
- tencentcloud/vpc/v20170312/models.py +30 -76
- tencentcloud/wedata/v20210820/models.py +322 -0
- tencentcloud/wedata/v20210820/wedata_client.py +23 -0
- {tencentcloud_sdk_python-3.0.1368.dist-info → tencentcloud_sdk_python-3.0.1370.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1368.dist-info → tencentcloud_sdk_python-3.0.1370.dist-info}/RECORD +54 -54
- {tencentcloud_sdk_python-3.0.1368.dist-info → tencentcloud_sdk_python-3.0.1370.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1368.dist-info → tencentcloud_sdk_python-3.0.1370.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1368.dist-info → tencentcloud_sdk_python-3.0.1370.dist-info}/top_level.txt +0 -0
@@ -17100,6 +17100,12 @@ class CreateVulScanTaskRequest(AbstractModel):
|
|
17100
17100
|
:type LocalTaskID: int
|
17101
17101
|
:param _RegistryTaskID: 仓库镜像重新漏洞扫描时的任务ID
|
17102
17102
|
:type RegistryTaskID: int
|
17103
|
+
:param _LocalImageContainerRunning: 本地镜像容器运行中
|
17104
|
+
:type LocalImageContainerRunning: bool
|
17105
|
+
:param _RegistryImageContainerRunning: 仓库镜像容器运行中
|
17106
|
+
:type RegistryImageContainerRunning: bool
|
17107
|
+
:param _IsLatest: 仓库镜像是否是最新
|
17108
|
+
:type IsLatest: bool
|
17103
17109
|
"""
|
17104
17110
|
self._LocalImageScanType = None
|
17105
17111
|
self._LocalImageIDs = None
|
@@ -17107,6 +17113,9 @@ class CreateVulScanTaskRequest(AbstractModel):
|
|
17107
17113
|
self._RegistryImageIDs = None
|
17108
17114
|
self._LocalTaskID = None
|
17109
17115
|
self._RegistryTaskID = None
|
17116
|
+
self._LocalImageContainerRunning = None
|
17117
|
+
self._RegistryImageContainerRunning = None
|
17118
|
+
self._IsLatest = None
|
17110
17119
|
|
17111
17120
|
@property
|
17112
17121
|
def LocalImageScanType(self):
|
@@ -17174,6 +17183,39 @@ class CreateVulScanTaskRequest(AbstractModel):
|
|
17174
17183
|
def RegistryTaskID(self, RegistryTaskID):
|
17175
17184
|
self._RegistryTaskID = RegistryTaskID
|
17176
17185
|
|
17186
|
+
@property
|
17187
|
+
def LocalImageContainerRunning(self):
|
17188
|
+
"""本地镜像容器运行中
|
17189
|
+
:rtype: bool
|
17190
|
+
"""
|
17191
|
+
return self._LocalImageContainerRunning
|
17192
|
+
|
17193
|
+
@LocalImageContainerRunning.setter
|
17194
|
+
def LocalImageContainerRunning(self, LocalImageContainerRunning):
|
17195
|
+
self._LocalImageContainerRunning = LocalImageContainerRunning
|
17196
|
+
|
17197
|
+
@property
|
17198
|
+
def RegistryImageContainerRunning(self):
|
17199
|
+
"""仓库镜像容器运行中
|
17200
|
+
:rtype: bool
|
17201
|
+
"""
|
17202
|
+
return self._RegistryImageContainerRunning
|
17203
|
+
|
17204
|
+
@RegistryImageContainerRunning.setter
|
17205
|
+
def RegistryImageContainerRunning(self, RegistryImageContainerRunning):
|
17206
|
+
self._RegistryImageContainerRunning = RegistryImageContainerRunning
|
17207
|
+
|
17208
|
+
@property
|
17209
|
+
def IsLatest(self):
|
17210
|
+
"""仓库镜像是否是最新
|
17211
|
+
:rtype: bool
|
17212
|
+
"""
|
17213
|
+
return self._IsLatest
|
17214
|
+
|
17215
|
+
@IsLatest.setter
|
17216
|
+
def IsLatest(self, IsLatest):
|
17217
|
+
self._IsLatest = IsLatest
|
17218
|
+
|
17177
17219
|
|
17178
17220
|
def _deserialize(self, params):
|
17179
17221
|
self._LocalImageScanType = params.get("LocalImageScanType")
|
@@ -17182,6 +17224,9 @@ class CreateVulScanTaskRequest(AbstractModel):
|
|
17182
17224
|
self._RegistryImageIDs = params.get("RegistryImageIDs")
|
17183
17225
|
self._LocalTaskID = params.get("LocalTaskID")
|
17184
17226
|
self._RegistryTaskID = params.get("RegistryTaskID")
|
17227
|
+
self._LocalImageContainerRunning = params.get("LocalImageContainerRunning")
|
17228
|
+
self._RegistryImageContainerRunning = params.get("RegistryImageContainerRunning")
|
17229
|
+
self._IsLatest = params.get("IsLatest")
|
17185
17230
|
memeber_set = set(params.keys())
|
17186
17231
|
for name, value in vars(self).items():
|
17187
17232
|
property_name = name[1:]
|
@@ -43177,23 +43177,31 @@ class UpstreamURLRewriteParameters(AbstractModel):
|
|
43177
43177
|
|
43178
43178
|
def __init__(self):
|
43179
43179
|
r"""
|
43180
|
-
:param _Type: 回源 URL
|
43180
|
+
:param _Type: 回源 URL 重写类型。仅支持填写 Path。
|
43181
43181
|
:type Type: str
|
43182
43182
|
:param _Action: 回源 URL 重写动作。取值有:
|
43183
|
-
<li>replace
|
43184
|
-
|
43185
|
-
<li>
|
43183
|
+
<li><b>replace</b>:指替换完整路径。用于将完整的请求 URL Path 替换为指定路径。
|
43184
|
+
</li>
|
43185
|
+
<li><b>addPrefix</b>:指增加路径前缀。用于增加指定路径前缀至请求 URL Path。
|
43186
|
+
</li>
|
43187
|
+
<li><b>rmvPrefix</b>:指移除路径前缀。用于移除请求 URL Path 的指定路径前缀。
|
43188
|
+
</li>
|
43189
|
+
<li><b>regexReplace</b>:指正则替换完整路径。用于通过 Google RE2 正则表达式匹配和替换完整路径。
|
43190
|
+
</li>
|
43186
43191
|
:type Action: str
|
43187
|
-
:param _Value: 回源 URL
|
43192
|
+
:param _Value: 回源 URL 重写值。需要满足 URL Path 规范,且保证重写后的 Path 以 / 开头,以防止回源 URL 的 Host 被修改,长度范围为 1~1024。当 Action 为 addPrefix 时,不能以 / 结尾;当 Action 为 rmvPrefix 时,不能存在 *;当 Action 为 regexReplace 时,支持用 $NUM 引用正则捕获组,其中 NUM 代表组编号,如 $1,最多支持 $9。
|
43188
43193
|
:type Value: str
|
43194
|
+
:param _Regex: 回源 URL 重写用于正则替换匹配完整路径的正则表达式。需要满足 Google RE2 规范,长度范围为 1~1024。当 Action 为 regexReplace 时,此字段必填,否则无需填写此字段。
|
43195
|
+
:type Regex: str
|
43189
43196
|
"""
|
43190
43197
|
self._Type = None
|
43191
43198
|
self._Action = None
|
43192
43199
|
self._Value = None
|
43200
|
+
self._Regex = None
|
43193
43201
|
|
43194
43202
|
@property
|
43195
43203
|
def Type(self):
|
43196
|
-
"""回源 URL
|
43204
|
+
"""回源 URL 重写类型。仅支持填写 Path。
|
43197
43205
|
:rtype: str
|
43198
43206
|
"""
|
43199
43207
|
return self._Type
|
@@ -43205,9 +43213,14 @@ class UpstreamURLRewriteParameters(AbstractModel):
|
|
43205
43213
|
@property
|
43206
43214
|
def Action(self):
|
43207
43215
|
"""回源 URL 重写动作。取值有:
|
43208
|
-
<li>replace
|
43209
|
-
|
43210
|
-
<li>
|
43216
|
+
<li><b>replace</b>:指替换完整路径。用于将完整的请求 URL Path 替换为指定路径。
|
43217
|
+
</li>
|
43218
|
+
<li><b>addPrefix</b>:指增加路径前缀。用于增加指定路径前缀至请求 URL Path。
|
43219
|
+
</li>
|
43220
|
+
<li><b>rmvPrefix</b>:指移除路径前缀。用于移除请求 URL Path 的指定路径前缀。
|
43221
|
+
</li>
|
43222
|
+
<li><b>regexReplace</b>:指正则替换完整路径。用于通过 Google RE2 正则表达式匹配和替换完整路径。
|
43223
|
+
</li>
|
43211
43224
|
:rtype: str
|
43212
43225
|
"""
|
43213
43226
|
return self._Action
|
@@ -43218,7 +43231,7 @@ class UpstreamURLRewriteParameters(AbstractModel):
|
|
43218
43231
|
|
43219
43232
|
@property
|
43220
43233
|
def Value(self):
|
43221
|
-
"""回源 URL
|
43234
|
+
"""回源 URL 重写值。需要满足 URL Path 规范,且保证重写后的 Path 以 / 开头,以防止回源 URL 的 Host 被修改,长度范围为 1~1024。当 Action 为 addPrefix 时,不能以 / 结尾;当 Action 为 rmvPrefix 时,不能存在 *;当 Action 为 regexReplace 时,支持用 $NUM 引用正则捕获组,其中 NUM 代表组编号,如 $1,最多支持 $9。
|
43222
43235
|
:rtype: str
|
43223
43236
|
"""
|
43224
43237
|
return self._Value
|
@@ -43227,11 +43240,23 @@ class UpstreamURLRewriteParameters(AbstractModel):
|
|
43227
43240
|
def Value(self, Value):
|
43228
43241
|
self._Value = Value
|
43229
43242
|
|
43243
|
+
@property
|
43244
|
+
def Regex(self):
|
43245
|
+
"""回源 URL 重写用于正则替换匹配完整路径的正则表达式。需要满足 Google RE2 规范,长度范围为 1~1024。当 Action 为 regexReplace 时,此字段必填,否则无需填写此字段。
|
43246
|
+
:rtype: str
|
43247
|
+
"""
|
43248
|
+
return self._Regex
|
43249
|
+
|
43250
|
+
@Regex.setter
|
43251
|
+
def Regex(self, Regex):
|
43252
|
+
self._Regex = Regex
|
43253
|
+
|
43230
43254
|
|
43231
43255
|
def _deserialize(self, params):
|
43232
43256
|
self._Type = params.get("Type")
|
43233
43257
|
self._Action = params.get("Action")
|
43234
43258
|
self._Value = params.get("Value")
|
43259
|
+
self._Regex = params.get("Regex")
|
43235
43260
|
memeber_set = set(params.keys())
|
43236
43261
|
for name, value in vars(self).items():
|
43237
43262
|
property_name = name[1:]
|
@@ -13543,6 +13543,90 @@ class ModifyModelServiceResponse(AbstractModel):
|
|
13543
13543
|
self._RequestId = params.get("RequestId")
|
13544
13544
|
|
13545
13545
|
|
13546
|
+
class ModifyNotebookTagsRequest(AbstractModel):
|
13547
|
+
"""ModifyNotebookTags请求参数结构体
|
13548
|
+
|
13549
|
+
"""
|
13550
|
+
|
13551
|
+
def __init__(self):
|
13552
|
+
r"""
|
13553
|
+
:param _Id: Notebook Id
|
13554
|
+
:type Id: str
|
13555
|
+
:param _Tags: Notebook修改标签集合
|
13556
|
+
:type Tags: list of Tag
|
13557
|
+
"""
|
13558
|
+
self._Id = None
|
13559
|
+
self._Tags = None
|
13560
|
+
|
13561
|
+
@property
|
13562
|
+
def Id(self):
|
13563
|
+
"""Notebook Id
|
13564
|
+
:rtype: str
|
13565
|
+
"""
|
13566
|
+
return self._Id
|
13567
|
+
|
13568
|
+
@Id.setter
|
13569
|
+
def Id(self, Id):
|
13570
|
+
self._Id = Id
|
13571
|
+
|
13572
|
+
@property
|
13573
|
+
def Tags(self):
|
13574
|
+
"""Notebook修改标签集合
|
13575
|
+
:rtype: list of Tag
|
13576
|
+
"""
|
13577
|
+
return self._Tags
|
13578
|
+
|
13579
|
+
@Tags.setter
|
13580
|
+
def Tags(self, Tags):
|
13581
|
+
self._Tags = Tags
|
13582
|
+
|
13583
|
+
|
13584
|
+
def _deserialize(self, params):
|
13585
|
+
self._Id = params.get("Id")
|
13586
|
+
if params.get("Tags") is not None:
|
13587
|
+
self._Tags = []
|
13588
|
+
for item in params.get("Tags"):
|
13589
|
+
obj = Tag()
|
13590
|
+
obj._deserialize(item)
|
13591
|
+
self._Tags.append(obj)
|
13592
|
+
memeber_set = set(params.keys())
|
13593
|
+
for name, value in vars(self).items():
|
13594
|
+
property_name = name[1:]
|
13595
|
+
if property_name in memeber_set:
|
13596
|
+
memeber_set.remove(property_name)
|
13597
|
+
if len(memeber_set) > 0:
|
13598
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
13599
|
+
|
13600
|
+
|
13601
|
+
|
13602
|
+
class ModifyNotebookTagsResponse(AbstractModel):
|
13603
|
+
"""ModifyNotebookTags返回参数结构体
|
13604
|
+
|
13605
|
+
"""
|
13606
|
+
|
13607
|
+
def __init__(self):
|
13608
|
+
r"""
|
13609
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
13610
|
+
:type RequestId: str
|
13611
|
+
"""
|
13612
|
+
self._RequestId = None
|
13613
|
+
|
13614
|
+
@property
|
13615
|
+
def RequestId(self):
|
13616
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
13617
|
+
:rtype: str
|
13618
|
+
"""
|
13619
|
+
return self._RequestId
|
13620
|
+
|
13621
|
+
@RequestId.setter
|
13622
|
+
def RequestId(self, RequestId):
|
13623
|
+
self._RequestId = RequestId
|
13624
|
+
|
13625
|
+
|
13626
|
+
def _deserialize(self, params):
|
13627
|
+
self._RequestId = params.get("RequestId")
|
13628
|
+
|
13629
|
+
|
13546
13630
|
class MultiModalContent(AbstractModel):
|
13547
13631
|
"""多模态对话内容,支持图片与文字信息
|
13548
13632
|
|
@@ -902,6 +902,29 @@ class TioneClient(AbstractClient):
|
|
902
902
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
903
903
|
|
904
904
|
|
905
|
+
def ModifyNotebookTags(self, request):
|
906
|
+
"""修改Notebook标签
|
907
|
+
|
908
|
+
:param request: Request instance for ModifyNotebookTags.
|
909
|
+
:type request: :class:`tencentcloud.tione.v20211111.models.ModifyNotebookTagsRequest`
|
910
|
+
:rtype: :class:`tencentcloud.tione.v20211111.models.ModifyNotebookTagsResponse`
|
911
|
+
|
912
|
+
"""
|
913
|
+
try:
|
914
|
+
params = request._serialize()
|
915
|
+
headers = request.headers
|
916
|
+
body = self.call("ModifyNotebookTags", params, headers=headers)
|
917
|
+
response = json.loads(body)
|
918
|
+
model = models.ModifyNotebookTagsResponse()
|
919
|
+
model._deserialize(response["Response"])
|
920
|
+
return model
|
921
|
+
except Exception as e:
|
922
|
+
if isinstance(e, TencentCloudSDKException):
|
923
|
+
raise
|
924
|
+
else:
|
925
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
926
|
+
|
927
|
+
|
905
928
|
def PushTrainingMetrics(self, request):
|
906
929
|
"""上报训练自定义指标
|
907
930
|
|
@@ -5993,12 +5993,10 @@ class EmulateMobileParams(AbstractModel):
|
|
5993
5993
|
:param _MobileDeviceType: 移动设备类型,
|
5994
5994
|
0: 手机
|
5995
5995
|
1: 平板
|
5996
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5997
5996
|
:type MobileDeviceType: int
|
5998
5997
|
:param _ScreenOrientation: 屏幕方向,
|
5999
5998
|
0: 竖屏,
|
6000
5999
|
1: 横屏
|
6001
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6002
6000
|
:type ScreenOrientation: int
|
6003
6001
|
"""
|
6004
6002
|
self._MobileDeviceType = None
|
@@ -6009,7 +6007,6 @@ class EmulateMobileParams(AbstractModel):
|
|
6009
6007
|
"""移动设备类型,
|
6010
6008
|
0: 手机
|
6011
6009
|
1: 平板
|
6012
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6013
6010
|
:rtype: int
|
6014
6011
|
"""
|
6015
6012
|
return self._MobileDeviceType
|
@@ -6023,7 +6020,6 @@ class EmulateMobileParams(AbstractModel):
|
|
6023
6020
|
"""屏幕方向,
|
6024
6021
|
0: 竖屏,
|
6025
6022
|
1: 横屏
|
6026
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6027
6023
|
:rtype: int
|
6028
6024
|
"""
|
6029
6025
|
return self._ScreenOrientation
|
@@ -11606,7 +11602,7 @@ class StartAIConversationRequest(AbstractModel):
|
|
11606
11602
|
:param _STTConfig: 语音识别配置。
|
11607
11603
|
:type STTConfig: :class:`tencentcloud.trtc.v20190722.models.STTConfig`
|
11608
11604
|
:param _LLMConfig: LLM配置。需符合openai规范,为JSON字符串,示例如下:
|
11609
|
-
<pre> { <br>   "LLMType":
|
11605
|
+
<pre> { <br>   "LLMType": "大模型类型", // String 必填,如:"openai" <br>   "Model": "您的模型名称", // String 必填,指定使用的模型<br> "APIKey": "您的LLM API密钥", // String 必填 <br>   "APIUrl": "https://api.xxx.com/chat/completions", // String 必填,LLM API访问的URL<br>   "Streaming": true // Boolean 非必填,指定是否使用流式传输<br>  } </pre>
|
11610
11606
|
|
11611
11607
|
:type LLMConfig: str
|
11612
11608
|
:param _TTSConfig: TTS配置,为JSON字符串,腾讯云TTS示例如下: <pre>{ <br>   "AppId": 您的应用ID, // Integer 必填<br>   "TTSType": "TTS类型", // String TTS类型, 固定为"tencent"<br>   "SecretId": "您的密钥ID", // String 必填<br>   "SecretKey": "您的密钥Key", // String 必填<br>   "VoiceType": 101001, // Integer 必填,音色 ID,包括标准音色与精品音色,精品音色拟真度更高,价格不同于标准音色,请参见<a href="https://cloud.tencent.com/document/product/1073/34112">语音合成计费概述</a>。完整的音色 ID 列表请参见<a href="https://cloud.tencent.com/document/product/1073/92668#55924b56-1a73-4663-a7a1-a8dd82d6e823">语音合成音色列表</a>。<br>   "Speed": 1.25, // Integer 非必填,语速,范围:[-2,6],分别对应不同语速: -2: 代表0.6倍 -1: 代表0.8倍 0: 代表1.0倍(默认) 1: 代表1.2倍 2: 代表1.5倍 6: 代表2.5倍 如果需要更细化的语速,可以保留小数点后 2 位,例如0.5/1.25/2.81等。 参数值与实际语速转换,可参考 <a href="https://sdk-1300466766.cos.ap-shanghai.myqcloud.com/sample/speed_sample.tar.gz">语速转换</a><br>   "Volume": 5, // Integer 非必填,音量大小,范围:[0,10],分别对应11个等级的音量,默认值为0,代表正常音量。<br>   "EmotionCategory": "angry", // String 非必填 控制合成音频的情感,仅支持多情感音色使用。取值: neutral(中性)、sad(悲伤)、happy(高兴)、angry(生气)、fear(恐惧)、news(新闻)、story(故事)、radio(广播)、poetry(诗歌)、call(客服)、sajiao(撒娇)、disgusted(厌恶)、amaze(震惊)、peaceful(平静)、exciting(兴奋)、aojiao(傲娇)、jieshuo(解说)。<br>   "EmotionIntensity": 150 // Integer 非必填 控制合成音频情感程度,取值范围为 [50,200],默认为 100;只有 EmotionCategory 不为空时生效。<br>   }</pre>
|
@@ -11696,7 +11692,7 @@ class StartAIConversationRequest(AbstractModel):
|
|
11696
11692
|
@property
|
11697
11693
|
def LLMConfig(self):
|
11698
11694
|
"""LLM配置。需符合openai规范,为JSON字符串,示例如下:
|
11699
|
-
<pre> { <br>   "LLMType":
|
11695
|
+
<pre> { <br>   "LLMType": "大模型类型", // String 必填,如:"openai" <br>   "Model": "您的模型名称", // String 必填,指定使用的模型<br> "APIKey": "您的LLM API密钥", // String 必填 <br>   "APIUrl": "https://api.xxx.com/chat/completions", // String 必填,LLM API访问的URL<br>   "Streaming": true // Boolean 非必填,指定是否使用流式传输<br>  } </pre>
|
11700
11696
|
|
11701
11697
|
:rtype: str
|
11702
11698
|
"""
|
@@ -27116,9 +27116,9 @@ class DescribeEventConfigResponse(AbstractModel):
|
|
27116
27116
|
|
27117
27117
|
def __init__(self):
|
27118
27118
|
r"""
|
27119
|
-
:param _Mode: 接收事件通知的方式。"PUSH" 为 [
|
27119
|
+
:param _Mode: 接收事件通知的方式。"PUSH" 为 [普通回调](https://cloud.tencent.com/document/product/266/33779#.E6.99.AE.E9.80.9A.E5.9B.9E.E8.B0.83),"PULL" 为 [可靠回调](https://cloud.tencent.com/document/product/266/33779#.E5.8F.AF.E9.9D.A0.E5.9B.9E.E8.B0.83)。
|
27120
27120
|
:type Mode: str
|
27121
|
-
:param _NotificationUrl: 采用 [
|
27121
|
+
:param _NotificationUrl: 采用 [普通回调](https://cloud.tencent.com/document/product/266/33779#.E6.99.AE.E9.80.9A.E5.9B.9E.E8.B0.83) 模式时,用于接收 V3 版本事件通知的地址。
|
27122
27122
|
:type NotificationUrl: str
|
27123
27123
|
:param _UploadMediaCompleteEventSwitch: 是否接收 [视频上传完成](https://cloud.tencent.com/document/product/266/7830) 事件通知,"OFF" 为忽略该事件通知,"ON" 为接收事件通知。
|
27124
27124
|
:type UploadMediaCompleteEventSwitch: str
|
@@ -27138,7 +27138,7 @@ class DescribeEventConfigResponse(AbstractModel):
|
|
27138
27138
|
|
27139
27139
|
@property
|
27140
27140
|
def Mode(self):
|
27141
|
-
"""接收事件通知的方式。"PUSH" 为 [
|
27141
|
+
"""接收事件通知的方式。"PUSH" 为 [普通回调](https://cloud.tencent.com/document/product/266/33779#.E6.99.AE.E9.80.9A.E5.9B.9E.E8.B0.83),"PULL" 为 [可靠回调](https://cloud.tencent.com/document/product/266/33779#.E5.8F.AF.E9.9D.A0.E5.9B.9E.E8.B0.83)。
|
27142
27142
|
:rtype: str
|
27143
27143
|
"""
|
27144
27144
|
return self._Mode
|
@@ -27149,7 +27149,7 @@ class DescribeEventConfigResponse(AbstractModel):
|
|
27149
27149
|
|
27150
27150
|
@property
|
27151
27151
|
def NotificationUrl(self):
|
27152
|
-
"""采用 [
|
27152
|
+
"""采用 [普通回调](https://cloud.tencent.com/document/product/266/33779#.E6.99.AE.E9.80.9A.E5.9B.9E.E8.B0.83) 模式时,用于接收 V3 版本事件通知的地址。
|
27153
27153
|
:rtype: str
|
27154
27154
|
"""
|
27155
27155
|
return self._NotificationUrl
|
@@ -68474,7 +68474,7 @@ class SplitMediaTaskInput(AbstractModel):
|
|
68474
68474
|
<li>当数值大于0时(假设为 n),表示转码后的视频持续到原始视频第 n 秒时终止;</li>
|
68475
68475
|
<li>当数值小于0时(假设为 -n),表示转码后的视频持续到原始视频结束 n 秒前终止。</li>
|
68476
68476
|
:type EndTimeOffset: float
|
68477
|
-
:param _ProcedureName: [
|
68477
|
+
:param _ProcedureName: [任务流](https://cloud.tencent.com/document/product/266/33475#.E4.BB.BB.E5.8A.A1.E6.B5.81)名称,如果要对生成的新视频执行任务流时填写。
|
68478
68478
|
:type ProcedureName: str
|
68479
68479
|
:param _OutputConfig: 视频拆条输出信息。
|
68480
68480
|
:type OutputConfig: :class:`tencentcloud.vod.v20180717.models.SplitMediaOutputConfig`
|
@@ -68526,7 +68526,7 @@ class SplitMediaTaskInput(AbstractModel):
|
|
68526
68526
|
|
68527
68527
|
@property
|
68528
68528
|
def ProcedureName(self):
|
68529
|
-
"""[
|
68529
|
+
"""[任务流](https://cloud.tencent.com/document/product/266/33475#.E4.BB.BB.E5.8A.A1.E6.B5.81)名称,如果要对生成的新视频执行任务流时填写。
|
68530
68530
|
:rtype: str
|
68531
68531
|
"""
|
68532
68532
|
return self._ProcedureName
|