tccli 3.0.1080.1__py2.py3-none-any.whl → 3.0.1082.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 +1 -1
- tccli/examples/live/v20180801/DescribeBackupStreamList.md +2 -0
- tccli/examples/live/v20180801/DescribeLiveWatermarks.md +11 -9
- tccli/examples/tag/v20180813/AddProject.md +4 -4
- tccli/examples/tag/v20180813/UpdateProject.md +4 -4
- tccli/examples/trtc/v20190722/DescribeWebRecord.md +21 -0
- tccli/examples/trtc/v20190722/StartWebRecord.md +31 -0
- tccli/examples/trtc/v20190722/StopWebRecord.md +20 -0
- tccli/services/cbs/v20170312/api.json +10 -1
- tccli/services/cdn/v20180606/api.json +15 -6
- tccli/services/cwp/v20180228/api.json +41 -2
- tccli/services/dlc/v20210125/api.json +11 -0
- tccli/services/ess/v20201111/api.json +1 -1
- tccli/services/faceid/v20180301/api.json +2 -2
- tccli/services/hai/v20230812/api.json +10 -0
- tccli/services/lcic/v20220817/api.json +26 -26
- tccli/services/live/v20180801/api.json +34 -3
- tccli/services/live/v20180801/examples.json +2 -2
- tccli/services/tag/v20180813/api.json +14 -12
- tccli/services/tag/v20180813/examples.json +7 -7
- tccli/services/teo/v20220901/api.json +8 -8
- tccli/services/trtc/trtc_client.py +163 -4
- tccli/services/trtc/v20190722/api.json +201 -1
- tccli/services/trtc/v20190722/examples.json +24 -0
- tccli/services/tse/v20201207/api.json +2 -2
- {tccli-3.0.1080.1.dist-info → tccli-3.0.1082.1.dist-info}/METADATA +2 -2
- {tccli-3.0.1080.1.dist-info → tccli-3.0.1082.1.dist-info}/RECORD +30 -27
- {tccli-3.0.1080.1.dist-info → tccli-3.0.1082.1.dist-info}/WHEEL +0 -0
- {tccli-3.0.1080.1.dist-info → tccli-3.0.1082.1.dist-info}/entry_points.txt +0 -0
- {tccli-3.0.1080.1.dist-info → tccli-3.0.1082.1.dist-info}/license_files/LICENSE +0 -0
tccli/__init__.py
CHANGED
@@ -1 +1 @@
|
|
1
|
-
__version__ = '3.0.
|
1
|
+
__version__ = '3.0.1082.1'
|
@@ -11,21 +11,23 @@ Output:
|
|
11
11
|
```
|
12
12
|
{
|
13
13
|
"Response": {
|
14
|
-
"RequestId": "3c140219-cfe9-470e-b241-907877d6fb03",
|
15
14
|
"TotalNum": 1,
|
16
15
|
"WatermarkList": [
|
17
16
|
{
|
18
|
-
"WatermarkId":
|
19
|
-
"PictureUrl": "
|
20
|
-
"XPosition":
|
21
|
-
"YPosition":
|
17
|
+
"WatermarkId": 0,
|
18
|
+
"PictureUrl": "abc",
|
19
|
+
"XPosition": 0,
|
20
|
+
"YPosition": 0,
|
21
|
+
"WatermarkName": "abc",
|
22
|
+
"Status": 0,
|
23
|
+
"CreateTime": "abc",
|
22
24
|
"Width": 0,
|
23
25
|
"Height": 0,
|
24
|
-
"
|
25
|
-
"
|
26
|
-
"CreateTime": "2018-09-07T15:55:23Z"
|
26
|
+
"BackgroundWidth": 0,
|
27
|
+
"BackgroundHeight": 0
|
27
28
|
}
|
28
|
-
]
|
29
|
+
],
|
30
|
+
"RequestId": "abc"
|
29
31
|
}
|
30
32
|
}
|
31
33
|
```
|
@@ -1,12 +1,12 @@
|
|
1
1
|
**Example 1: 创建项目**
|
2
2
|
|
3
|
-
|
3
|
+
创建项目
|
4
4
|
|
5
5
|
Input:
|
6
6
|
|
7
7
|
```
|
8
8
|
tccli tag AddProject --cli-unfold-argument \
|
9
|
-
--ProjectName
|
9
|
+
--ProjectName 测试项目
|
10
10
|
```
|
11
11
|
|
12
12
|
Output:
|
@@ -14,8 +14,8 @@ Output:
|
|
14
14
|
{
|
15
15
|
"Response": {
|
16
16
|
"IsNew": 1,
|
17
|
-
"ProjectId":
|
18
|
-
"RequestId": "
|
17
|
+
"ProjectId": 1001,
|
18
|
+
"RequestId": "7f831036-30b5-4972-a729-e6851a15d345"
|
19
19
|
}
|
20
20
|
}
|
21
21
|
```
|
@@ -1,20 +1,20 @@
|
|
1
1
|
**Example 1: 修改项目名称**
|
2
2
|
|
3
|
-
|
3
|
+
修改项目名称
|
4
4
|
|
5
5
|
Input:
|
6
6
|
|
7
7
|
```
|
8
8
|
tccli tag UpdateProject --cli-unfold-argument \
|
9
|
-
--ProjectId
|
10
|
-
--ProjectName
|
9
|
+
--ProjectId 1001 \
|
10
|
+
--ProjectName 项目名称
|
11
11
|
```
|
12
12
|
|
13
13
|
Output:
|
14
14
|
```
|
15
15
|
{
|
16
16
|
"Response": {
|
17
|
-
"RequestId": "
|
17
|
+
"RequestId": "87ccfc15-4c5a-4f0a-b5f1-eae50aad9e9a"
|
18
18
|
}
|
19
19
|
}
|
20
20
|
```
|
@@ -0,0 +1,31 @@
|
|
1
|
+
**Example 1: 启动一个页面录制任务**
|
2
|
+
|
3
|
+
|
4
|
+
|
5
|
+
Input:
|
6
|
+
|
7
|
+
```
|
8
|
+
tccli trtc StartWebRecord --cli-unfold-argument \
|
9
|
+
--RecordUrl https://web-record-xxxxx.cos.ap-xxx.myqcloud.com/xxxx/xxx.mp4 \
|
10
|
+
--StorageParams.CloudStorage.Vendor 0 \
|
11
|
+
--StorageParams.CloudStorage.Bucket webrecord-1234589 \
|
12
|
+
--StorageParams.CloudStorage.Region ap-chengdu \
|
13
|
+
--StorageParams.CloudStorage.AccessKey AKxxxxxx \
|
14
|
+
--StorageParams.CloudStorage.SecretKey Idxxxxxx \
|
15
|
+
--StorageParams.CloudStorage.FileNamePrefix record video \
|
16
|
+
--MaxDurationLimit 3600 \
|
17
|
+
--WebRecordVideoParams.Width 1280 \
|
18
|
+
--WebRecordVideoParams.Height 720 \
|
19
|
+
--WebRecordVideoParams.Format mp4
|
20
|
+
```
|
21
|
+
|
22
|
+
Output:
|
23
|
+
```
|
24
|
+
{
|
25
|
+
"Response": {
|
26
|
+
"TaskId": "abc",
|
27
|
+
"RequestId": "abc"
|
28
|
+
}
|
29
|
+
}
|
30
|
+
```
|
31
|
+
|
@@ -3679,12 +3679,21 @@
|
|
3679
3679
|
},
|
3680
3680
|
{
|
3681
3681
|
"disabled": false,
|
3682
|
-
"document": "
|
3682
|
+
"document": "\t云硬盘的自动续费标识。取值范围:<ul><li>NOTIFY_AND_AUTO_RENEW:通知过期且自动续费</li><li>NOTIFY_AND_MANUAL_RENEW:通知过期不自动续费</li><li>DISABLE_NOTIFY_AND_MANUAL_RENEW:不通知过期不自动续费</li></ul>",
|
3683
3683
|
"example": "NOTIFY_AND_AUTO_RENEW",
|
3684
3684
|
"member": "string",
|
3685
3685
|
"name": "RenewFlag",
|
3686
3686
|
"required": true,
|
3687
3687
|
"type": "string"
|
3688
|
+
},
|
3689
|
+
{
|
3690
|
+
"disabled": false,
|
3691
|
+
"document": "该参数支持设置云硬盘的自动续费周期,单位为月。",
|
3692
|
+
"example": "12",
|
3693
|
+
"member": "uint64",
|
3694
|
+
"name": "AutoRenewPeriod",
|
3695
|
+
"required": false,
|
3696
|
+
"type": "int"
|
3688
3697
|
}
|
3689
3698
|
],
|
3690
3699
|
"type": "object"
|
@@ -10459,6 +10459,7 @@
|
|
10459
10459
|
"example": "on",
|
10460
10460
|
"member": "string",
|
10461
10461
|
"name": "Switch",
|
10462
|
+
"output_required": true,
|
10462
10463
|
"required": true,
|
10463
10464
|
"type": "string",
|
10464
10465
|
"value_allowed_null": false
|
@@ -10469,16 +10470,18 @@
|
|
10469
10470
|
"example": "blacklist",
|
10470
10471
|
"member": "string",
|
10471
10472
|
"name": "FilterType",
|
10473
|
+
"output_required": true,
|
10472
10474
|
"required": false,
|
10473
10475
|
"type": "string",
|
10474
10476
|
"value_allowed_null": true
|
10475
10477
|
},
|
10476
10478
|
{
|
10477
10479
|
"disabled": false,
|
10478
|
-
"document": "IP 黑白名单列表\n支持 X.X.X.X
|
10480
|
+
"document": "IP 黑白名单列表\n支持 X.X.X.X 格式IPV4地址 或X:X:X:X:X:X:X:X 格式IPV6地址, 或网段格式/X(IPV4:1≤X≤32;IPV6:1≤X≤128)\n最多可填充 200 个白名单或 200 个黑名单;\n注意:此字段可能返回 null,表示取不到有效值。",
|
10479
10481
|
"example": "[\"1.1.1.1\"]",
|
10480
10482
|
"member": "string",
|
10481
10483
|
"name": "Filters",
|
10484
|
+
"output_required": true,
|
10482
10485
|
"required": false,
|
10483
10486
|
"type": "list",
|
10484
10487
|
"value_allowed_null": true
|
@@ -10489,6 +10492,7 @@
|
|
10489
10492
|
"example": "null",
|
10490
10493
|
"member": "IpFilterPathRule",
|
10491
10494
|
"name": "FilterRules",
|
10495
|
+
"output_required": true,
|
10492
10496
|
"required": false,
|
10493
10497
|
"type": "list",
|
10494
10498
|
"value_allowed_null": true
|
@@ -10499,6 +10503,7 @@
|
|
10499
10503
|
"example": "514",
|
10500
10504
|
"member": "int64",
|
10501
10505
|
"name": "ReturnCode",
|
10506
|
+
"output_required": true,
|
10502
10507
|
"required": false,
|
10503
10508
|
"type": "int",
|
10504
10509
|
"value_allowed_null": true
|
@@ -10512,19 +10517,21 @@
|
|
10512
10517
|
{
|
10513
10518
|
"disabled": false,
|
10514
10519
|
"document": "IP 黑白名单类型\nwhitelist:白名单\nblacklist:黑名单\n注意:此字段可能返回 null,表示取不到有效值。",
|
10515
|
-
"example": "",
|
10520
|
+
"example": "无",
|
10516
10521
|
"member": "string",
|
10517
10522
|
"name": "FilterType",
|
10523
|
+
"output_required": true,
|
10518
10524
|
"required": true,
|
10519
10525
|
"type": "string",
|
10520
10526
|
"value_allowed_null": true
|
10521
10527
|
},
|
10522
10528
|
{
|
10523
10529
|
"disabled": false,
|
10524
|
-
"document": "IP 黑白名单列表\n支持 X.X.X.X
|
10525
|
-
"example": "",
|
10530
|
+
"document": "IP 黑白名单列表\n支持 X.X.X.X 格式IPV4地址 或X:X:X:X:X:X:X:X 格式IPV6地址, 或网段格式/X(IPV4:1≤X≤32;IPV6:1≤X≤128)\n最多可填充 200 个白名单或 500 个黑名单;\n注意:此字段可能返回 null,表示取不到有效值。",
|
10531
|
+
"example": "无",
|
10526
10532
|
"member": "string",
|
10527
10533
|
"name": "Filters",
|
10534
|
+
"output_required": true,
|
10528
10535
|
"required": true,
|
10529
10536
|
"type": "list",
|
10530
10537
|
"value_allowed_null": true
|
@@ -10532,9 +10539,10 @@
|
|
10532
10539
|
{
|
10533
10540
|
"disabled": false,
|
10534
10541
|
"document": "规则类型:\nall:所有文件生效\nfile:指定文件后缀生效\ndirectory:指定路径生效\npath:指定绝对路径生效\n注意:此字段可能返回 null,表示取不到有效值。",
|
10535
|
-
"example": "",
|
10542
|
+
"example": "无",
|
10536
10543
|
"member": "string",
|
10537
10544
|
"name": "RuleType",
|
10545
|
+
"output_required": true,
|
10538
10546
|
"required": true,
|
10539
10547
|
"type": "string",
|
10540
10548
|
"value_allowed_null": true
|
@@ -10542,9 +10550,10 @@
|
|
10542
10550
|
{
|
10543
10551
|
"disabled": false,
|
10544
10552
|
"document": "RuleType 对应类型下的匹配内容:\nall 时填充 *\nfile 时填充后缀名,如 jpg、txt\ndirectory 时填充路径,如 /xxx/test/\npath 时填充绝对路径,如 /xxx/test.html\n注意:此字段可能返回 null,表示取不到有效值。",
|
10545
|
-
"example": "",
|
10553
|
+
"example": "无",
|
10546
10554
|
"member": "string",
|
10547
10555
|
"name": "RulePaths",
|
10556
|
+
"output_required": true,
|
10548
10557
|
"required": true,
|
10549
10558
|
"type": "list",
|
10550
10559
|
"value_allowed_null": true
|
@@ -12774,7 +12774,7 @@
|
|
12774
12774
|
},
|
12775
12775
|
{
|
12776
12776
|
"disabled": false,
|
12777
|
-
"document": "
|
12777
|
+
"document": "0 -不阻断(客户端版本不支持)\n1 -已阻断\n2 -阻断失败(程序异常)\n3 -不阻断(内网不阻断)\n4 -可用区不支持阻断\n10-阻断中\n81-不阻断(未开启阻断)\n82-不阻断(非专业版)\n83-不阻断(已加白名单)\n86-不阻断(系统白名单)\n87-不阻断(客户端离线)\n注意:此字段可能返回 null,表示取不到有效值。",
|
12778
12778
|
"example": "0",
|
12779
12779
|
"member": "uint64",
|
12780
12780
|
"name": "BanStatus",
|
@@ -12911,6 +12911,26 @@
|
|
12911
12911
|
"output_required": false,
|
12912
12912
|
"type": "int",
|
12913
12913
|
"value_allowed_null": true
|
12914
|
+
},
|
12915
|
+
{
|
12916
|
+
"disabled": false,
|
12917
|
+
"document": "破解状态说明\n注意:此字段可能返回 null,表示取不到有效值。",
|
12918
|
+
"example": "无",
|
12919
|
+
"member": "string",
|
12920
|
+
"name": "AttackStatusDesc",
|
12921
|
+
"output_required": false,
|
12922
|
+
"type": "string",
|
12923
|
+
"value_allowed_null": true
|
12924
|
+
},
|
12925
|
+
{
|
12926
|
+
"disabled": false,
|
12927
|
+
"document": "阻断过期时间(仅阻断中事件有效)\n注意:此字段可能返回 null,表示取不到有效值。",
|
12928
|
+
"example": "无",
|
12929
|
+
"member": "string",
|
12930
|
+
"name": "BanExpiredTime",
|
12931
|
+
"output_required": false,
|
12932
|
+
"type": "string",
|
12933
|
+
"value_allowed_null": true
|
12914
12934
|
}
|
12915
12935
|
],
|
12916
12936
|
"usage": "out"
|
@@ -21105,6 +21125,16 @@
|
|
21105
21125
|
"type": "bool",
|
21106
21126
|
"value_allowed_null": false
|
21107
21127
|
},
|
21128
|
+
{
|
21129
|
+
"disabled": false,
|
21130
|
+
"document": "是否开启智能过白模式",
|
21131
|
+
"example": "无",
|
21132
|
+
"member": "bool",
|
21133
|
+
"name": "OpenSmartMode",
|
21134
|
+
"output_required": false,
|
21135
|
+
"type": "bool",
|
21136
|
+
"value_allowed_null": false
|
21137
|
+
},
|
21108
21138
|
{
|
21109
21139
|
"document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
|
21110
21140
|
"member": "string",
|
@@ -46403,12 +46433,21 @@
|
|
46403
46433
|
"members": [
|
46404
46434
|
{
|
46405
46435
|
"disabled": false,
|
46406
|
-
"document": "
|
46436
|
+
"document": "阻断开关状态: 0 -- 关闭 1 -- 高级阻断 2 -- 基础阻断(只阻断情报库黑ip)",
|
46407
46437
|
"example": "1",
|
46408
46438
|
"member": "uint64",
|
46409
46439
|
"name": "Status",
|
46410
46440
|
"required": true,
|
46411
46441
|
"type": "int"
|
46442
|
+
},
|
46443
|
+
{
|
46444
|
+
"disabled": false,
|
46445
|
+
"document": "是否开启智能过白模式",
|
46446
|
+
"example": "无",
|
46447
|
+
"member": "bool",
|
46448
|
+
"name": "OpenSmartMode",
|
46449
|
+
"required": false,
|
46450
|
+
"type": "bool"
|
46412
46451
|
}
|
46413
46452
|
],
|
46414
46453
|
"type": "object"
|
@@ -5789,6 +5789,17 @@
|
|
5789
5789
|
"required": false,
|
5790
5790
|
"type": "string",
|
5791
5791
|
"value_allowed_null": true
|
5792
|
+
},
|
5793
|
+
{
|
5794
|
+
"disabled": false,
|
5795
|
+
"document": "引擎网络ID\n注意:此字段可能返回 null,表示取不到有效值。",
|
5796
|
+
"example": "Engine-Network-xxx",
|
5797
|
+
"member": "string",
|
5798
|
+
"name": "EngineNetworkId",
|
5799
|
+
"output_required": false,
|
5800
|
+
"required": false,
|
5801
|
+
"type": "string",
|
5802
|
+
"value_allowed_null": true
|
5792
5803
|
}
|
5793
5804
|
],
|
5794
5805
|
"usage": "both"
|
@@ -693,7 +693,7 @@
|
|
693
693
|
},
|
694
694
|
{
|
695
695
|
"disabled": false,
|
696
|
-
"document": "通知签署方经办人的方式, 有以下途径:\n<ul><li> **sms** : (默认)短信</li>\n<li> **none** : 不通知</li></ul
|
696
|
+
"document": "通知签署方经办人的方式, 有以下途径:\n<ul><li> **sms** : (默认)短信</li>\n<li> **none** : 不通知</li></ul>\n```\n注意:\n如果使用的是通过文件发起合同(CreateFlowByFiles),NotifyType必须 是 sms 才会发送短信\n```",
|
697
697
|
"example": "sms",
|
698
698
|
"member": "string",
|
699
699
|
"name": "NotifyType",
|
@@ -1145,7 +1145,7 @@
|
|
1145
1145
|
},
|
1146
1146
|
{
|
1147
1147
|
"disabled": false,
|
1148
|
-
"document": "
|
1148
|
+
"document": "身份标识(是否必传基于[控制台](https://console.cloud.tencent.com/faceid/access)申请业务流程时配置的提示)。\n规则:a-z,A-Z,0-9组合。最长长度32位。",
|
1149
1149
|
"example": "无",
|
1150
1150
|
"member": "string",
|
1151
1151
|
"name": "IdCard",
|
@@ -1154,7 +1154,7 @@
|
|
1154
1154
|
},
|
1155
1155
|
{
|
1156
1156
|
"disabled": false,
|
1157
|
-
"document": "
|
1157
|
+
"document": "姓名。(是否必传基于[控制台](https://console.cloud.tencent.com/faceid/access)申请业务流程时配置的提示)。\n最长长度32位。中文请使用UTF-8编码。",
|
1158
1158
|
"example": "无",
|
1159
1159
|
"member": "string",
|
1160
1160
|
"name": "Name",
|
@@ -831,6 +831,16 @@
|
|
831
831
|
"output_required": true,
|
832
832
|
"type": "list",
|
833
833
|
"value_allowed_null": true
|
834
|
+
},
|
835
|
+
{
|
836
|
+
"disabled": false,
|
837
|
+
"document": "应用服务的操作系统类型\n注意:此字段可能返回 null,表示取不到有效值。",
|
838
|
+
"example": "linux or windows",
|
839
|
+
"member": "string",
|
840
|
+
"name": "OSType",
|
841
|
+
"output_required": true,
|
842
|
+
"type": "string",
|
843
|
+
"value_allowed_null": true
|
834
844
|
}
|
835
845
|
],
|
836
846
|
"usage": "out"
|
@@ -561,7 +561,7 @@
|
|
561
561
|
{
|
562
562
|
"disabled": false,
|
563
563
|
"document": "应用ID",
|
564
|
-
"example": "
|
564
|
+
"example": "3571863",
|
565
565
|
"member": "string",
|
566
566
|
"name": "ApplicationId",
|
567
567
|
"output_required": true,
|
@@ -571,7 +571,7 @@
|
|
571
571
|
{
|
572
572
|
"disabled": false,
|
573
573
|
"document": "应用名称\n注意:此字段可能返回 null,表示取不到有效值。",
|
574
|
-
"example": "
|
574
|
+
"example": "demo",
|
575
575
|
"member": "string",
|
576
576
|
"name": "AppName",
|
577
577
|
"output_required": true,
|
@@ -581,7 +581,7 @@
|
|
581
581
|
{
|
582
582
|
"disabled": false,
|
583
583
|
"document": "应用状态 1正常 2停用\n注意:此字段可能返回 null,表示取不到有效值。",
|
584
|
-
"example": "
|
584
|
+
"example": "1",
|
585
585
|
"member": "int64",
|
586
586
|
"name": "State",
|
587
587
|
"output_required": true,
|
@@ -591,7 +591,7 @@
|
|
591
591
|
{
|
592
592
|
"disabled": false,
|
593
593
|
"document": "1试用 2轻量版 3标准版 4旗舰版\n注意:此字段可能返回 null,表示取不到有效值。",
|
594
|
-
"example": "
|
594
|
+
"example": "2",
|
595
595
|
"member": "int64",
|
596
596
|
"name": "AppVersion",
|
597
597
|
"output_required": true,
|
@@ -601,7 +601,7 @@
|
|
601
601
|
{
|
602
602
|
"disabled": false,
|
603
603
|
"document": "创建时间\n注意:此字段可能返回 null,表示取不到有效值。",
|
604
|
-
"example": "
|
604
|
+
"example": "2024-01-19 15:58:21",
|
605
605
|
"member": "string",
|
606
606
|
"name": "CreatedAt",
|
607
607
|
"output_required": true,
|
@@ -611,7 +611,7 @@
|
|
611
611
|
{
|
612
612
|
"disabled": false,
|
613
613
|
"document": "回调\n注意:此字段可能返回 null,表示取不到有效值。",
|
614
|
-
"example": "
|
614
|
+
"example": "http://callback.qcloud.com",
|
615
615
|
"member": "string",
|
616
616
|
"name": "Callback",
|
617
617
|
"output_required": true,
|
@@ -621,7 +621,7 @@
|
|
621
621
|
{
|
622
622
|
"disabled": false,
|
623
623
|
"document": "回调Key\n注意:此字段可能返回 null,表示取不到有效值。",
|
624
|
-
"example": "
|
624
|
+
"example": "nflhhtF0",
|
625
625
|
"member": "string",
|
626
626
|
"name": "CallbackKey",
|
627
627
|
"output_required": true,
|
@@ -1742,15 +1742,15 @@
|
|
1742
1742
|
},
|
1743
1743
|
{
|
1744
1744
|
"disabled": false,
|
1745
|
-
"document": "录制自定义场景,仅recordlayout=9
|
1746
|
-
"example": "
|
1745
|
+
"document": "录制自定义场景,仅recordlayout=9的时候此参数有效,数据内容为用户自定义场景参数,数据格式为json键值对方式,其中键值对的value为string类型。",
|
1746
|
+
"example": "{\"scene\":\"test\",\"lng\":\"zh\",\"type\":\"h5\",\"subjectId\":\"57\",\"customToken\":\"sajdlfjasdglweqirouoiu\"}",
|
1747
1747
|
"member": "string",
|
1748
1748
|
"name": "RecordScene",
|
1749
1749
|
"required": false,
|
1750
1750
|
"type": "string"
|
1751
1751
|
},
|
1752
1752
|
{
|
1753
|
-
"disabled":
|
1753
|
+
"disabled": true,
|
1754
1754
|
"document": "录制自定义语言,仅recordlayout=9的时候此参数有效",
|
1755
1755
|
"example": "en",
|
1756
1756
|
"member": "string",
|
@@ -2182,7 +2182,7 @@
|
|
2182
2182
|
{
|
2183
2183
|
"disabled": false,
|
2184
2184
|
"document": "SDK 对应的AppId ",
|
2185
|
-
"example": "
|
2185
|
+
"example": "14567770",
|
2186
2186
|
"member": "string",
|
2187
2187
|
"name": "SdkAppId",
|
2188
2188
|
"output_required": true,
|
@@ -5481,15 +5481,15 @@
|
|
5481
5481
|
},
|
5482
5482
|
{
|
5483
5483
|
"disabled": false,
|
5484
|
-
"document": "录制自定义场景,仅recordlayout=9
|
5485
|
-
"example": "
|
5484
|
+
"document": "录制自定义场景,仅recordlayout=9的时候此参数有效,数据内容为用户自定义场景参数,数据格式为json键值对方式,其中键值对的value为string类型。",
|
5485
|
+
"example": "{\"scene\":\"test\",\"lng\":\"zh\",\"type\":\"h5\",\"subjectId\":\"57\",\"customToken\":\"sajdlfjasdglweqirouoiu\"}",
|
5486
5486
|
"member": "string",
|
5487
5487
|
"name": "RecordScene",
|
5488
5488
|
"required": false,
|
5489
5489
|
"type": "string"
|
5490
5490
|
},
|
5491
5491
|
{
|
5492
|
-
"disabled":
|
5492
|
+
"disabled": true,
|
5493
5493
|
"document": "录制自定义语言,仅recordlayout=9的时候此参数有效",
|
5494
5494
|
"example": "en",
|
5495
5495
|
"member": "string",
|
@@ -5994,15 +5994,15 @@
|
|
5994
5994
|
},
|
5995
5995
|
{
|
5996
5996
|
"disabled": false,
|
5997
|
-
"document": "录制自定义场景,仅recordlayout=9
|
5998
|
-
"example": "
|
5997
|
+
"document": "录制自定义场景,仅recordlayout=9的时候此参数有效,数据内容为用户自定义场景参数,数据格式为json键值对方式,其中键值对的value为string类型。",
|
5998
|
+
"example": "{\"scene\":\"test\",\"lng\":\"zh\",\"type\":\"h5\",\"subjectId\":\"57\",\"customToken\":\"sajdlfjasdglweqirouoiu\"}",
|
5999
5999
|
"member": "string",
|
6000
6000
|
"name": "RecordScene",
|
6001
6001
|
"required": false,
|
6002
6002
|
"type": "string"
|
6003
6003
|
},
|
6004
6004
|
{
|
6005
|
-
"disabled":
|
6005
|
+
"disabled": true,
|
6006
6006
|
"document": "录制自定义语言,仅recordlayout=9的时候此参数有效",
|
6007
6007
|
"example": "en",
|
6008
6008
|
"member": "string",
|
@@ -6238,8 +6238,8 @@
|
|
6238
6238
|
},
|
6239
6239
|
{
|
6240
6240
|
"disabled": false,
|
6241
|
-
"document": "录制自定义场景,仅recordlayout=9
|
6242
|
-
"example": "
|
6241
|
+
"document": "录制自定义场景,仅recordlayout=9的时候此参数有效,数据内容为用户自定义场景参数,数据格式为json键值对方式,其中键值对的value为string类型。\n注意:此字段可能返回 null,表示取不到有效值。",
|
6242
|
+
"example": "{\"scene\":\"test\",\"lng\":\"zh\",\"type\":\"h5\",\"subjectId\":\"57\",\"customToken\":\"sajdlfjasdglweqioiu\"}",
|
6243
6243
|
"member": "string",
|
6244
6244
|
"name": "RecordScene",
|
6245
6245
|
"output_required": false,
|
@@ -6248,13 +6248,13 @@
|
|
6248
6248
|
},
|
6249
6249
|
{
|
6250
6250
|
"disabled": false,
|
6251
|
-
"document": "录制自定义语言,仅recordlayout=9
|
6251
|
+
"document": "录制自定义语言,仅recordlayout=9的时候此参数有效",
|
6252
6252
|
"example": "en",
|
6253
6253
|
"member": "string",
|
6254
6254
|
"name": "RecordLang",
|
6255
6255
|
"output_required": false,
|
6256
6256
|
"type": "string",
|
6257
|
-
"value_allowed_null":
|
6257
|
+
"value_allowed_null": false
|
6258
6258
|
}
|
6259
6259
|
],
|
6260
6260
|
"usage": "out"
|
@@ -6265,7 +6265,7 @@
|
|
6265
6265
|
{
|
6266
6266
|
"disabled": false,
|
6267
6267
|
"document": "场景名称",
|
6268
|
-
"example": "
|
6268
|
+
"example": "default",
|
6269
6269
|
"member": "string",
|
6270
6270
|
"name": "Scene",
|
6271
6271
|
"output_required": true,
|
@@ -6275,7 +6275,7 @@
|
|
6275
6275
|
{
|
6276
6276
|
"disabled": false,
|
6277
6277
|
"document": "logo地址\n注意:此字段可能返回 null,表示取不到有效值。",
|
6278
|
-
"example": "
|
6278
|
+
"example": "https://tcic-test-1257307760.file.myqcloud.com/customcontent/3571863/default_1709023088_default_1705651176_default.png",
|
6279
6279
|
"member": "string",
|
6280
6280
|
"name": "LogoUrl",
|
6281
6281
|
"output_required": true,
|
@@ -6285,7 +6285,7 @@
|
|
6285
6285
|
{
|
6286
6286
|
"disabled": false,
|
6287
6287
|
"document": "主页地址\n注意:此字段可能返回 null,表示取不到有效值。",
|
6288
|
-
"example": "
|
6288
|
+
"example": "https://de-class.qcloudtiw.com/login.html",
|
6289
6289
|
"member": "string",
|
6290
6290
|
"name": "HomeUrl",
|
6291
6291
|
"output_required": true,
|
@@ -6295,7 +6295,7 @@
|
|
6295
6295
|
{
|
6296
6296
|
"disabled": false,
|
6297
6297
|
"document": "自定义的js\n注意:此字段可能返回 null,表示取不到有效值。",
|
6298
|
-
"example": "
|
6298
|
+
"example": "https://1257307760.file.myqcloud.com/customcontent/2540731/test_1617001147_custom_new.js",
|
6299
6299
|
"member": "string",
|
6300
6300
|
"name": "JSUrl",
|
6301
6301
|
"output_required": true,
|
@@ -6305,7 +6305,7 @@
|
|
6305
6305
|
{
|
6306
6306
|
"disabled": false,
|
6307
6307
|
"document": "自定义的css\n注意:此字段可能返回 null,表示取不到有效值。",
|
6308
|
-
"example": "
|
6308
|
+
"example": "https://1257307760.file.myqcloud.com/customcontent/2261473/test_1611219710_custom.css",
|
6309
6309
|
"member": "string",
|
6310
6310
|
"name": "CSSUrl",
|
6311
6311
|
"output_required": true,
|