tccli 3.0.1110.1__py2.py3-none-any.whl → 3.0.1111.1__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.
tccli/__init__.py CHANGED
@@ -1 +1 @@
1
- __version__ = '3.0.1110.1'
1
+ __version__ = '3.0.1111.1'
@@ -6,7 +6,7 @@ Input:
6
6
 
7
7
  ```
8
8
  tccli sms AddSmsTemplate --cli-unfold-argument \
9
- --SmsType 0 \
9
+ --SmsType 3 \
10
10
  --International 0 \
11
11
  --Remark 业务验证码 \
12
12
  --TemplateContent 您的验证码是{1} \
@@ -7,7 +7,7 @@ Input:
7
7
  ```
8
8
  tccli sms ModifySmsTemplate --cli-unfold-argument \
9
9
  --TemplateId 1110 \
10
- --SmsType 0 \
10
+ --SmsType 3 \
11
11
  --International 0 \
12
12
  --Remark 业务验证码 \
13
13
  --TemplateContent 您的验证码是{1} \
@@ -0,0 +1,22 @@
1
+ **Example 1: 样例**
2
+
3
+
4
+
5
+ Input:
6
+
7
+ ```
8
+ tccli trtc DescribeAITranscription --cli-unfold-argument \
9
+ --TaskId abc
10
+ ```
11
+
12
+ Output:
13
+ ```
14
+ {
15
+ "Response": {
16
+ "StartTime": "abc",
17
+ "Status": "abc",
18
+ "RequestId": "abc"
19
+ }
20
+ }
21
+ ```
22
+
@@ -0,0 +1,30 @@
1
+ **Example 1: 样例**
2
+
3
+
4
+
5
+ Input:
6
+
7
+ ```
8
+ tccli trtc StartAITranscription --cli-unfold-argument \
9
+ --SdkAppId 1234 \
10
+ --RoomId 1234 \
11
+ --RoomIdType 1 \
12
+ --TranscriptionParams.UserId abc \
13
+ --TranscriptionParams.UserSig abc \
14
+ --TranscriptionParams.IMAdminUserId abc \
15
+ --TranscriptionParams.IMAdminUserSig abc \
16
+ --TranscriptionParams.MaxIdleTime 60 \
17
+ --TranscriptionParams.TranscriptionMode 1 \
18
+ --TranscriptionParams.TargetUserId abc
19
+ ```
20
+
21
+ Output:
22
+ ```
23
+ {
24
+ "Response": {
25
+ "TaskId": "abc",
26
+ "RequestId": "abc"
27
+ }
28
+ }
29
+ ```
30
+
@@ -0,0 +1,20 @@
1
+ **Example 1: 样例**
2
+
3
+
4
+
5
+ Input:
6
+
7
+ ```
8
+ tccli trtc StopAITranscription --cli-unfold-argument \
9
+ --TaskId abc
10
+ ```
11
+
12
+ Output:
13
+ ```
14
+ {
15
+ "Response": {
16
+ "RequestId": "abc"
17
+ }
18
+ }
19
+ ```
20
+
@@ -0,0 +1,18 @@
1
+ **Example 1: 样例**
2
+
3
+
4
+
5
+ Input:
6
+
7
+ ```
8
+ tccli trtc SummarizeTranscription --cli-unfold-argument ```
9
+
10
+ Output:
11
+ ```
12
+ {
13
+ "Response": {
14
+ "RequestId": "abc"
15
+ }
16
+ }
17
+ ```
18
+
@@ -419,7 +419,7 @@
419
419
  {
420
420
  "disabled": false,
421
421
  "document": "回调数据中,是否需要对应音频数据。",
422
- "example": "flase",
422
+ "example": "false",
423
423
  "member": "bool",
424
424
  "name": "AudioData",
425
425
  "required": false,
@@ -2354,9 +2354,21 @@
2354
2354
  "example": "on/off",
2355
2355
  "member": "string",
2356
2356
  "name": "Switch",
2357
+ "output_required": true,
2357
2358
  "required": false,
2358
2359
  "type": "string",
2359
2360
  "value_allowed_null": true
2361
+ },
2362
+ {
2363
+ "disabled": false,
2364
+ "document": "当原图是 avif 且客户端 Accept 头包含 image/avif 时,直接返回原图。\n当原图是 avif 且客户端 Accept 头不包含 image/avif 时但包含 image/webp,将 avif 转 webp 格式返回。如果 Accept 头不包含 image/webp, 则转 jpeg 返回。\n\n可用的枚举值: \n- []\n- [\"webp\"]\n- [\"jpeg\"]\n- [\"webp\", \"jpeg\"]\n\n\"webp\":是否开启 avif 转 webp,\"jpeg\": 是否开启 avif 转 jpeg。如果 webp 和 jpeg 都开启的情况下,webp 必须在 jpeg 前面。\n注意:此字段可能返回 null,表示取不到有效值。",
2365
+ "example": "[\"webp\", \"jpeg\"]",
2366
+ "member": "string",
2367
+ "name": "FallbackFormats",
2368
+ "output_required": false,
2369
+ "required": false,
2370
+ "type": "list",
2371
+ "value_allowed_null": true
2360
2372
  }
