tencentcloud-sdk-python 3.0.1081__py2.py3-none-any.whl → 3.0.1083__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.
Potentially problematic release.
This version of tencentcloud-sdk-python might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/ccc/v20200210/ccc_client.py +1 -1
- tencentcloud/cdb/v20170320/cdb_client.py +1 -1
- tencentcloud/cdb/v20170320/errorcodes.py +3 -0
- tencentcloud/cdb/v20170320/models.py +38 -1
- tencentcloud/cdwdoris/v20211228/models.py +39 -0
- tencentcloud/cfw/v20190904/models.py +316 -26
- tencentcloud/cynosdb/v20190107/cynosdb_client.py +23 -0
- tencentcloud/cynosdb/v20190107/models.py +440 -0
- tencentcloud/dasb/v20191018/models.py +26 -0
- tencentcloud/emr/v20190103/models.py +26 -0
- tencentcloud/es/v20180416/models.py +12 -0
- tencentcloud/ess/v20201111/ess_client.py +36 -2
- tencentcloud/ess/v20201111/models.py +169 -15
- tencentcloud/essbasic/v20210526/essbasic_client.py +42 -1
- tencentcloud/essbasic/v20210526/models.py +185 -11
- tencentcloud/hai/v20230812/errorcodes.py +3 -0
- tencentcloud/iss/v20230517/models.py +4 -2
- tencentcloud/kms/v20190118/models.py +1 -1
- tencentcloud/monitor/v20180724/models.py +28 -1
- tencentcloud/mps/v20190612/errorcodes.py +3 -0
- tencentcloud/mps/v20190612/models.py +55 -17
- tencentcloud/mps/v20190612/mps_client.py +2 -1
- tencentcloud/ocr/v20181119/models.py +475 -2
- tencentcloud/ocr/v20181119/ocr_client.py +74 -0
- tencentcloud/postgres/v20170312/models.py +5 -5
- tencentcloud/scf/v20180416/errorcodes.py +3 -0
- tencentcloud/tag/v20180813/models.py +24 -0
- tencentcloud/teo/v20220901/errorcodes.py +15 -0
- tencentcloud/teo/v20220901/models.py +2165 -665
- tencentcloud/teo/v20220901/teo_client.py +230 -0
- tencentcloud/tione/v20211111/errorcodes.py +9 -0
- tencentcloud/tione/v20211111/models.py +53 -34
- tencentcloud/tione/v20211111/tione_client.py +6 -6
- tencentcloud/tmt/v20180321/models.py +1 -1
- tencentcloud/tmt/v20180321/tmt_client.py +1 -1
- tencentcloud/trtc/v20190722/models.py +15 -3
- tencentcloud/trtc/v20190722/trtc_client.py +2 -2
- tencentcloud/vod/v20180717/models.py +67 -0
- tencentcloud/waf/v20180125/errorcodes.py +3 -0
- tencentcloud/waf/v20180125/models.py +792 -162
- tencentcloud/waf/v20180125/waf_client.py +29 -7
- tencentcloud/wedata/v20210820/errorcodes.py +18 -0
- tencentcloud/wedata/v20210820/models.py +87321 -44139
- tencentcloud/wedata/v20210820/wedata_client.py +6598 -1971
- {tencentcloud_sdk_python-3.0.1081.dist-info → tencentcloud_sdk_python-3.0.1083.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1081.dist-info → tencentcloud_sdk_python-3.0.1083.dist-info}/RECORD +50 -50
- {tencentcloud_sdk_python-3.0.1081.dist-info → tencentcloud_sdk_python-3.0.1083.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1081.dist-info → tencentcloud_sdk_python-3.0.1083.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1081.dist-info → tencentcloud_sdk_python-3.0.1083.dist-info}/top_level.txt +0 -0
|
@@ -1355,6 +1355,7 @@ class ChannelBillUsageDetail(AbstractModel):
|
|
|
1355
1355
|
<li>**OrgEssAuth**: 签署企业实名</li>
|
|
1356
1356
|
<li>**FlowNotify**: 短信通知</li>
|
|
1357
1357
|
<li>**AuthService**: 企业工商信息查询</li>
|
|
1358
|
+
<li>**NoAuthSign**: 形式签</li>
|
|
1358
1359
|
</ul>
|
|
1359
1360
|
:type QuotaType: str
|
|
1360
1361
|
:param _UseCount: 合同使用量
|
|
@@ -3330,6 +3331,8 @@ class ChannelCreateFlowByFilesResponse(AbstractModel):
|
|
|
3330
3331
|
r"""
|
|
3331
3332
|
:param _FlowId: 合同流程ID,为32位字符串。
|
|
3332
3333
|
建议开发者妥善保存此流程ID,以便于顺利进行后续操作。
|
|
3334
|
+
|
|
3335
|
+
[点击产看FlowId在控制台上的位置](https://qcloudimg.tencent-cloud.cn/raw/05af26573d5106763b4cfbb9f7c64b41.png)
|
|
3333
3336
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3334
3337
|
:type FlowId: str
|
|
3335
3338
|
:param _Approvers: 签署方信息,如角色ID、角色名称等
|
|
@@ -3801,16 +3804,22 @@ class ChannelCreateFlowSignReviewRequest(AbstractModel):
|
|
|
3801
3804
|
|
|
3802
3805
|
def __init__(self):
|
|
3803
3806
|
r"""
|
|
3804
|
-
:param _Agent:
|
|
3807
|
+
:param _Agent: 关于渠道应用的相关信息,包括渠道应用标识、第三方平台子客企业标识及第三方平台子客企业中的员工标识等内容,您可以参阅开发者中心所提供的 Agent 结构体以获取详细定义。
|
|
3808
|
+
|
|
3809
|
+
此接口下面信息必填。
|
|
3810
|
+
<ul>
|
|
3811
|
+
<li>渠道应用标识: Agent.AppId</li>
|
|
3812
|
+
<li>第三方平台子客企业标识: Agent.ProxyOrganizationOpenId</li>
|
|
3813
|
+
<li>第三方平台子客企业中的员工标识: Agent. ProxyOperator.OpenId</li>
|
|
3814
|
+
</ul>
|
|
3815
|
+
第三方平台子客企业和员工必须已经经过实名认证
|
|
3805
3816
|
:type Agent: :class:`tencentcloud.essbasic.v20210526.models.Agent`
|
|
3806
3817
|
:param _FlowId: 合同流程ID,为32位字符串。
|
|
3807
|
-
<ul><li>建议开发者妥善保存此流程ID,以便于顺利进行后续操作。</li>
|
|
3808
|
-
<li>可登录腾讯电子签控制台,在 "合同"->"合同中心" 中查看某个合同的FlowId(在页面中展示为合同ID)。</li></ul>
|
|
3809
3818
|
:type FlowId: str
|
|
3810
3819
|
:param _ReviewType: 企业内部审核结果
|
|
3811
|
-
<ul><li>PASS:
|
|
3812
|
-
<li>REJECT:
|
|
3813
|
-
<li>SIGN_REJECT:拒签(
|
|
3820
|
+
<ul><li>PASS: 审核通过(流程可以继续签署或者发起)</li>
|
|
3821
|
+
<li>REJECT: 审核拒绝(流程状态不变,可以继续调用审核接口通过审核)</li>
|
|
3822
|
+
<li>SIGN_REJECT:拒签(流程终止,流程状态变为拒签状态)</li></ul>
|
|
3814
3823
|
:type ReviewType: str
|
|
3815
3824
|
:param _ReviewMessage: 审核结果原因
|
|
3816
3825
|
<ul><li>字符串长度不超过200</li>
|
|
@@ -5055,6 +5064,9 @@ class ChannelCreateReleaseFlowRequest(AbstractModel):
|
|
|
5055
5064
|
第三方平台子客企业和员工必须已经经过实名认证
|
|
5056
5065
|
:type Agent: :class:`tencentcloud.essbasic.v20210526.models.Agent`
|
|
5057
5066
|
:param _NeedRelievedFlowId: 待解除的签署流程编号(即原签署流程的编号)。
|
|
5067
|
+
|
|
5068
|
+
|
|
5069
|
+
[点击产看流程编号在控制台上的位置](https://qcloudimg.tencent-cloud.cn/raw/05af26573d5106763b4cfbb9f7c64b41.png)
|
|
5058
5070
|
:type NeedRelievedFlowId: str
|
|
5059
5071
|
:param _ReliveInfo: 解除协议内容, 包括解除理由等信息。
|
|
5060
5072
|
:type ReliveInfo: :class:`tencentcloud.essbasic.v20210526.models.RelieveInfo`
|
|
@@ -5934,7 +5946,15 @@ class ChannelCreateUserRolesRequest(AbstractModel):
|
|
|
5934
5946
|
|
|
5935
5947
|
def __init__(self):
|
|
5936
5948
|
r"""
|
|
5937
|
-
:param _Agent:
|
|
5949
|
+
:param _Agent: 关于渠道应用的相关信息,包括渠道应用标识、第三方平台子客企业标识及第三方平台子客企业中的员工标识等内容,您可以参阅开发者中心所提供的 Agent 结构体以获取详细定义。
|
|
5950
|
+
|
|
5951
|
+
此接口下面信息必填。
|
|
5952
|
+
<ul>
|
|
5953
|
+
<li>渠道应用标识: Agent.AppId</li>
|
|
5954
|
+
<li>第三方平台子客企业标识: Agent.ProxyOrganizationOpenId</li>
|
|
5955
|
+
<li>第三方平台子客企业中的员工标识: Agent. ProxyOperator.OpenId</li>
|
|
5956
|
+
</ul>
|
|
5957
|
+
第三方平台子客企业和员工必须已经经过实名认证
|
|
5938
5958
|
:type Agent: :class:`tencentcloud.essbasic.v20210526.models.Agent`
|
|
5939
5959
|
:param _RoleIds: 绑定角色的角色id列表,最多 100 个
|
|
5940
5960
|
:type RoleIds: list of str
|
|
@@ -6511,6 +6531,7 @@ class ChannelDescribeBillUsageDetailRequest(AbstractModel):
|
|
|
6511
6531
|
<li>**OrgEssAuth**: 签署企业实名</li>
|
|
6512
6532
|
<li>**FlowNotify**: 短信通知</li>
|
|
6513
6533
|
<li>**AuthService**: 企业工商信息查询</li>
|
|
6534
|
+
<li>**NoAuthSign**: 形式签</li>
|
|
6514
6535
|
</ul>
|
|
6515
6536
|
:type QuotaType: str
|
|
6516
6537
|
:param _Offset: 指定分页返回第几页的数据,如果不传默认返回第一页,页码从 0 开始,即首页为 0
|
|
@@ -9921,8 +9942,7 @@ class CreateConsoleLoginUrlResponse(AbstractModel):
|
|
|
9921
9942
|
def __init__(self):
|
|
9922
9943
|
r"""
|
|
9923
9944
|
:param _ConsoleUrl: 跳转链接, 链接的有效期根据企业,员工状态和终端等有区别, 可以参考下表
|
|
9924
|
-
<table> <thead> <tr> <th>子客企业状态</th> <th>子客企业员工状态</th>
|
|
9925
|
-
<th>Endpoint</th> <th>链接有效期限</th> </tr> </thead> <tbody> <tr> <td>企业未激活</td> <td>员工未认证</td> <td>PC/PC_SHORT_URL</td> <td>5分钟</td> </tr> <tr> <td>企业未激活</td> <td>员工未认证</td> <td>CHANNEL/APP/H5/SHORT_H5</td> <td>30天</td> </tr> <tr> <td>企业已激活</td> <td>员工未认证</td> <td>PC/PC_SHORT_URL</td> <td>5分钟</td> </tr> <tr> <td>企业已激活</td> <td>员工未认证</td> <td>PC/CHANNEL/APP/H5/SHORT_H5</td> <td>30天</td> </tr> <tr> <td>企业已激活</td> <td>员工已认证</td> <td>PC</td> <td>5分钟</td> </tr> <tr> <td>企业已激活</td> <td>员工已认证</td> <td>CHANNEL/APP/H5/SHORT_H5</td> <td>30天</td> </tr> </tbody> </table>
|
|
9945
|
+
<table> <thead> <tr> <th>子客企业状态</th> <th>子客企业员工状态</th> <th>Endpoint</th> <th>链接有效期限</th> </tr> </thead> <tbody> <tr> <td>企业未激活</td> <td>员工未认证</td> <td>PC/PC_SHORT_URL</td> <td>5分钟</td> </tr> <tr> <td>企业未激活</td> <td>员工未认证</td> <td>CHANNEL/APP/H5/SHORT_H5</td> <td>30天</td> </tr> <tr> <td>企业已激活</td> <td>员工未认证</td> <td>PC/PC_SHORT_URL</td> <td>5分钟</td> </tr> <tr> <td>企业已激活</td> <td>员工未认证</td> <td>PC/CHANNEL/APP/H5/SHORT_H5</td> <td>30天</td> </tr> <tr> <td>企业已激活</td> <td>员工已认证</td> <td>PC</td> <td>5分钟</td> </tr> <tr> <td>企业已激活</td> <td>员工已认证</td> <td>CHANNEL/APP/H5/SHORT_H5</td> <td>30天</td> </tr> </tbody> </table>
|
|
9926
9946
|
|
|
9927
9947
|
注:
|
|
9928
9948
|
1. <font color="red">链接仅单次有效</font>,每次登录需要需要重新创建新的链接
|
|
@@ -10375,6 +10395,8 @@ class CreateFlowsByTemplatesResponse(AbstractModel):
|
|
|
10375
10395
|
r"""
|
|
10376
10396
|
:param _FlowIds: 生成的合同流程ID数组,合同流程ID为32位字符串。
|
|
10377
10397
|
建议开发者妥善保存此流程ID数组,以便于顺利进行后续操作。
|
|
10398
|
+
|
|
10399
|
+
[点击产看FlowId在控制台上的位置](https://qcloudimg.tencent-cloud.cn/raw/05af26573d5106763b4cfbb9f7c64b41.png)
|
|
10378
10400
|
:type FlowIds: list of str
|
|
10379
10401
|
:param _CustomerData: 第三方应用平台的业务信息, 与创建合同的FlowInfos数组中的CustomerData一一对应
|
|
10380
10402
|
:type CustomerData: list of str
|
|
@@ -12441,6 +12463,8 @@ class DescribeTemplatesRequest(AbstractModel):
|
|
|
12441
12463
|
:param _TemplateId: 合同模板ID,为32位字符串。
|
|
12442
12464
|
|
|
12443
12465
|
可以通过<a href="https://qian.tencent.com/developers/partnerApis/accounts/CreateConsoleLoginUrl" target="_blank">生成子客登录链接</a>登录企业控制台, 在企业模板中得到合同模板ID。
|
|
12466
|
+
|
|
12467
|
+
[点击产看模板Id在控制台上的位置](https://qcloudimg.tencent-cloud.cn/raw/e988be12bf28a89b4716aed4502c2e02.png)
|
|
12444
12468
|
:type TemplateId: str
|
|
12445
12469
|
:param _ContentType: 查询模板的内容
|
|
12446
12470
|
|
|
@@ -12454,6 +12478,9 @@ class DescribeTemplatesRequest(AbstractModel):
|
|
|
12454
12478
|
2. `请确保每个模板均正确且属于当前企业,若有任一模板不存在,则返回错误。`
|
|
12455
12479
|
4. `若传递此参数,分页参数(Limit,Offset)无效`
|
|
12456
12480
|
|
|
12481
|
+
|
|
12482
|
+
[点击产看模板Id在控制台上的位置](https://qcloudimg.tencent-cloud.cn/raw/e988be12bf28a89b4716aed4502c2e02.png)
|
|
12483
|
+
|
|
12457
12484
|
:type TemplateIds: list of str
|
|
12458
12485
|
:param _Limit: 指定每页返回的数据条数,和Offset参数配合使用。
|
|
12459
12486
|
|
|
@@ -13670,8 +13697,9 @@ class FlowApproverInfo(AbstractModel):
|
|
|
13670
13697
|
:type ApproverType: str
|
|
13671
13698
|
:param _RecipientId: 签署流程签署人在模板中对应的签署人Id;在非单方签署、以及非B2C签署的场景下必传,用于指定当前签署方在签署流程中的位置;
|
|
13672
13699
|
:type RecipientId: str
|
|
13673
|
-
:param _Deadline:
|
|
13674
|
-
|
|
13700
|
+
:param _Deadline: 签署人的签署截止时间,格式为Unix标准时间戳(秒)
|
|
13701
|
+
|
|
13702
|
+
注: `若不设置此参数,则默认使用合同的截止时间,此参数暂不支持合同组子合同`
|
|
13675
13703
|
:type Deadline: int
|
|
13676
13704
|
:param _CallbackUrl: 签署完回调url,最大长度1000个字符
|
|
13677
13705
|
:type CallbackUrl: str
|
|
@@ -14589,6 +14617,9 @@ class FlowInfo(AbstractModel):
|
|
|
14589
14617
|
如果使用模板发起接口,此参数为必填。
|
|
14590
14618
|
|
|
14591
14619
|
可以通过<a href="https://qian.tencent.com/developers/partnerApis/accounts/CreateConsoleLoginUrl" target="_blank">生成子客登录链接</a>登录企业控制台, 在**企业模板**中得到合同模板ID。
|
|
14620
|
+
|
|
14621
|
+
[点击产看模板Id在控制台上的位置](https://qcloudimg.tencent-cloud.cn/raw/e988be12bf28a89b4716aed4502c2e02.png)
|
|
14622
|
+
|
|
14592
14623
|
:type TemplateId: str
|
|
14593
14624
|
:param _FlowApprovers: 多个签署人信息,最大支持50个签署方
|
|
14594
14625
|
:type FlowApprovers: list of FlowApproverInfo
|
|
@@ -15560,6 +15591,108 @@ class ModifyExtendedServiceResponse(AbstractModel):
|
|
|
15560
15591
|
self._RequestId = params.get("RequestId")
|
|
15561
15592
|
|
|
15562
15593
|
|
|
15594
|
+
class ModifyFlowDeadlineRequest(AbstractModel):
|
|
15595
|
+
"""ModifyFlowDeadline请求参数结构体
|
|
15596
|
+
|
|
15597
|
+
"""
|
|
15598
|
+
|
|
15599
|
+
def __init__(self):
|
|
15600
|
+
r"""
|
|
15601
|
+
:param _Agent: 应用相关信息。 此接口Agent.ProxyOrganizationOpenId、Agent. ProxyOperator.OpenId、Agent.AppId 必填。
|
|
15602
|
+
:type Agent: :class:`tencentcloud.essbasic.v20210526.models.Agent`
|
|
15603
|
+
:param _FlowId: 合同流程ID,为32位字符串。
|
|
15604
|
+
<ul><li>建议开发者妥善保存此流程ID,以便于顺利进行后续操作。</li>
|
|
15605
|
+
<li>可登录腾讯电子签控制台,在 "合同"->"合同中心" 中查看某个合同的FlowId(在页面中展示为合同ID)。</li></ul>
|
|
15606
|
+
:type FlowId: str
|
|
15607
|
+
:param _Deadline: 签署流程或签署人新的签署截止时间,格式为Unix标准时间戳(秒)
|
|
15608
|
+
|
|
15609
|
+
:type Deadline: int
|
|
15610
|
+
:param _RecipientId: 签署方角色编号,为32位字符串
|
|
15611
|
+
<ul><li>若指定了此参数,则只调整签署流程中此签署人的签署截止时间,否则调整合同整体的签署截止时间(合同截止时间+发起时未设置签署人截止时间的参与人的签署截止时间)</li>
|
|
15612
|
+
<li>通过[用PDF文件创建签署流程](https://test.qian.tencent.cn/developers/partnerApis/startFlows/ChannelCreateFlowByFiles)发起合同,或通过[用模板创建签署流程](https://test.qian.tencent.cn/developers/partnerApis/startFlows/CreateFlowsByTemplates)时,返回参数[FlowApprovers](https://test.qian.tencent.cn/developers/partnerApis/dataTypes/#approveritem)会返回此信息,建议开发者妥善保存</li>
|
|
15613
|
+
<li>也可通过[获取合同信息](https://test.qian.tencent.cn/developers/partnerApis/flows/DescribeFlowDetailInfo)接口查询签署人的RecipientId编号</li></ul>
|
|
15614
|
+
:type RecipientId: str
|
|
15615
|
+
"""
|
|
15616
|
+
self._Agent = None
|
|
15617
|
+
self._FlowId = None
|
|
15618
|
+
self._Deadline = None
|
|
15619
|
+
self._RecipientId = None
|
|
15620
|
+
|
|
15621
|
+
@property
|
|
15622
|
+
def Agent(self):
|
|
15623
|
+
return self._Agent
|
|
15624
|
+
|
|
15625
|
+
@Agent.setter
|
|
15626
|
+
def Agent(self, Agent):
|
|
15627
|
+
self._Agent = Agent
|
|
15628
|
+
|
|
15629
|
+
@property
|
|
15630
|
+
def FlowId(self):
|
|
15631
|
+
return self._FlowId
|
|
15632
|
+
|
|
15633
|
+
@FlowId.setter
|
|
15634
|
+
def FlowId(self, FlowId):
|
|
15635
|
+
self._FlowId = FlowId
|
|
15636
|
+
|
|
15637
|
+
@property
|
|
15638
|
+
def Deadline(self):
|
|
15639
|
+
return self._Deadline
|
|
15640
|
+
|
|
15641
|
+
@Deadline.setter
|
|
15642
|
+
def Deadline(self, Deadline):
|
|
15643
|
+
self._Deadline = Deadline
|
|
15644
|
+
|
|
15645
|
+
@property
|
|
15646
|
+
def RecipientId(self):
|
|
15647
|
+
return self._RecipientId
|
|
15648
|
+
|
|
15649
|
+
@RecipientId.setter
|
|
15650
|
+
def RecipientId(self, RecipientId):
|
|
15651
|
+
self._RecipientId = RecipientId
|
|
15652
|
+
|
|
15653
|
+
|
|
15654
|
+
def _deserialize(self, params):
|
|
15655
|
+
if params.get("Agent") is not None:
|
|
15656
|
+
self._Agent = Agent()
|
|
15657
|
+
self._Agent._deserialize(params.get("Agent"))
|
|
15658
|
+
self._FlowId = params.get("FlowId")
|
|
15659
|
+
self._Deadline = params.get("Deadline")
|
|
15660
|
+
self._RecipientId = params.get("RecipientId")
|
|
15661
|
+
memeber_set = set(params.keys())
|
|
15662
|
+
for name, value in vars(self).items():
|
|
15663
|
+
property_name = name[1:]
|
|
15664
|
+
if property_name in memeber_set:
|
|
15665
|
+
memeber_set.remove(property_name)
|
|
15666
|
+
if len(memeber_set) > 0:
|
|
15667
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
15668
|
+
|
|
15669
|
+
|
|
15670
|
+
|
|
15671
|
+
class ModifyFlowDeadlineResponse(AbstractModel):
|
|
15672
|
+
"""ModifyFlowDeadline返回参数结构体
|
|
15673
|
+
|
|
15674
|
+
"""
|
|
15675
|
+
|
|
15676
|
+
def __init__(self):
|
|
15677
|
+
r"""
|
|
15678
|
+
:param _RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
15679
|
+
:type RequestId: str
|
|
15680
|
+
"""
|
|
15681
|
+
self._RequestId = None
|
|
15682
|
+
|
|
15683
|
+
@property
|
|
15684
|
+
def RequestId(self):
|
|
15685
|
+
return self._RequestId
|
|
15686
|
+
|
|
15687
|
+
@RequestId.setter
|
|
15688
|
+
def RequestId(self, RequestId):
|
|
15689
|
+
self._RequestId = RequestId
|
|
15690
|
+
|
|
15691
|
+
|
|
15692
|
+
def _deserialize(self, params):
|
|
15693
|
+
self._RequestId = params.get("RequestId")
|
|
15694
|
+
|
|
15695
|
+
|
|
15563
15696
|
class NeedReviewApproverInfo(AbstractModel):
|
|
15564
15697
|
"""需要进行签署审核的签署人信息
|
|
15565
15698
|
|
|
@@ -19399,9 +19532,23 @@ class WebThemeConfig(AbstractModel):
|
|
|
19399
19532
|
支持十六进制颜色值以及RGB格式颜色值,例如:#D54941,rgb(213, 73, 65)
|
|
19400
19533
|
<br/>
|
|
19401
19534
|
:type WebEmbedThemeColor: str
|
|
19535
|
+
:param _AuthenticateBackground: 企业认证页背景图(base64图片)
|
|
19536
|
+
|
|
19537
|
+
:type AuthenticateBackground: str
|
|
19538
|
+
:param _HideAuthenticateNavigationBar: 隐藏企业认证页面导航栏,取值如下:
|
|
19539
|
+
<ul><li> **true**:隐藏企业认证页面导航栏</li>
|
|
19540
|
+
<li> **false**:显示企业认证页面导航栏(默认)</li></ul>
|
|
19541
|
+
:type HideAuthenticateNavigationBar: bool
|
|
19542
|
+
:param _HideAuthenticateTopLogo: 隐藏企业认证顶部logo,取值如下:
|
|
19543
|
+
<ul><li> **true**:隐藏企业认证顶部logo</li>
|
|
19544
|
+
<li> **false**:显示企业认证顶部logo(默认)</li></ul>
|
|
19545
|
+
:type HideAuthenticateTopLogo: bool
|
|
19402
19546
|
"""
|
|
19403
19547
|
self._DisplaySignBrandLogo = None
|
|
19404
19548
|
self._WebEmbedThemeColor = None
|
|
19549
|
+
self._AuthenticateBackground = None
|
|
19550
|
+
self._HideAuthenticateNavigationBar = None
|
|
19551
|
+
self._HideAuthenticateTopLogo = None
|
|
19405
19552
|
|
|
19406
19553
|
@property
|
|
19407
19554
|
def DisplaySignBrandLogo(self):
|
|
@@ -19419,10 +19566,37 @@ class WebThemeConfig(AbstractModel):
|
|
|
19419
19566
|
def WebEmbedThemeColor(self, WebEmbedThemeColor):
|
|
19420
19567
|
self._WebEmbedThemeColor = WebEmbedThemeColor
|
|
19421
19568
|
|
|
19569
|
+
@property
|
|
19570
|
+
def AuthenticateBackground(self):
|
|
19571
|
+
return self._AuthenticateBackground
|
|
19572
|
+
|
|
19573
|
+
@AuthenticateBackground.setter
|
|
19574
|
+
def AuthenticateBackground(self, AuthenticateBackground):
|
|
19575
|
+
self._AuthenticateBackground = AuthenticateBackground
|
|
19576
|
+
|
|
19577
|
+
@property
|
|
19578
|
+
def HideAuthenticateNavigationBar(self):
|
|
19579
|
+
return self._HideAuthenticateNavigationBar
|
|
19580
|
+
|
|
19581
|
+
@HideAuthenticateNavigationBar.setter
|
|
19582
|
+
def HideAuthenticateNavigationBar(self, HideAuthenticateNavigationBar):
|
|
19583
|
+
self._HideAuthenticateNavigationBar = HideAuthenticateNavigationBar
|
|
19584
|
+
|
|
19585
|
+
@property
|
|
19586
|
+
def HideAuthenticateTopLogo(self):
|
|
19587
|
+
return self._HideAuthenticateTopLogo
|
|
19588
|
+
|
|
19589
|
+
@HideAuthenticateTopLogo.setter
|
|
19590
|
+
def HideAuthenticateTopLogo(self, HideAuthenticateTopLogo):
|
|
19591
|
+
self._HideAuthenticateTopLogo = HideAuthenticateTopLogo
|
|
19592
|
+
|
|
19422
19593
|
|
|
19423
19594
|
def _deserialize(self, params):
|
|
19424
19595
|
self._DisplaySignBrandLogo = params.get("DisplaySignBrandLogo")
|
|
19425
19596
|
self._WebEmbedThemeColor = params.get("WebEmbedThemeColor")
|
|
19597
|
+
self._AuthenticateBackground = params.get("AuthenticateBackground")
|
|
19598
|
+
self._HideAuthenticateNavigationBar = params.get("HideAuthenticateNavigationBar")
|
|
19599
|
+
self._HideAuthenticateTopLogo = params.get("HideAuthenticateTopLogo")
|
|
19426
19600
|
memeber_set = set(params.keys())
|
|
19427
19601
|
for name, value in vars(self).items():
|
|
19428
19602
|
property_name = name[1:]
|
|
@@ -17,6 +17,9 @@
|
|
|
17
17
|
# 欠费账户不能创建实例
|
|
18
18
|
FAILEDOPERATION_ARREARSACCOUNTCANNOTRUNINSTANCES = 'FailedOperation.ArrearsAccountCannotRunInstances'
|
|
19
19
|
|
|
20
|
+
# 并发操作实例失败
|
|
21
|
+
FAILEDOPERATION_OPERATEINSTANCEREPEATEDLY = 'FailedOperation.OperateInstanceRepeatedly'
|
|
22
|
+
|
|
20
23
|
# 内部错误。
|
|
21
24
|
INTERNALERROR = 'InternalError'
|
|
22
25
|
|
|
@@ -8343,9 +8343,11 @@ class DescribeVideoDownloadUrlRequest(AbstractModel):
|
|
|
8343
8343
|
r"""
|
|
8344
8344
|
:param _ChannelId: 通道 ID
|
|
8345
8345
|
:type ChannelId: str
|
|
8346
|
-
:param _BeginTime: 下载的开始时间,UTC 秒数,开始和结束时间段最长为
|
|
8346
|
+
:param _BeginTime: 下载的开始时间,UTC 秒数,开始和结束时间段最长为60分钟,且不能跨天。
|
|
8347
|
+
注意:实际下载的文件时长可能会大于该时段时长,通过指定IsRespActualTime参数可以获取实际下载的开始时间和结束时间。 原因是下载是TS切片对齐的,其目的也是为了保证用户下载数据的完整性,完全包含其指定的时间段。
|
|
8347
8348
|
:type BeginTime: str
|
|
8348
|
-
:param _EndTime: 下载的结束时间,UTC 秒数,开始和结束时间段最长为
|
|
8349
|
+
:param _EndTime: 下载的结束时间,UTC 秒数,开始和结束时间段最长为60分钟,且不能跨天。
|
|
8350
|
+
注意:实际下载的文件时长可能会大于该时段时长,通过指定IsRespActualTime参数可以获取实际下载的开始时间和结束时间。 原因是下载是TS切片对齐的,其目的也是为了保证用户下载数据的完整性,完全包含其指定的时间段。
|
|
8349
8351
|
:type EndTime: str
|
|
8350
8352
|
:param _FileType: 文件格式,"mp4":mp4格式,"ts":ts文件格式
|
|
8351
8353
|
:type FileType: str
|
|
@@ -236,7 +236,7 @@ class AsymmetricSm2DecryptRequest(AbstractModel):
|
|
|
236
236
|
r"""
|
|
237
237
|
:param _KeyId: CMK的唯一标识
|
|
238
238
|
:type KeyId: str
|
|
239
|
-
:param _Ciphertext: 使用PublicKey加密的密文,Base64
|
|
239
|
+
:param _Ciphertext: 使用PublicKey加密的密文,Base64编码,原始密文格式需要为C1C3C2_ASN1。原始密文长度不能超过256字节。
|
|
240
240
|
:type Ciphertext: str
|
|
241
241
|
"""
|
|
242
242
|
self._KeyId = None
|
|
@@ -16869,12 +16869,16 @@ running 初始化完成,运行中
|
|
|
16869
16869
|
:param _EksClusterId: 实例eks集群ID
|
|
16870
16870
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
16871
16871
|
:type EksClusterId: str
|
|
16872
|
+
:param _SecurityGroupId: eks集群内pod的安全组
|
|
16873
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
16874
|
+
:type SecurityGroupId: str
|
|
16872
16875
|
:param _RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
16873
16876
|
:type RequestId: str
|
|
16874
16877
|
"""
|
|
16875
16878
|
self._Status = None
|
|
16876
16879
|
self._Steps = None
|
|
16877
16880
|
self._EksClusterId = None
|
|
16881
|
+
self._SecurityGroupId = None
|
|
16878
16882
|
self._RequestId = None
|
|
16879
16883
|
|
|
16880
16884
|
@property
|
|
@@ -16901,6 +16905,14 @@ running 初始化完成,运行中
|
|
|
16901
16905
|
def EksClusterId(self, EksClusterId):
|
|
16902
16906
|
self._EksClusterId = EksClusterId
|
|
16903
16907
|
|
|
16908
|
+
@property
|
|
16909
|
+
def SecurityGroupId(self):
|
|
16910
|
+
return self._SecurityGroupId
|
|
16911
|
+
|
|
16912
|
+
@SecurityGroupId.setter
|
|
16913
|
+
def SecurityGroupId(self, SecurityGroupId):
|
|
16914
|
+
self._SecurityGroupId = SecurityGroupId
|
|
16915
|
+
|
|
16904
16916
|
@property
|
|
16905
16917
|
def RequestId(self):
|
|
16906
16918
|
return self._RequestId
|
|
@@ -16919,6 +16931,7 @@ running 初始化完成,运行中
|
|
|
16919
16931
|
obj._deserialize(item)
|
|
16920
16932
|
self._Steps.append(obj)
|
|
16921
16933
|
self._EksClusterId = params.get("EksClusterId")
|
|
16934
|
+
self._SecurityGroupId = params.get("SecurityGroupId")
|
|
16922
16935
|
self._RequestId = params.get("RequestId")
|
|
16923
16936
|
|
|
16924
16937
|
|
|
@@ -18548,7 +18561,8 @@ class DescribeStatisticDataRequest(AbstractModel):
|
|
|
18548
18561
|
:type Module: str
|
|
18549
18562
|
:param _Namespace: 命名空间,目前支持QCE/TKE2(Conditions必填),QCE/KEEWIDB,QCE/CAMP
|
|
18550
18563
|
:type Namespace: str
|
|
18551
|
-
:param _MetricNames:
|
|
18564
|
+
:param _MetricNames: 指标名列表,相关指标信息可参考对应 云产品指标文档
|
|
18565
|
+
https://cloud.tencent.com/document/product/248/62458
|
|
18552
18566
|
:type MetricNames: list of str
|
|
18553
18567
|
:param _Conditions: 维度条件,操作符支持=、in
|
|
18554
18568
|
配置文档参考:https://cloud.tencent.com/document/product/248/53821
|
|
@@ -24530,6 +24544,9 @@ abnormal = 异常
|
|
|
24530
24544
|
:param _Name: agent名称
|
|
24531
24545
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
24532
24546
|
:type Name: str
|
|
24547
|
+
:param _EnableExternal: 是否已开启公网访问,true 开启,false 未开启
|
|
24548
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
24549
|
+
:type EnableExternal: bool
|
|
24533
24550
|
"""
|
|
24534
24551
|
self._ClusterType = None
|
|
24535
24552
|
self._ClusterId = None
|
|
@@ -24540,6 +24557,7 @@ abnormal = 异常
|
|
|
24540
24557
|
self._VpcId = None
|
|
24541
24558
|
self._FailedReason = None
|
|
24542
24559
|
self._Name = None
|
|
24560
|
+
self._EnableExternal = None
|
|
24543
24561
|
|
|
24544
24562
|
@property
|
|
24545
24563
|
def ClusterType(self):
|
|
@@ -24613,6 +24631,14 @@ abnormal = 异常
|
|
|
24613
24631
|
def Name(self, Name):
|
|
24614
24632
|
self._Name = Name
|
|
24615
24633
|
|
|
24634
|
+
@property
|
|
24635
|
+
def EnableExternal(self):
|
|
24636
|
+
return self._EnableExternal
|
|
24637
|
+
|
|
24638
|
+
@EnableExternal.setter
|
|
24639
|
+
def EnableExternal(self, EnableExternal):
|
|
24640
|
+
self._EnableExternal = EnableExternal
|
|
24641
|
+
|
|
24616
24642
|
|
|
24617
24643
|
def _deserialize(self, params):
|
|
24618
24644
|
self._ClusterType = params.get("ClusterType")
|
|
@@ -24629,6 +24655,7 @@ abnormal = 异常
|
|
|
24629
24655
|
self._VpcId = params.get("VpcId")
|
|
24630
24656
|
self._FailedReason = params.get("FailedReason")
|
|
24631
24657
|
self._Name = params.get("Name")
|
|
24658
|
+
self._EnableExternal = params.get("EnableExternal")
|
|
24632
24659
|
memeber_set = set(params.keys())
|
|
24633
24660
|
for name, value in vars(self).items():
|
|
24634
24661
|
property_name = name[1:]
|
|
@@ -23,6 +23,9 @@ FAILEDOPERATION_BUCKETNOTIFYALREADYEXIST = 'FailedOperation.BucketNotifyAlreadyE
|
|
|
23
23
|
# 操作失败:COS 已经停服。
|
|
24
24
|
FAILEDOPERATION_COSSTATUSINAVLID = 'FailedOperation.CosStatusInavlid'
|
|
25
25
|
|
|
26
|
+
# 生成资源失败。
|
|
27
|
+
FAILEDOPERATION_GENERATERESOURCE = 'FailedOperation.GenerateResource'
|
|
28
|
+
|
|
26
29
|
# 操作失败:获取源通知错误。
|
|
27
30
|
FAILEDOPERATION_GETSOURCENOTIFY = 'FailedOperation.GetSourceNotify'
|
|
28
31
|
|
|
@@ -8640,8 +8640,8 @@ class AudioTemplateInfo(AbstractModel):
|
|
|
8640
8640
|
:param _AudioChannel: 音频通道方式,可选值:
|
|
8641
8641
|
<li>1:单通道</li>
|
|
8642
8642
|
<li>2:双通道</li>
|
|
8643
|
-
<li>6
|
|
8644
|
-
当媒体的封装格式是音频格式时(flac,ogg,mp3,m4a
|
|
8643
|
+
<li>6:5.1声道</li>
|
|
8644
|
+
当媒体的封装格式是音频格式时(flac,ogg,mp3,m4a)时,声道数不允许设为5.1声道。
|
|
8645
8645
|
默认值:2。
|
|
8646
8646
|
:type AudioChannel: int
|
|
8647
8647
|
"""
|
|
@@ -13675,6 +13675,8 @@ class CreateScheduleRequest(AbstractModel):
|
|
|
13675
13675
|
:type OutputDir: str
|
|
13676
13676
|
:param _TaskNotifyConfig: 任务的事件通知配置,不填代表不获取事件通知。
|
|
13677
13677
|
:type TaskNotifyConfig: :class:`tencentcloud.mps.v20190612.models.TaskNotifyConfig`
|
|
13678
|
+
:param _ResourceId: 资源ID,需要保证对应资源是开启状态。默认为帐号主资源ID。
|
|
13679
|
+
:type ResourceId: str
|
|
13678
13680
|
"""
|
|
13679
13681
|
self._ScheduleName = None
|
|
13680
13682
|
self._Trigger = None
|
|
@@ -13682,6 +13684,7 @@ class CreateScheduleRequest(AbstractModel):
|
|
|
13682
13684
|
self._OutputStorage = None
|
|
13683
13685
|
self._OutputDir = None
|
|
13684
13686
|
self._TaskNotifyConfig = None
|
|
13687
|
+
self._ResourceId = None
|
|
13685
13688
|
|
|
13686
13689
|
@property
|
|
13687
13690
|
def ScheduleName(self):
|
|
@@ -13731,6 +13734,14 @@ class CreateScheduleRequest(AbstractModel):
|
|
|
13731
13734
|
def TaskNotifyConfig(self, TaskNotifyConfig):
|
|
13732
13735
|
self._TaskNotifyConfig = TaskNotifyConfig
|
|
13733
13736
|
|
|
13737
|
+
@property
|
|
13738
|
+
def ResourceId(self):
|
|
13739
|
+
return self._ResourceId
|
|
13740
|
+
|
|
13741
|
+
@ResourceId.setter
|
|
13742
|
+
def ResourceId(self, ResourceId):
|
|
13743
|
+
self._ResourceId = ResourceId
|
|
13744
|
+
|
|
13734
13745
|
|
|
13735
13746
|
def _deserialize(self, params):
|
|
13736
13747
|
self._ScheduleName = params.get("ScheduleName")
|
|
@@ -13750,6 +13761,7 @@ class CreateScheduleRequest(AbstractModel):
|
|
|
13750
13761
|
if params.get("TaskNotifyConfig") is not None:
|
|
13751
13762
|
self._TaskNotifyConfig = TaskNotifyConfig()
|
|
13752
13763
|
self._TaskNotifyConfig._deserialize(params.get("TaskNotifyConfig"))
|
|
13764
|
+
self._ResourceId = params.get("ResourceId")
|
|
13753
13765
|
memeber_set = set(params.keys())
|
|
13754
13766
|
for name, value in vars(self).items():
|
|
13755
13767
|
property_name = name[1:]
|
|
@@ -26960,6 +26972,10 @@ class LiveStreamTaskNotifyConfig(AbstractModel):
|
|
|
26960
26972
|
|
|
26961
26973
|
def __init__(self):
|
|
26962
26974
|
r"""
|
|
26975
|
+
:param _NotifyType: 通知类型,默认CMQ,指定URL时HTTP回调推送到 NotifyUrl 指定的地址。
|
|
26976
|
+
|
|
26977
|
+
<font color="red"> 注:不填或为空时默认 CMQ,如需采用其他类型需填写对应类型值。 </font>
|
|
26978
|
+
:type NotifyType: str
|
|
26963
26979
|
:param _CmqModel: CMQ 的模型,有 Queue 和 Topic 两种,目前仅支持 Queue。
|
|
26964
26980
|
:type CmqModel: str
|
|
26965
26981
|
:param _CmqRegion: CMQ 的园区,如 sh,bj 等。
|
|
@@ -26968,20 +26984,24 @@ class LiveStreamTaskNotifyConfig(AbstractModel):
|
|
|
26968
26984
|
:type QueueName: str
|
|
26969
26985
|
:param _TopicName: 当模型为 Topic 时有效,表示接收事件通知的 CMQ 的主题名。
|
|
26970
26986
|
:type TopicName: str
|
|
26971
|
-
:param _NotifyType: 通知类型,默认CMQ,指定URL时HTTP回调推送到 NotifyUrl 指定的地址。
|
|
26972
|
-
|
|
26973
|
-
<font color="red"> 注:不填或为空时默认 CMQ,如需采用其他类型需填写对应类型值。 </font>
|
|
26974
|
-
:type NotifyType: str
|
|
26975
26987
|
:param _NotifyUrl: HTTP回调地址,NotifyType为URL时必填。
|
|
26976
26988
|
:type NotifyUrl: str
|
|
26977
26989
|
"""
|
|
26990
|
+
self._NotifyType = None
|
|
26978
26991
|
self._CmqModel = None
|
|
26979
26992
|
self._CmqRegion = None
|
|
26980
26993
|
self._QueueName = None
|
|
26981
26994
|
self._TopicName = None
|
|
26982
|
-
self._NotifyType = None
|
|
26983
26995
|
self._NotifyUrl = None
|
|
26984
26996
|
|
|
26997
|
+
@property
|
|
26998
|
+
def NotifyType(self):
|
|
26999
|
+
return self._NotifyType
|
|
27000
|
+
|
|
27001
|
+
@NotifyType.setter
|
|
27002
|
+
def NotifyType(self, NotifyType):
|
|
27003
|
+
self._NotifyType = NotifyType
|
|
27004
|
+
|
|
26985
27005
|
@property
|
|
26986
27006
|
def CmqModel(self):
|
|
26987
27007
|
return self._CmqModel
|
|
@@ -27014,14 +27034,6 @@ class LiveStreamTaskNotifyConfig(AbstractModel):
|
|
|
27014
27034
|
def TopicName(self, TopicName):
|
|
27015
27035
|
self._TopicName = TopicName
|
|
27016
27036
|
|
|
27017
|
-
@property
|
|
27018
|
-
def NotifyType(self):
|
|
27019
|
-
return self._NotifyType
|
|
27020
|
-
|
|
27021
|
-
@NotifyType.setter
|
|
27022
|
-
def NotifyType(self, NotifyType):
|
|
27023
|
-
self._NotifyType = NotifyType
|
|
27024
|
-
|
|
27025
27037
|
@property
|
|
27026
27038
|
def NotifyUrl(self):
|
|
27027
27039
|
return self._NotifyUrl
|
|
@@ -27032,11 +27044,11 @@ class LiveStreamTaskNotifyConfig(AbstractModel):
|
|
|
27032
27044
|
|
|
27033
27045
|
|
|
27034
27046
|
def _deserialize(self, params):
|
|
27047
|
+
self._NotifyType = params.get("NotifyType")
|
|
27035
27048
|
self._CmqModel = params.get("CmqModel")
|
|
27036
27049
|
self._CmqRegion = params.get("CmqRegion")
|
|
27037
27050
|
self._QueueName = params.get("QueueName")
|
|
27038
27051
|
self._TopicName = params.get("TopicName")
|
|
27039
|
-
self._NotifyType = params.get("NotifyType")
|
|
27040
27052
|
self._NotifyUrl = params.get("NotifyUrl")
|
|
27041
27053
|
memeber_set = set(params.keys())
|
|
27042
27054
|
for name, value in vars(self).items():
|
|
@@ -31982,6 +31994,8 @@ class ModifyScheduleRequest(AbstractModel):
|
|
|
31982
31994
|
:type OutputDir: str
|
|
31983
31995
|
:param _TaskNotifyConfig: 任务的事件通知配置。
|
|
31984
31996
|
:type TaskNotifyConfig: :class:`tencentcloud.mps.v20190612.models.TaskNotifyConfig`
|
|
31997
|
+
:param _ResourceId: 资源ID,需要保证对应资源是开启状态。
|
|
31998
|
+
:type ResourceId: str
|
|
31985
31999
|
"""
|
|
31986
32000
|
self._ScheduleId = None
|
|
31987
32001
|
self._ScheduleName = None
|
|
@@ -31990,6 +32004,7 @@ class ModifyScheduleRequest(AbstractModel):
|
|
|
31990
32004
|
self._OutputStorage = None
|
|
31991
32005
|
self._OutputDir = None
|
|
31992
32006
|
self._TaskNotifyConfig = None
|
|
32007
|
+
self._ResourceId = None
|
|
31993
32008
|
|
|
31994
32009
|
@property
|
|
31995
32010
|
def ScheduleId(self):
|
|
@@ -32047,6 +32062,14 @@ class ModifyScheduleRequest(AbstractModel):
|
|
|
32047
32062
|
def TaskNotifyConfig(self, TaskNotifyConfig):
|
|
32048
32063
|
self._TaskNotifyConfig = TaskNotifyConfig
|
|
32049
32064
|
|
|
32065
|
+
@property
|
|
32066
|
+
def ResourceId(self):
|
|
32067
|
+
return self._ResourceId
|
|
32068
|
+
|
|
32069
|
+
@ResourceId.setter
|
|
32070
|
+
def ResourceId(self, ResourceId):
|
|
32071
|
+
self._ResourceId = ResourceId
|
|
32072
|
+
|
|
32050
32073
|
|
|
32051
32074
|
def _deserialize(self, params):
|
|
32052
32075
|
self._ScheduleId = params.get("ScheduleId")
|
|
@@ -32067,6 +32090,7 @@ class ModifyScheduleRequest(AbstractModel):
|
|
|
32067
32090
|
if params.get("TaskNotifyConfig") is not None:
|
|
32068
32091
|
self._TaskNotifyConfig = TaskNotifyConfig()
|
|
32069
32092
|
self._TaskNotifyConfig._deserialize(params.get("TaskNotifyConfig"))
|
|
32093
|
+
self._ResourceId = params.get("ResourceId")
|
|
32070
32094
|
memeber_set = set(params.keys())
|
|
32071
32095
|
for name, value in vars(self).items():
|
|
32072
32096
|
property_name = name[1:]
|
|
@@ -35252,7 +35276,8 @@ class ProcessMediaRequest(AbstractModel):
|
|
|
35252
35276
|
:param _ScheduleId: 编排ID。
|
|
35253
35277
|
注意1:对于OutputStorage、OutputDir参数:
|
|
35254
35278
|
<li>当服务编排中子任务节点配置了OutputStorage、OutputDir时,该子任务节点中配置的输出作为子任务的输出。</li>
|
|
35255
|
-
<li>当服务编排中子任务节点没有配置OutputStorage、OutputDir时,若创建任务接口(ProcessMedia
|
|
35279
|
+
<li>当服务编排中子任务节点没有配置OutputStorage、OutputDir时,若创建任务接口(ProcessMedia)有指定输出,将覆盖原有编排的默认输出。</li>
|
|
35280
|
+
<li>即输出设置的优先级:编排子任务节点 > 任务接口指定 > 对应编排内的配置 </li>
|
|
35256
35281
|
注意2:对于TaskNotifyConfig参数,若创建任务接口(ProcessMedia)有设置,将覆盖原有编排的默认回调。
|
|
35257
35282
|
|
|
35258
35283
|
注意3:编排的 Trigger 只是用来自动化触发场景,在手动发起的请求中已经配置的 Trigger 无意义。
|
|
@@ -38083,6 +38108,9 @@ Disabled:已禁用。
|
|
|
38083
38108
|
:param _UpdateTime: 最后编辑时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
|
|
38084
38109
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
38085
38110
|
:type UpdateTime: str
|
|
38111
|
+
:param _ResourceId: 资源ID,对于没有关联资源ID的,用账号主资源ID填充。
|
|
38112
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
38113
|
+
:type ResourceId: str
|
|
38086
38114
|
"""
|
|
38087
38115
|
self._ScheduleId = None
|
|
38088
38116
|
self._ScheduleName = None
|
|
@@ -38095,6 +38123,7 @@ Disabled:已禁用。
|
|
|
38095
38123
|
self._TaskNotifyConfig = None
|
|
38096
38124
|
self._CreateTime = None
|
|
38097
38125
|
self._UpdateTime = None
|
|
38126
|
+
self._ResourceId = None
|
|
38098
38127
|
|
|
38099
38128
|
@property
|
|
38100
38129
|
def ScheduleId(self):
|
|
@@ -38184,6 +38213,14 @@ Disabled:已禁用。
|
|
|
38184
38213
|
def UpdateTime(self, UpdateTime):
|
|
38185
38214
|
self._UpdateTime = UpdateTime
|
|
38186
38215
|
|
|
38216
|
+
@property
|
|
38217
|
+
def ResourceId(self):
|
|
38218
|
+
return self._ResourceId
|
|
38219
|
+
|
|
38220
|
+
@ResourceId.setter
|
|
38221
|
+
def ResourceId(self, ResourceId):
|
|
38222
|
+
self._ResourceId = ResourceId
|
|
38223
|
+
|
|
38187
38224
|
|
|
38188
38225
|
def _deserialize(self, params):
|
|
38189
38226
|
self._ScheduleId = params.get("ScheduleId")
|
|
@@ -38208,6 +38245,7 @@ Disabled:已禁用。
|
|
|
38208
38245
|
self._TaskNotifyConfig._deserialize(params.get("TaskNotifyConfig"))
|
|
38209
38246
|
self._CreateTime = params.get("CreateTime")
|
|
38210
38247
|
self._UpdateTime = params.get("UpdateTime")
|
|
38248
|
+
self._ResourceId = params.get("ResourceId")
|
|
38211
38249
|
memeber_set = set(params.keys())
|
|
38212
38250
|
for name, value in vars(self).items():
|
|
38213
38251
|
property_name = name[1:]
|
|
@@ -2247,8 +2247,9 @@ class MpsClient(AbstractClient):
|
|
|
2247
2247
|
5. 对视频截图雪碧图;
|
|
2248
2248
|
6. 对视频转自适应码流;
|
|
2249
2249
|
7. 智能内容审核(鉴黄、敏感信息检测);
|
|
2250
|
-
8.
|
|
2250
|
+
8. 智能内容分析(标签、分类、封面、按帧标签、拆条、集锦、片头片尾、游戏打点);
|
|
2251
2251
|
9. 智能内容识别(人脸、文本全文、文本关键词、语音全文、语音关键词、语音翻译、物体识别)。
|
|
2252
|
+
10. 媒体质检(直播流格式诊断、音画内容检测(抖动、模糊、低光照、过曝光、黑边、白边、黑屏、白屏、花屏、噪点、马赛克、二维码等)、无参考打分)
|
|
2252
2253
|
|
|
2253
2254
|
:param request: Request instance for ProcessMedia.
|
|
2254
2255
|
:type request: :class:`tencentcloud.mps.v20190612.models.ProcessMediaRequest`
|