2361
2373
  ],
2362
2374
  "usage": "both"
@@ -157,7 +157,7 @@
157
157
  "CreateIdentifyRuleAnotherName": {
158
158
  "document": "创建规则别名",
159
159
  "input": "CreateIdentifyRuleAnotherNameRequest",
160
- "name": "创建规则别别名",
160
+ "name": "创建规则别名",
161
161
  "output": "CreateIdentifyRuleAnotherNameResponse",
162
162
  "status": "online"
163
163
  },
@@ -1740,7 +1740,7 @@
1740
1740
  "usage": "both"
1741
1741
  },
1742
1742
  "AssessmentTemplate": {
1743
- "document": "DSPA评估模版",
1743
+ "document": "DSPA评估模板",
1744
1744
  "members": [
1745
1745
  {
1746
1746
  "disabled": false,
@@ -3039,7 +3039,7 @@
3039
3039
  },
3040
3040
  {
3041
3041
  "disabled": false,
3042
- "document": "模版名称",
3042
+ "document": "模板名称",
3043
3043
  "example": "xx-风险模板",
3044
3044
  "member": "string",
3045
3045
  "name": "TemplateName",
@@ -3066,7 +3066,7 @@
3066
3066
  },
3067
3067
  {
3068
3068
  "disabled": false,
3069
- "document": "模版描述",
3069
+ "document": "模板描述",
3070
3070
  "example": "模板描述",
3071
3071
  "member": "string",
3072
3072
  "name": "TemplateDescription",
@@ -5894,7 +5894,7 @@
5894
5894
  {
5895
5895
  "disabled": false,
5896
5896
  "document": "数据源name\n注意:此字段可能返回 null,表示取不到有效值。",
5897
- "example": "",
5897
+ "example": "default",
5898
5898
  "member": "string",
5899
5899
  "name": "DataSourceName",
5900
5900
  "output_required": true,
@@ -5994,7 +5994,7 @@
5994
5994
  {
5995
5995
  "disabled": false,
5996
5996
  "document": "备注\n注意:此字段可能返回 null,表示取不到有效值。",
5997
- "example": "xxx",
5997
+ "example": "remark",
5998
5998
  "member": "string",
5999
5999
  "name": "Remark",
6000
6000
  "output_required": true,
@@ -6004,7 +6004,7 @@
6004
6004
  {
6005
6005
  "disabled": false,
6006
6006
  "document": "安全产品\n注意:此字段可能返回 null,表示取不到有效值。",
6007
- "example": "",
6007
+ "example": "dsgc",
6008
6008
  "member": "SecurityProduct",
6009
6009
  "name": "SecurityProduct",
6010
6010
  "output_required": true,
@@ -6034,7 +6034,7 @@
6034
6034
  {
6035
6035
  "disabled": false,
6036
6036
  "document": "风险账号详情\n注意:此字段可能返回 null,表示取不到有效值。",
6037
- "example": "",
6037
+ "example": "[admin]",
6038
6038
  "member": "AccountRisk",
6039
6039
  "name": "AccountRiskDetail",
6040
6040
  "output_required": true,
@@ -6044,7 +6044,7 @@
6044
6044
  {
6045
6045
  "disabled": false,
6046
6046
  "document": "权限风险详情\n注意:此字段可能返回 null,表示取不到有效值。",
6047
- "example": "",
6047
+ "example": "[riskDetail]",
6048
6048
  "member": "PrivilegeRisk",
6049
6049
  "name": "PrivilegeRiskDetail",
6050
6050
  "output_required": true,
@@ -6054,7 +6054,7 @@
6054
6054
  {
6055
6055
  "disabled": false,
6056
6056
  "document": "策略风险的cos风险文件列表\n注意:此字段可能返回 null,表示取不到有效值。",
6057
- "example": "",
6057
+ "example": "[file1,file2]",
6058
6058
  "member": "string",
6059
6059
  "name": "PolicyRiskCosFileList",
6060
6060
  "output_required": true,
@@ -6064,7 +6064,7 @@
6064
6064
  {
6065
6065
  "disabled": false,
6066
6066
  "document": "AKSK泄漏列表\n注意:此字段可能返回 null,表示取不到有效值。",
6067
- "example": "",
6067
+ "example": "[akList]",
6068
6068
  "member": "AKSKLeak",
6069
6069
  "name": "AKSKLeak",
6070
6070
  "output_required": true,
@@ -7684,7 +7684,7 @@
7684
7684
  },
7685
7685
  {
7686
7686
  "disabled": false,
7687
- "document": "过滤项。\n支持模糊搜索:(TemplateId,TemplateName)\n支持过滤:\nSource:模版来源,system / user\nUseType:模版类型,auto,semi-auto,law等\nStatus:模版启用状态,draft / launched",
7687
+ "document": "过滤项。支持模糊搜索:(TemplateId,TemplateName)支持过滤:Source:模板来源,system / userUseType:模板类型,auto,semi-auto,law等Status:模板启用状态,draft / launched",
7688
7688
  "example": "无",
7689
7689
  "member": "DspaAssessmentFilter",
7690
7690
  "name": "Filters",
@@ -16655,27 +16655,27 @@
16655
16655
  "example": "xx-account",
16656
16656
  "member": "string",
16657
16657
  "name": "AccountName",
16658
- "required": false,
16658
+ "output_required": true,
16659
16659
  "type": "list",
16660
16660
  "value_allowed_null": true
16661
16661
  },
16662
16662
  {
16663
16663
  "disabled": false,
16664
16664
  "document": "表名称\n注意:此字段可能返回 null,表示取不到有效值。",
16665
- "example": "xx",
16665
+ "example": "table",
16666
16666
  "member": "string",
16667
16667
  "name": "TableName",
16668
- "required": false,
16668
+ "output_required": true,
16669
16669
  "type": "string",
16670
16670
  "value_allowed_null": true
16671
16671
  },
16672
16672
  {
16673
16673
  "disabled": false,
16674
16674
  "document": "说明\n注意:此字段可能返回 null,表示取不到有效值。",
16675
- "example": "xx",
16675
+ "example": "table-desc",
16676
16676
  "member": "string",
16677
16677
  "name": "Description",
16678
- "required": false,
16678
+ "output_required": true,
16679
16679
  "type": "string",
16680
16680
  "value_allowed_null": true
16681
16681
  }
@@ -173,25 +173,25 @@
173
173
  "ChannelCreateFlowApprovers": [
174
174
  {
175
175
  "document": "在B2C签署中,双方签署方未指定具体签署人时,需要进行补充。 \n注:`补充动态签署人时FillApproverType传值为1 `",
176
- "input": "POST / HTTP/1.1\nHost: essbasic.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ChannelDescribeUserAutoSignStatus\n<公共请求参数>\n\n{\n \"Operator\": {\n \"OpenId\": \"\",\n \"ClientIp\": \"\",\n \"CustomUserId\": \"\",\n \"ProxyIp\": \"\",\n \"Channel\": \"\"\n },\n \"Agent\": {\n \"ProxyAppId\": \"c17bdf9c2a7bdcb32611f4d0200fef3d\",\n \"ProxyOrganizationOpenId\": \"d7c13a8b81340cce9e3968c0ee248f04\",\n \"ProxyOperator\": {\n \"OpenId\": \"00498cc8500be9cxxxxxxx3aff766cac\"\n },\n \"AppId\": \"65fb0c591044be8a1f60aa382cc5ed0e\"\n },\n \"FlowId\": \"111111***22222\",\n \"FillApproverType\": 1,\n \"Approvers\": [\n {\n \"RecipientId\": \"yDRS4UUgygqdcj51UuO4zjEyWTmzsIAR\",\n \"ApproverName\": \"典子谦\",\n \"ApproverMobile\": \"13200000000\",\n \"OrganizationName\": \"***有限公司\"\n },\n {\n \"RecipientId\": \"yDRS4UUgygqdcj2tUuO4zjEEFuP35Swc\",\n \"ApproverName\": \"张三\",\n \"ApproverMobile\": \"18888888888\"\n }\n ]\n}",
176
+ "input": "POST / HTTP/1.1\nHost: essbasic.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ChannelCreateFlowApprovers\n<公共请求参数>\n\n{\n \"Operator\": {\n \"OpenId\": \"\",\n \"ClientIp\": \"\",\n \"CustomUserId\": \"\",\n \"ProxyIp\": \"\",\n \"Channel\": \"\"\n },\n \"Agent\": {\n \"ProxyAppId\": \"c17bdf9c2a7bdcb32611f4d0200fef3d\",\n \"ProxyOrganizationOpenId\": \"d7c13a8b81340cce9e3968c0ee248f04\",\n \"ProxyOperator\": {\n \"OpenId\": \"00498cc8500be9cxxxxxxx3aff766cac\"\n },\n \"AppId\": \"65fb0c591044be8a1f60aa382cc5ed0e\"\n },\n \"FlowId\": \"111111***22222\",\n \"FillApproverType\": 1,\n \"Approvers\": [\n {\n \"RecipientId\": \"yDRS4UUgygqdcj51UuO4zjEyWTmzsIAR\",\n \"ApproverName\": \"典子谦\",\n \"ApproverMobile\": \"13200000000\",\n \"OrganizationName\": \"***有限公司\"\n },\n {\n \"RecipientId\": \"yDRS4UUgygqdcj2tUuO4zjEEFuP35Swc\",\n \"ApproverName\": \"张三\",\n \"ApproverMobile\": \"18888888888\"\n }\n ]\n}",
177
177
  "output": "{\n \"Response\": {\n \"RequestId\": \"5beb5f54-cf3d-4c26-a4ee-a97c85196a3e\"\n }\n}",
178
178
  "title": "B2C签署,批量补充两方动态签署人信息"
179
179
  },
180
180
  {
181
181
  "document": "在B2C签署中,双方签署方未指定具体签署人时,需要进行补充。 \n注:`补充动态签署人时FillApproverType传值为1 `",
182
- "input": "POST / HTTP/1.1\nHost: essbasic.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ChannelDescribeUserAutoSignStatus\n<公共请求参数>\n\n{\n \"Operator\": {\n \"OpenId\": \"\",\n \"ClientIp\": \"\",\n \"CustomUserId\": \"\",\n \"ProxyIp\": \"\",\n \"Channel\": \"\"\n },\n \"Agent\": {\n \"ProxyAppId\": \"c17bdf9c2a7bdcb32611f4d0200fef3d\",\n \"ProxyOrganizationOpenId\": \"d7c13a8b81340cce9e3968c0ee248f04\",\n \"ProxyOperator\": {\n \"OpenId\": \"00498cc8500be9cxxxxxxx3aff766cac\"\n },\n \"AppId\": \"65fb0c591044be8a1f60aa382cc5ed0e\"\n },\n \"FlowGroupId\": \"111111***22222\",\n \"FillApproverType\": 1,\n \"Approvers\": [\n {\n \"RecipientId\": \"yDRS4UUgygqdcj51UuO4zjEyWTmzsIAR\",\n \"ApproverName\": \"典子谦\",\n \"ApproverMobile\": \"13200000000\",\n \"OrganizationName\": \"***有限公司\",\n \"FlowId\": \"yDCVMUUckpwytrk2UE1RW1FSR2BqdoGS\"\n },\n {\n \"RecipientId\": \"yDCVMUUckpwytrksUE1RW1FRR08t7Lxf\",\n \"ApproverName\": \"典子谦\",\n \"ApproverMobile\": \"13200000000\",\n \"OrganizationName\": \"***有限公司\",\n \"FlowId\": \"yDCVMUUckpwytrk2UE1RW1FSR2BqdoGS\"\n }\n ]\n}",
182
+ "input": "POST / HTTP/1.1\nHost: essbasic.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ChannelCreateFlowApprovers\n<公共请求参数>\n\n{\n \"Operator\": {\n \"OpenId\": \"\",\n \"ClientIp\": \"\",\n \"CustomUserId\": \"\",\n \"ProxyIp\": \"\",\n \"Channel\": \"\"\n },\n \"Agent\": {\n \"ProxyAppId\": \"c17bdf9c2a7bdcb32611f4d0200fef3d\",\n \"ProxyOrganizationOpenId\": \"d7c13a8b81340cce9e3968c0ee248f04\",\n \"ProxyOperator\": {\n \"OpenId\": \"00498cc8500be9cxxxxxxx3aff766cac\"\n },\n \"AppId\": \"65fb0c591044be8a1f60aa382cc5ed0e\"\n },\n \"FlowGroupId\": \"111111***22222\",\n \"FillApproverType\": 1,\n \"Approvers\": [\n {\n \"RecipientId\": \"yDRS4UUgygqdcj51UuO4zjEyWTmzsIAR\",\n \"ApproverName\": \"典子谦\",\n \"ApproverMobile\": \"13200000000\",\n \"OrganizationName\": \"***有限公司\",\n \"FlowId\": \"yDCVMUUckpwytrk2UE1RW1FSR2BqdoGS\"\n },\n {\n \"RecipientId\": \"yDCVMUUckpwytrksUE1RW1FRR08t7Lxf\",\n \"ApproverName\": \"典子谦\",\n \"ApproverMobile\": \"13200000000\",\n \"OrganizationName\": \"***有限公司\",\n \"FlowId\": \"yDCVMUUckpwytrk2UE1RW1FSR2BqdoGS\"\n }\n ]\n}",
183
183
  "output": "{\n \"Response\": {\n \"RequestId\": \"5beb5f54-cf3d-4c26-a4ee-a97c85196a3e\"\n }\n}",
184
184
  "title": "B2C签署,补充合同组两方动态签署人信息"
185
185
  },
186
186
  {
187
187
  "document": "在B2C签署中,双方签署方未指定具体签署人时,需要进行补充。当重复补充同一个签署节点时,会进行部分补充报错。 \n注:`补充动态签署人时FillApproverType传值为1 `",
188
- "input": "POST / HTTP/1.1\nHost: essbasic.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ChannelDescribeUserAutoSignStatus\n<公共请求参数>\n\n{\n \"Operator\": {\n \"OpenId\": \"\",\n \"ClientIp\": \"\",\n \"CustomUserId\": \"\",\n \"ProxyIp\": \"\",\n \"Channel\": \"\"\n },\n \"Agent\": {\n \"ProxyAppId\": \"c17bdf9c2a7bdcb32611f4d0200fef3d\",\n \"ProxyOrganizationOpenId\": \"d7c13a8b81340cce9e3968c0ee248f04\",\n \"ProxyOperator\": {\n \"OpenId\": \"00498cc8500be9cxxxxxxx3aff766cac\"\n },\n \"AppId\": \"65fb0c591044be8a1f60aa382cc5ed0e\"\n },\n \"FlowId\": \"111111***22222\",\n \"FillApproverType\": 1,\n \"Approvers\": [\n {\n \"RecipientId\": \"yDRS4UUgygqdcj51UuO4zjEyWTmzsIAR\",\n \"ApproverName\": \"典子谦\",\n \"ApproverMobile\": \"13200000000\",\n \"OrganizationName\": \"***有限公司\"\n },\n {\n \"RecipientId\": \"yDRS4UUgygqdcj2tUuO4zjEEFuP35Swc\",\n \"ApproverName\": \"张三\",\n \"ApproverMobile\": \"18888888888\"\n }\n ]\n}",
188
+ "input": "POST / HTTP/1.1\nHost: essbasic.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ChannelCreateFlowApprovers\n<公共请求参数>\n\n{\n \"Operator\": {\n \"OpenId\": \"\",\n \"ClientIp\": \"\",\n \"CustomUserId\": \"\",\n \"ProxyIp\": \"\",\n \"Channel\": \"\"\n },\n \"Agent\": {\n \"ProxyAppId\": \"c17bdf9c2a7bdcb32611f4d0200fef3d\",\n \"ProxyOrganizationOpenId\": \"d7c13a8b81340cce9e3968c0ee248f04\",\n \"ProxyOperator\": {\n \"OpenId\": \"00498cc8500be9cxxxxxxx3aff766cac\"\n },\n \"AppId\": \"65fb0c591044be8a1f60aa382cc5ed0e\"\n },\n \"FlowId\": \"111111***22222\",\n \"FillApproverType\": 1,\n \"Approvers\": [\n {\n \"RecipientId\": \"yDRS4UUgygqdcj51UuO4zjEyWTmzsIAR\",\n \"ApproverName\": \"典子谦\",\n \"ApproverMobile\": \"13200000000\",\n \"OrganizationName\": \"***有限公司\"\n },\n {\n \"RecipientId\": \"yDRS4UUgygqdcj2tUuO4zjEEFuP35Swc\",\n \"ApproverName\": \"张三\",\n \"ApproverMobile\": \"18888888888\"\n }\n ]\n}",
189
189
  "output": "{\n \"Response\": {\n \"FillError\": [\n {\n \"ErrMessage\": \"个人信息已补充,请勿重复补充\",\n \"RecipientId\": \"yDRS4UUgygqdcj2tUuO4zjEEFuP35Swc\"\n }\n ],\n \"RequestId\": \"s1696921563375938822\"\n }\n}",
190
190
  "title": "B2C签署,批量补充两方动态签署人信息时重复补充报错"
191
191
  },
192
192
  {
193
193
  "document": "通过姓名和证件类型、证件号码补充已实名个人用户",
194
- "input": "POST / HTTP/1.1\nHost: essbasic.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ChannelDescribeUserAutoSignStatus\n<公共请求参数>\n\n{\n \"Operator\": {\n \"OpenId\": \"\",\n \"ClientIp\": \"\",\n \"CustomUserId\": \"\",\n \"ProxyIp\": \"\",\n \"Channel\": \"\"\n },\n \"Agent\": {\n \"ProxyAppId\": \"c17bdf9c2a7bdcb32611f4d0200fef3d\",\n \"ProxyOrganizationOpenId\": \"d7c13a8b81340cce9e3968c0ee248f04\",\n \"ProxyOperator\": {\n \"OpenId\": \"00498cc8500be9cxxxxxxx3aff766cac\"\n },\n \"AppId\": \"65fb0c591044be8a1f60aa382cc5ed0e\"\n },\n \"FlowId\": \"111111***22222\",\n \"FillApproverType\": 1,\n \"Approvers\": [\n {\n \"RecipientId\": \"yDRS4UUgygqdcj2tUuO4zjEEFuP35Swc\",\n \"ApproverName\": \"张三\",\n \"ApproverIdCardType\": \"ID_CARD\",\n \"ApproverIdCardNumber\": \"620000198802020000\"\n }\n ]\n}",
194
+ "input": "POST / HTTP/1.1\nHost: essbasic.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ChannelCreateFlowApprovers\n<公共请求参数>\n\n{\n \"Operator\": {\n \"OpenId\": \"\",\n \"ClientIp\": \"\",\n \"CustomUserId\": \"\",\n \"ProxyIp\": \"\",\n \"Channel\": \"\"\n },\n \"Agent\": {\n \"ProxyAppId\": \"c17bdf9c2a7bdcb32611f4d0200fef3d\",\n \"ProxyOrganizationOpenId\": \"d7c13a8b81340cce9e3968c0ee248f04\",\n \"ProxyOperator\": {\n \"OpenId\": \"00498cc8500be9cxxxxxxx3aff766cac\"\n },\n \"AppId\": \"65fb0c591044be8a1f60aa382cc5ed0e\"\n },\n \"FlowId\": \"111111***22222\",\n \"FillApproverType\": 1,\n \"Approvers\": [\n {\n \"RecipientId\": \"yDRS4UUgygqdcj2tUuO4zjEEFuP35Swc\",\n \"ApproverName\": \"张三\",\n \"ApproverIdCardType\": \"ID_CARD\",\n \"ApproverIdCardNumber\": \"620000198802020000\"\n }\n ]\n}",
195
195
  "output": "{\n \"Response\": {\n \"RequestId\": \"5beb5f54-cf3d-4c26-a4ee-a97c85196a3e\"\n }\n}",
196
196
  "title": "B2C签署,通过姓名和证件类型、证件号码补充已实名个人用户"
197
197
  }
@@ -507,7 +507,7 @@
507
507
  "example": "[]",
508
508
  "member": "ServiceStatus",
509
509
  "name": "ServiceConf",
510
- "required": true,
510
+ "output_required": true,
511
511
  "type": "object",
512
512
  "value_allowed_null": false
513
513
  },
@@ -517,7 +517,7 @@
517
517
  "example": "1",
518
518
  "member": "uint64",
519
519
  "name": "BizId",
520
- "required": true,
520
+ "output_required": true,
521
521
  "type": "int",
522
522
  "value_allowed_null": false
523
523
  },
@@ -527,7 +527,7 @@
527
527
  "example": "xx",
528
528
  "member": "string",
529
529
  "name": "AppName",
530
- "required": true,
530
+ "output_required": true,
531
531
  "type": "string",
532
532
  "value_allowed_null": false
533
533
  },
@@ -537,7 +537,7 @@
537
537
  "example": "1",
538
538
  "member": "uint64",
539
539
  "name": "ProjectId",
540
- "required": true,
540
+ "output_required": true,
541
541
  "type": "int",
542
542
  "value_allowed_null": false
543
543
  },
@@ -547,7 +547,7 @@
547
547
  "example": "1",
548
548
  "member": "uint64",
549
549
  "name": "AppStatus",
550
- "required": true,
550
+ "output_required": true,
551
551
  "type": "int",
552
552
  "value_allowed_null": false
553
553
  },
@@ -557,7 +557,7 @@
557
557
  "example": "1",
558
558
  "member": "uint64",
559
559
  "name": "CreateTime",
560
- "required": true,
560
+ "output_required": true,
561
561
  "type": "int",
562
562
  "value_allowed_null": false
563
563
  },
@@ -567,7 +567,7 @@
567
567
  "example": "1",
568
568
  "member": "uint64",
569
569
  "name": "AppType",
570
- "required": true,
570
+ "output_required": true,
571
571
  "type": "int",
572
572
  "value_allowed_null": false
573
573
  }
@@ -1569,7 +1569,7 @@
1569
1569
  "members": [
1570
1570
  {
1571
1571
  "disabled": false,
1572
- "document": "任务的类型,可以取的值有:\n<li>Classification:智能分类</li>\n<li>Cover:智能封面</li>\n<li>Tag:智能标签</li>\n<li>FrameTag:智能按帧标签</li>\n<li>Highlight:智能精彩集锦</li>\n<li>DeLogo:智能去水印</li>\n<li>Description:大模型摘要</li>",
1572
+ "document": "任务的类型,可以取的值有:\n<li>Classification:智能分类</li>\n<li>Cover:智能封面</li>\n<li>Tag:智能标签</li>\n<li>FrameTag:智能按帧标签</li>\n<li>Highlight:智能精彩集锦</li>\n<li>DeLogo:智能擦除</li>\n<li>Description:大模型摘要</li>",
1573
1573
  "example": "Classification",
1574
1574
  "member": "string",
1575
1575
  "name": "Type",
@@ -1629,7 +1629,7 @@
1629
1629
  },
1630
1630
  {
1631
1631
  "disabled": false,
1632
- "document": "视频内容分析去水印任务的查询结果,当任务类型为 DeLogo 时有效。\n注意:此字段可能返回 null,表示取不到有效值。",
1632
+ "document": "视频内容分析智能擦除任务的查询结果,当任务类型为 DeLogo 时有效。\n注意:此字段可能返回 null,表示取不到有效值。",
1633
1633
  "example": "无",
1634
1634
  "member": "AiAnalysisTaskDelLogoResult",
1635
1635
  "name": "DeLogoTask",
@@ -1867,15 +1867,15 @@
1867
1867
  "usage": "out"
1868
1868
  },
1869
1869
  "AiAnalysisTaskDelLogoInput": {
1870
- "document": "智能去水印任务输入类型",
1870
+ "document": "智能擦除任务输入类型",
1871
1871
  "members": [
1872
1872
  {
1873
1873
  "disabled": false,
1874
- "document": "视频智能去水印模板 ID。",
1874
+ "document": "视频智能擦除模板 ID。",
1875
1875
  "example": "无",
1876
1876
  "member": "uint64",
1877
1877
  "name": "Definition",
1878
- "required": true,
1878
+ "output_required": true,
1879
1879
  "type": "int",
1880
1880
  "value_allowed_null": false
1881
1881
  }
@@ -1883,25 +1883,25 @@
1883
1883
  "usage": "out"
1884
1884
  },
1885
1885
  "AiAnalysisTaskDelLogoOutput": {
1886
- "document": "智能去水印结果信息",
1886
+ "document": "智能擦除结果信息",
1887
1887
  "members": [
1888
1888
  {
1889
1889
  "disabled": false,
1890
- "document": "去水印后文件的路径。",
1890
+ "document": "擦除后文件的路径。",
1891
1891
  "example": "无",
1892
1892
  "member": "string",
1893
1893
  "name": "Path",
1894
- "required": true,
1894
+ "output_required": true,
1895
1895
  "type": "string",
1896
1896
  "value_allowed_null": false
1897
1897
  },
1898
1898
  {
1899
1899
  "disabled": false,
1900
- "document": "去水印后文件的存储位置。",
1900
+ "document": "擦除后文件的存储位置。",
1901
1901
  "example": "无",
1902
1902
  "member": "TaskOutputStorage",
1903
1903
  "name": "OutputStorage",
1904
- "required": true,
1904
+ "output_required": true,
1905
1905
  "type": "object",
1906
1906
  "value_allowed_null": false
1907
1907
  }
@@ -1909,7 +1909,7 @@
1909
1909
  "usage": "out"
1910
1910
  },
1911
1911
  "AiAnalysisTaskDelLogoResult": {
1912
- "document": "智能去水印结果类型",
1912
+ "document": "智能擦除结果类型",
1913
1913
  "members": [
1914
1914
  {
1915
1915
  "disabled": false,
@@ -1943,7 +1943,7 @@
1943
1943
  },
1944
1944
  {
1945
1945
  "disabled": false,
1946
- "document": "智能去水印任务输入。",
1946
+ "document": "智能擦除任务输入。",
1947
1947
  "example": "无",
1948
1948
  "member": "AiAnalysisTaskDelLogoInput",
1949
1949
  "name": "Input",
@@ -1953,7 +1953,7 @@
1953
1953
  },
1954
1954
  {
1955
1955
  "disabled": false,
1956
- "document": "智能去水印任务输出。\n注意:此字段可能返回 null,表示取不到有效值。",
1956
+ "document": "智能擦除任务输出。\n注意:此字段可能返回 null,表示取不到有效值。",
1957
1957
  "example": "无",
1958
1958
  "member": "AiAnalysisTaskDelLogoOutput",
1959
1959
  "name": "Output",
@@ -25210,7 +25210,7 @@
25210
25210
  "example": "{ \"HeadSet\": [ { \"Type\": \"URL\", \"UrlInputInfo\"",
25211
25211
  "member": "HeadTailParameter",
25212
25212
  "name": "HeadTailParameter",
25213
- "output_required": true,
25213
+ "output_required": false,
25214
25214
  "required": false,
25215
25215
  "type": "object",
25216
25216
  "value_allowed_null": true
@@ -12902,6 +12902,26 @@
12902
12902
  "type": "string",
12903
12903
  "value_allowed_null": false
12904
12904
  },
12905
+ {
12906
+ "disabled": false,
12907
+ "document": "英文签发日期",
12908
+ "example": "29 Mar. 2021",
12909
+ "member": "string",
12910
+ "name": "EnIssueDate",
12911
+ "output_required": false,
12912
+ "type": "string",
12913
+ "value_allowed_null": false
12914
+ },
12915
+ {
12916
+ "disabled": false,
12917
+ "document": "英文到期日期",
12918
+ "example": "12 Mar. 2030",
12919
+ "member": "string",
12920
+ "name": "EnExpirationDate",
12921
+ "output_required": false,
12922
+ "type": "string",
12923
+ "value_allowed_null": false
12924
+ },
12905
12925
  {
12906
12926
  "disabled": false,
12907
12927
  "document": "泰文出生日期",
@@ -12912,6 +12932,36 @@
12912
12932
  "type": "string",
12913
12933
  "value_allowed_null": false
12914
12934
  },
12935
+ {
12936
+ "disabled": false,
12937
+ "document": "英文出生日期",
12938
+ "example": "13 Mar. 1986",
12939
+ "member": "string",
12940
+ "name": "EnBirthday",
12941
+ "output_required": false,
12942
+ "type": "string",
12943
+ "value_allowed_null": false
12944
+ },
12945
+ {
12946
+ "disabled": false,
12947
+ "document": "宗教信仰",
12948
+ "example": "พุทธ",
12949
+ "member": "string",
12950
+ "name": "Religion",
12951
+ "output_required": false,
12952
+ "type": "string",
12953
+ "value_allowed_null": false
12954
+ },
12955
+ {
12956
+ "disabled": false,
12957
+ "document": "序列号",
12958
+ "example": "1047-02-03291045",
12959
+ "member": "string",
12960
+ "name": "SerialNumber",
12961
+ "output_required": false,
12962
+ "type": "string",
12963
+ "value_allowed_null": false
12964
+ },
12915
12965
  {
12916
12966
  "disabled": false,
12917
12967
  "document": "地址",
@@ -273,8 +273,8 @@
273
273
  },
274
274
  {
275
275
  "disabled": false,
276
- "document": "短信类型,0表示普通短信, 1表示营销短信。",
277
- "example": "0",
276
+ "document": "短信类型,1表示营销短信,2表示通知短信,3表示验证码短信。\n注:原“普通短信”类型模板目前仍支持提交申请,但为进一步提升短信发送质量、提高短信模板审核通过率,建议按“通知短信”类型或“验证码短信”类型申请新增模板,可参考[关于腾讯云短信模板类型优化公告](https://cloud.tencent.com/document/product/382/106171)。",
277
+ "example": "3",
278
278
  "member": "uint64",
279
279
  "name": "SmsType",
280
280
  "required": true,
@@ -1082,8 +1082,8 @@
1082
1082
  },
1083
1083
  {
1084
1084
  "disabled": false,
1085
- "document": "短信类型,0表示普通短信, 1表示营销短信。",
1086
- "example": "0",
1085
+ "document": "短信类型,1表示营销短信,2表示通知短信,3表示验证码短信。\n注:原“普通短信”类型模板目前仍支持提交申请,为进一步提升短信发送质量、提高短信模板审核通过率,建议按“通知短信”类型或“验证码短信”类型申请新增模板,可参考[关于腾讯云短信模板类型优化公告](https://cloud.tencent.com/document/product/382/106171)。",
1086
+ "example": "3",
1087
1087
  "member": "uint64",
1088
1088
  "name": "SmsType",
1089
1089
  "required": true,
@@ -11,7 +11,7 @@
11
11
  "AddSmsTemplate": [
12
12
  {
13
13
  "document": "",
14
- "input": "POST / HTTP/1.1\nHost: sms.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: AddSmsTemplate\n<公共请求参数>\n\n{\n \"SmsType\": 0,\n \"International\": 0,\n \"Remark\": \"业务验证码\",\n \"TemplateContent\": \"您的验证码是{1}\",\n \"TemplateName\": \"验证码\"\n}",
14
+ "input": "POST / HTTP/1.1\nHost: sms.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: AddSmsTemplate\n<公共请求参数>\n\n{\n \"SmsType\": 3,\n \"International\": 0,\n \"Remark\": \"业务验证码\",\n \"TemplateContent\": \"您的验证码是{1}\",\n \"TemplateName\": \"验证码\"\n}",
15
15
  "output": "{\n \"Response\": {\n \"AddTemplateStatus\": {\n \"TemplateId\": \"1110\"\n },\n \"RequestId\": \"f36e4f00-605e-49b1-ad0d-bfaba81c7325\"\n }\n}",
16
16
  "title": "请求示例"
17
17
  }
@@ -75,7 +75,7 @@
75
75
  "ModifySmsTemplate": [
76
76
  {
77
77
  "document": "",
78
- "input": "POST / HTTP/1.1\nHost: sms.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ModifySmsTemplate\n<公共请求参数>\n\n{\n \"TemplateId\": 1110,\n \"SmsType\": 0,\n \"International\": 0,\n \"Remark\": \"业务验证码\",\n \"TemplateContent\": \"您的验证码是{1}\",\n \"TemplateName\": \"验证码\"\n}",
78
+ "input": "POST / HTTP/1.1\nHost: sms.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ModifySmsTemplate\n<公共请求参数>\n\n{\n \"TemplateId\": 1110,\n \"SmsType\": 3,\n \"International\": 0,\n \"Remark\": \"业务验证码\",\n \"TemplateContent\": \"您的验证码是{1}\",\n \"TemplateName\": \"验证码\"\n}",
79
79
  "output": "{\n \"Response\": {\n \"ModifyTemplateStatus\": {\n \"TemplateId\": 1110\n },\n \"RequestId\": \"f36e4f00-605e-49b1-ad0d-bfaba81c7325\"\n }\n}",
80
80
  "title": "请求示例"
81
81
  }