tencentcloud-sdk-nodejs 4.0.513 → 4.0.514
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.
- package/CHANGELOG.md +218 -0
- package/SERVICE_CHANGELOG.md +320 -48
- package/package.json +1 -1
- package/products.md +9 -9
- package/src/common/sdk_version.ts +1 -1
- package/src/services/cls/v20201016/cls_client.ts +1 -1
- package/src/services/cls/v20201016/cls_models.ts +5 -4
- package/src/services/cwp/v20180228/cwp_models.ts +2 -2
- package/src/services/cynosdb/v20190107/cynosdb_client.ts +2 -1
- package/src/services/cynosdb/v20190107/cynosdb_models.ts +43 -2
- package/src/services/live/v20180801/live_models.ts +128 -110
- package/src/services/tcr/v20190924/tcr_client.ts +2 -14
- package/src/services/tcr/v20190924/tcr_models.ts +9 -44
- package/src/services/tdmq/v20200217/tdmq_models.ts +10 -0
- package/src/services/teo/v20220901/teo_client.ts +27 -0
- package/src/services/teo/v20220901/teo_models.ts +157 -0
- package/src/services/vod/v20180717/vod_client.ts +1 -0
- package/src/services/vod/v20180717/vod_models.ts +58 -22
- package/src/services/wedata/v20210820/wedata_client.ts +1 -0
- package/src/services/wedata/v20210820/wedata_models.ts +41 -1
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/cls/v20201016/cls_client.d.ts +1 -1
- package/tencentcloud/services/cls/v20201016/cls_client.js +1 -1
- package/tencentcloud/services/cls/v20201016/cls_models.d.ts +5 -4
- package/tencentcloud/services/cwp/v20180228/cwp_models.d.ts +2 -2
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.d.ts +1 -1
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_client.js +1 -1
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +36 -2
- package/tencentcloud/services/live/v20180801/live_models.d.ts +94 -76
- package/tencentcloud/services/tcr/v20190924/tcr_client.d.ts +1 -5
- package/tencentcloud/services/tcr/v20190924/tcr_client.js +0 -6
- package/tencentcloud/services/tcr/v20190924/tcr_models.d.ts +8 -38
- package/tencentcloud/services/tdmq/v20200217/tdmq_models.d.ts +8 -0
- package/tencentcloud/services/teo/v20220901/teo_client.d.ts +9 -1
- package/tencentcloud/services/teo/v20220901/teo_client.js +12 -0
- package/tencentcloud/services/teo/v20220901/teo_models.d.ts +135 -0
- package/tencentcloud/services/vod/v20180717/vod_models.d.ts +50 -19
- package/tencentcloud/services/wedata/v20210820/wedata_models.d.ts +35 -1
- package/test/tcr.v20190924.test.js +0 -10
- package/test/teo.v20220901.test.js +20 -0
|
@@ -74,7 +74,6 @@ import {
|
|
|
74
74
|
DescribeWebhookTriggerLogResponse,
|
|
75
75
|
DownloadHelmChartResponse,
|
|
76
76
|
ManageReplicationRequest,
|
|
77
|
-
CreateSecurityPoliciesRequest,
|
|
78
77
|
DeleteWebhookTriggerResponse,
|
|
79
78
|
DeleteImageLifecycleGlobalPersonalResponse,
|
|
80
79
|
ModifySecurityPolicyRequest,
|
|
@@ -151,7 +150,7 @@ import {
|
|
|
151
150
|
RegistryStatus,
|
|
152
151
|
SecurityPolicy,
|
|
153
152
|
DescribeNamespacePersonalRequest,
|
|
154
|
-
|
|
153
|
+
CreateWebhookTriggerResponse,
|
|
155
154
|
CreateInstanceTokenResponse,
|
|
156
155
|
DescribeApplicationTriggerLogPersonalResp,
|
|
157
156
|
DeleteImagePersonalRequest,
|
|
@@ -186,7 +185,6 @@ import {
|
|
|
186
185
|
DescribeInstanceTokenRequest,
|
|
187
186
|
BatchDeleteRepositoryPersonalResponse,
|
|
188
187
|
CreateNamespaceRequest,
|
|
189
|
-
CreateSecurityPoliciesResponse,
|
|
190
188
|
BatchDeleteRepositoryPersonalRequest,
|
|
191
189
|
GCJobInfo,
|
|
192
190
|
Registry,
|
|
@@ -278,7 +276,7 @@ import {
|
|
|
278
276
|
DescribeTagRetentionExecutionResponse,
|
|
279
277
|
CreateNamespacePersonalRequest,
|
|
280
278
|
DeleteImmutableTagRulesRequest,
|
|
281
|
-
|
|
279
|
+
DeleteRepositoryPersonalResponse,
|
|
282
280
|
CreateSignaturePolicyRequest,
|
|
283
281
|
DeleteTagRetentionRuleRequest,
|
|
284
282
|
ReplicationFilter,
|
|
@@ -1115,16 +1113,6 @@ export class Client extends AbstractClient {
|
|
|
1115
1113
|
return this.request("DescribeNamespaces", req, cb)
|
|
1116
1114
|
}
|
|
1117
1115
|
|
|
1118
|
-
/**
|
|
1119
|
-
* 创建实例公网访问白名单策略
|
|
1120
|
-
*/
|
|
1121
|
-
async CreateSecurityPolicies(
|
|
1122
|
-
req: CreateSecurityPoliciesRequest,
|
|
1123
|
-
cb?: (error: string, rep: CreateSecurityPoliciesResponse) => void
|
|
1124
|
-
): Promise<CreateSecurityPoliciesResponse> {
|
|
1125
|
-
return this.request("CreateSecurityPolicies", req, cb)
|
|
1126
|
-
}
|
|
1127
|
-
|
|
1128
1116
|
/**
|
|
1129
1117
|
* 为一个镜像版本创建签名
|
|
1130
1118
|
*/
|
|
@@ -1227,26 +1227,6 @@ export interface ManageReplicationRequest {
|
|
|
1227
1227
|
PeerReplicationOption?: PeerReplicationOption
|
|
1228
1228
|
}
|
|
1229
1229
|
|
|
1230
|
-
/**
|
|
1231
|
-
* CreateSecurityPolicies请求参数结构体
|
|
1232
|
-
*/
|
|
1233
|
-
export interface CreateSecurityPoliciesRequest {
|
|
1234
|
-
/**
|
|
1235
|
-
* 实例Id
|
|
1236
|
-
*/
|
|
1237
|
-
RegistryId: string
|
|
1238
|
-
|
|
1239
|
-
/**
|
|
1240
|
-
* 192.168.0.0/24
|
|
1241
|
-
*/
|
|
1242
|
-
CidrBlock: string
|
|
1243
|
-
|
|
1244
|
-
/**
|
|
1245
|
-
* 描述
|
|
1246
|
-
*/
|
|
1247
|
-
Description?: string
|
|
1248
|
-
}
|
|
1249
|
-
|
|
1250
1230
|
/**
|
|
1251
1231
|
* DeleteWebhookTrigger返回参数结构体
|
|
1252
1232
|
*/
|
|
@@ -2699,9 +2679,14 @@ export interface DescribeNamespacePersonalRequest {
|
|
|
2699
2679
|
}
|
|
2700
2680
|
|
|
2701
2681
|
/**
|
|
2702
|
-
*
|
|
2682
|
+
* CreateWebhookTrigger返回参数结构体
|
|
2703
2683
|
*/
|
|
2704
|
-
export interface
|
|
2684
|
+
export interface CreateWebhookTriggerResponse {
|
|
2685
|
+
/**
|
|
2686
|
+
* 新建的触发器
|
|
2687
|
+
*/
|
|
2688
|
+
Trigger?: WebhookTrigger
|
|
2689
|
+
|
|
2705
2690
|
/**
|
|
2706
2691
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2707
2692
|
*/
|
|
@@ -3402,21 +3387,6 @@ export interface CreateNamespaceRequest {
|
|
|
3402
3387
|
TagSpecification?: TagSpecification
|
|
3403
3388
|
}
|
|
3404
3389
|
|
|
3405
|
-
/**
|
|
3406
|
-
* CreateSecurityPolicies返回参数结构体
|
|
3407
|
-
*/
|
|
3408
|
-
export interface CreateSecurityPoliciesResponse {
|
|
3409
|
-
/**
|
|
3410
|
-
* 实例Id
|
|
3411
|
-
*/
|
|
3412
|
-
RegistryId?: string
|
|
3413
|
-
|
|
3414
|
-
/**
|
|
3415
|
-
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3416
|
-
*/
|
|
3417
|
-
RequestId?: string
|
|
3418
|
-
}
|
|
3419
|
-
|
|
3420
3390
|
/**
|
|
3421
3391
|
* BatchDeleteRepositoryPersonal请求参数结构体
|
|
3422
3392
|
*/
|
|
@@ -5230,14 +5200,9 @@ export interface DeleteImmutableTagRulesRequest {
|
|
|
5230
5200
|
}
|
|
5231
5201
|
|
|
5232
5202
|
/**
|
|
5233
|
-
*
|
|
5203
|
+
* DeleteRepositoryPersonal返回参数结构体
|
|
5234
5204
|
*/
|
|
5235
|
-
export interface
|
|
5236
|
-
/**
|
|
5237
|
-
* 新建的触发器
|
|
5238
|
-
*/
|
|
5239
|
-
Trigger?: WebhookTrigger
|
|
5240
|
-
|
|
5205
|
+
export interface DeleteRepositoryPersonalResponse {
|
|
5241
5206
|
/**
|
|
5242
5207
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5243
5208
|
*/
|
|
@@ -2161,6 +2161,16 @@ export interface RocketMQTopic {
|
|
|
2161
2161
|
*/
|
|
2162
2162
|
Name: string
|
|
2163
2163
|
|
|
2164
|
+
/**
|
|
2165
|
+
* 主题的类别,为枚举类型,Normal,GlobalOrder,PartitionedOrder,Transaction,Retry及DeadLetter
|
|
2166
|
+
*/
|
|
2167
|
+
Type: string
|
|
2168
|
+
|
|
2169
|
+
/**
|
|
2170
|
+
* 订阅组数量
|
|
2171
|
+
*/
|
|
2172
|
+
GroupNum: number
|
|
2173
|
+
|
|
2164
2174
|
/**
|
|
2165
2175
|
* 说明
|
|
2166
2176
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
@@ -30,6 +30,7 @@ import {
|
|
|
30
30
|
DescribeRulesResponse,
|
|
31
31
|
TimingDataRecord,
|
|
32
32
|
DDoSAttackEventDetailData,
|
|
33
|
+
DescribeOriginProtectionResponse,
|
|
33
34
|
DescribeBotDataResponse,
|
|
34
35
|
Tag,
|
|
35
36
|
RateLimitConfig,
|
|
@@ -123,6 +124,7 @@ import {
|
|
|
123
124
|
MaxAge,
|
|
124
125
|
DeleteApplicationProxyResponse,
|
|
125
126
|
SecEntryValue,
|
|
127
|
+
DiffIPWhitelist,
|
|
126
128
|
ModifyAlarmDefaultThresholdResponse,
|
|
127
129
|
CreateCredentialRequest,
|
|
128
130
|
ModifyRuleRequest,
|
|
@@ -192,6 +194,7 @@ import {
|
|
|
192
194
|
DeleteOriginGroupResponse,
|
|
193
195
|
CreateSecurityDropPageResponse,
|
|
194
196
|
SpeedTestingMetricData,
|
|
197
|
+
UpdateOriginProtectionIPWhitelistResponse,
|
|
195
198
|
DescribeIdentificationsRequest,
|
|
196
199
|
ModifyHostsCertificateResponse,
|
|
197
200
|
CreateLogSetRequest,
|
|
@@ -313,6 +316,7 @@ import {
|
|
|
313
316
|
DescribeTopL7AnalysisDataResponse,
|
|
314
317
|
ClientIpHeader,
|
|
315
318
|
Resource,
|
|
319
|
+
DescribeOriginProtectionRequest,
|
|
316
320
|
DescribeHostsSettingRequest,
|
|
317
321
|
DescribeBotHitRuleDetailResponse,
|
|
318
322
|
DescribeDDoSAttackEventDetailRequest,
|
|
@@ -346,6 +350,7 @@ import {
|
|
|
346
350
|
ModifyZoneResponse,
|
|
347
351
|
WafGroupRule,
|
|
348
352
|
DDoSAclRule,
|
|
353
|
+
OriginProtectionInfo,
|
|
349
354
|
DescribeBotTopDataResponse,
|
|
350
355
|
DescribeBotClientIpListRequest,
|
|
351
356
|
AliasDomain,
|
|
@@ -374,6 +379,7 @@ import {
|
|
|
374
379
|
SpeedTestingStatistics,
|
|
375
380
|
BindZoneToPlanRequest,
|
|
376
381
|
SecurityType,
|
|
382
|
+
IPWhitelist,
|
|
377
383
|
ModifyRuleResponse,
|
|
378
384
|
CheckCertificateResponse,
|
|
379
385
|
DescribeWebProtectionDataRequest,
|
|
@@ -382,6 +388,7 @@ import {
|
|
|
382
388
|
ModifyApplicationProxyStatusResponse,
|
|
383
389
|
Identification,
|
|
384
390
|
ModifyAlarmConfigRequest,
|
|
391
|
+
UpdateOriginProtectionIPWhitelistRequest,
|
|
385
392
|
DeleteLogTopicTaskResponse,
|
|
386
393
|
TopEntry,
|
|
387
394
|
DescribeRulesSettingResponse,
|
|
@@ -868,6 +875,16 @@ export class Client extends AbstractClient {
|
|
|
868
875
|
return this.request("DeleteOriginGroup", req, cb)
|
|
869
876
|
}
|
|
870
877
|
|
|
878
|
+
/**
|
|
879
|
+
* 更新源站防护IP白名单
|
|
880
|
+
*/
|
|
881
|
+
async UpdateOriginProtectionIPWhitelist(
|
|
882
|
+
req: UpdateOriginProtectionIPWhitelistRequest,
|
|
883
|
+
cb?: (error: string, rep: UpdateOriginProtectionIPWhitelistResponse) => void
|
|
884
|
+
): Promise<UpdateOriginProtectionIPWhitelistResponse> {
|
|
885
|
+
return this.request("UpdateOriginProtectionIPWhitelist", req, cb)
|
|
886
|
+
}
|
|
887
|
+
|
|
871
888
|
/**
|
|
872
889
|
* 本接口(DownloadL4Logs)用于下载四层离线日志。
|
|
873
890
|
*/
|
|
@@ -1458,6 +1475,16 @@ export class Client extends AbstractClient {
|
|
|
1458
1475
|
return this.request("DescribeHostsSetting", req, cb)
|
|
1459
1476
|
}
|
|
1460
1477
|
|
|
1478
|
+
/**
|
|
1479
|
+
* 查询源站防护信息
|
|
1480
|
+
*/
|
|
1481
|
+
async DescribeOriginProtection(
|
|
1482
|
+
req: DescribeOriginProtectionRequest,
|
|
1483
|
+
cb?: (error: string, rep: DescribeOriginProtectionResponse) => void
|
|
1484
|
+
): Promise<DescribeOriginProtectionResponse> {
|
|
1485
|
+
return this.request("DescribeOriginProtection", req, cb)
|
|
1486
|
+
}
|
|
1487
|
+
|
|
1461
1488
|
/**
|
|
1462
1489
|
* 本接口(DescribeLogSets)用于获取日志集列表。
|
|
1463
1490
|
*/
|
|
@@ -395,6 +395,22 @@ export interface DDoSAttackEventDetailData {
|
|
|
395
395
|
PolicyId: number
|
|
396
396
|
}
|
|
397
397
|
|
|
398
|
+
/**
|
|
399
|
+
* DescribeOriginProtection返回参数结构体
|
|
400
|
+
*/
|
|
401
|
+
export interface DescribeOriginProtectionResponse {
|
|
402
|
+
/**
|
|
403
|
+
* 源站防护信息。
|
|
404
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
405
|
+
*/
|
|
406
|
+
OriginProtectionInfo: Array<OriginProtectionInfo>
|
|
407
|
+
|
|
408
|
+
/**
|
|
409
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
410
|
+
*/
|
|
411
|
+
RequestId?: string
|
|
412
|
+
}
|
|
413
|
+
|
|
398
414
|
/**
|
|
399
415
|
* DescribeBotData返回参数结构体
|
|
400
416
|
*/
|
|
@@ -3154,6 +3170,31 @@ export interface SecEntryValue {
|
|
|
3154
3170
|
Sum: number
|
|
3155
3171
|
}
|
|
3156
3172
|
|
|
3173
|
+
/**
|
|
3174
|
+
* 最新IP白名单列表相比于当前IP白名单列表的区别
|
|
3175
|
+
*/
|
|
3176
|
+
export interface DiffIPWhitelist {
|
|
3177
|
+
/**
|
|
3178
|
+
* 最新IP白名单列表。
|
|
3179
|
+
*/
|
|
3180
|
+
LatestIPWhitelist: IPWhitelist
|
|
3181
|
+
|
|
3182
|
+
/**
|
|
3183
|
+
* 最新IP白名单列表相比于当前IP白名单列表,新增部分。
|
|
3184
|
+
*/
|
|
3185
|
+
AddedIPWhitelist: IPWhitelist
|
|
3186
|
+
|
|
3187
|
+
/**
|
|
3188
|
+
* 最新IP白名单列表相比于当前IP白名单列表,删减部分。
|
|
3189
|
+
*/
|
|
3190
|
+
RemovedIPWhitelist: IPWhitelist
|
|
3191
|
+
|
|
3192
|
+
/**
|
|
3193
|
+
* 最新IP白名单列表相比于当前IP白名单列表,不变部分。
|
|
3194
|
+
*/
|
|
3195
|
+
NoChangeIPWhitelist: IPWhitelist
|
|
3196
|
+
}
|
|
3197
|
+
|
|
3157
3198
|
/**
|
|
3158
3199
|
* ModifyAlarmDefaultThreshold返回参数结构体
|
|
3159
3200
|
*/
|
|
@@ -5394,6 +5435,16 @@ export interface SpeedTestingMetricData {
|
|
|
5394
5435
|
OriginLoadTime: number
|
|
5395
5436
|
}
|
|
5396
5437
|
|
|
5438
|
+
/**
|
|
5439
|
+
* UpdateOriginProtectionIPWhitelist返回参数结构体
|
|
5440
|
+
*/
|
|
5441
|
+
export interface UpdateOriginProtectionIPWhitelistResponse {
|
|
5442
|
+
/**
|
|
5443
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5444
|
+
*/
|
|
5445
|
+
RequestId?: string
|
|
5446
|
+
}
|
|
5447
|
+
|
|
5397
5448
|
/**
|
|
5398
5449
|
* DescribeIdentifications请求参数结构体
|
|
5399
5450
|
*/
|
|
@@ -8817,6 +8868,33 @@ export interface Resource {
|
|
|
8817
8868
|
Area: string
|
|
8818
8869
|
}
|
|
8819
8870
|
|
|
8871
|
+
/**
|
|
8872
|
+
* DescribeOriginProtection请求参数结构体
|
|
8873
|
+
*/
|
|
8874
|
+
export interface DescribeOriginProtectionRequest {
|
|
8875
|
+
/**
|
|
8876
|
+
* 查询的站点集合,不填默认查询所有站点。
|
|
8877
|
+
*/
|
|
8878
|
+
ZoneIds?: Array<string>
|
|
8879
|
+
|
|
8880
|
+
/**
|
|
8881
|
+
* 过滤条件,Filters.Values的上限为20。详细的过滤条件如下:
|
|
8882
|
+
<li>need-update<br> 按照【<strong>站点是否需要更新源站防护IP白名单</strong>】进行过滤。<br> 类型:String<br> 必选:否<br> 可选项:<br> true:需要更新<br> false:无需更新<br></li>
|
|
8883
|
+
<li>plan-support<br> 按照【<strong>站点套餐是否支持源站防护</strong>】进行过滤。<br> 类型:String<br> 必选:否<br> 可选项:<br> true:支持<br> false:不支持<br></li>
|
|
8884
|
+
*/
|
|
8885
|
+
Filters?: Filter
|
|
8886
|
+
|
|
8887
|
+
/**
|
|
8888
|
+
* 分页查询偏移量,默认为0。
|
|
8889
|
+
*/
|
|
8890
|
+
Offset?: number
|
|
8891
|
+
|
|
8892
|
+
/**
|
|
8893
|
+
* 分页查询限制数目。默认值:20,最大值:1000。
|
|
8894
|
+
*/
|
|
8895
|
+
Limit?: number
|
|
8896
|
+
}
|
|
8897
|
+
|
|
8820
8898
|
/**
|
|
8821
8899
|
* DescribeHostsSetting请求参数结构体
|
|
8822
8900
|
*/
|
|
@@ -9713,6 +9791,60 @@ export interface DDoSAclRule {
|
|
|
9713
9791
|
Action: string
|
|
9714
9792
|
}
|
|
9715
9793
|
|
|
9794
|
+
/**
|
|
9795
|
+
* 源站防护信息
|
|
9796
|
+
*/
|
|
9797
|
+
export interface OriginProtectionInfo {
|
|
9798
|
+
/**
|
|
9799
|
+
* 站点ID。
|
|
9800
|
+
*/
|
|
9801
|
+
ZoneId: string
|
|
9802
|
+
|
|
9803
|
+
/**
|
|
9804
|
+
* 域名列表。
|
|
9805
|
+
*/
|
|
9806
|
+
Hosts: Array<string>
|
|
9807
|
+
|
|
9808
|
+
/**
|
|
9809
|
+
* 代理ID列表。
|
|
9810
|
+
*/
|
|
9811
|
+
ProxyIds: Array<string>
|
|
9812
|
+
|
|
9813
|
+
/**
|
|
9814
|
+
* 当前版本的IP白名单。
|
|
9815
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
9816
|
+
*/
|
|
9817
|
+
CurrentIPWhitelist: IPWhitelist
|
|
9818
|
+
|
|
9819
|
+
/**
|
|
9820
|
+
* 该站点是否需要更新源站白名单,取值有:
|
|
9821
|
+
<li>true :需要更新IP白名单 ;</li>
|
|
9822
|
+
<li>false :无需更新IP白名单。</li>
|
|
9823
|
+
*/
|
|
9824
|
+
NeedUpdate: boolean
|
|
9825
|
+
|
|
9826
|
+
/**
|
|
9827
|
+
* 源站防护状态,取值有:
|
|
9828
|
+
<li>online :源站防护启用中 ;</li>
|
|
9829
|
+
<li>offline :源站防护已停用 ;</li>
|
|
9830
|
+
<li>nonactivate :源站防护未激活,仅在从未使用过源站防护功能的站点调用中返回。</li>
|
|
9831
|
+
*/
|
|
9832
|
+
Status: string
|
|
9833
|
+
|
|
9834
|
+
/**
|
|
9835
|
+
* 站点套餐是否支持源站防护,取值有:
|
|
9836
|
+
<li>true :支持 ;</li>
|
|
9837
|
+
<li>false :不支持。</li>
|
|
9838
|
+
*/
|
|
9839
|
+
PlanSupport: boolean
|
|
9840
|
+
|
|
9841
|
+
/**
|
|
9842
|
+
* 最新IP白名单与当前IP白名单的对比。
|
|
9843
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
9844
|
+
*/
|
|
9845
|
+
DiffIPWhitelist: DiffIPWhitelist
|
|
9846
|
+
}
|
|
9847
|
+
|
|
9716
9848
|
/**
|
|
9717
9849
|
* DescribeBotTopData返回参数结构体
|
|
9718
9850
|
*/
|
|
@@ -10603,6 +10735,21 @@ export interface SecurityType {
|
|
|
10603
10735
|
Switch: string
|
|
10604
10736
|
}
|
|
10605
10737
|
|
|
10738
|
+
/**
|
|
10739
|
+
* 源站防护IP白名单
|
|
10740
|
+
*/
|
|
10741
|
+
export interface IPWhitelist {
|
|
10742
|
+
/**
|
|
10743
|
+
* IPv4列表。
|
|
10744
|
+
*/
|
|
10745
|
+
IPv4: Array<string>
|
|
10746
|
+
|
|
10747
|
+
/**
|
|
10748
|
+
* IPv6列表。
|
|
10749
|
+
*/
|
|
10750
|
+
IPv6: Array<string>
|
|
10751
|
+
}
|
|
10752
|
+
|
|
10606
10753
|
/**
|
|
10607
10754
|
* ModifyRule返回参数结构体
|
|
10608
10755
|
*/
|
|
@@ -10801,6 +10948,16 @@ export interface ModifyAlarmConfigRequest {
|
|
|
10801
10948
|
IsDefault?: boolean
|
|
10802
10949
|
}
|
|
10803
10950
|
|
|
10951
|
+
/**
|
|
10952
|
+
* UpdateOriginProtectionIPWhitelist请求参数结构体
|
|
10953
|
+
*/
|
|
10954
|
+
export interface UpdateOriginProtectionIPWhitelistRequest {
|
|
10955
|
+
/**
|
|
10956
|
+
* 站点ID。
|
|
10957
|
+
*/
|
|
10958
|
+
ZoneId: string
|
|
10959
|
+
}
|
|
10960
|
+
|
|
10804
10961
|
/**
|
|
10805
10962
|
* DeleteLogTopicTask返回参数结构体
|
|
10806
10963
|
*/
|
|
@@ -1621,6 +1621,11 @@ export interface ResetProcedureTemplateRequest {
|
|
|
1621
1621
|
*/
|
|
1622
1622
|
Name: string
|
|
1623
1623
|
|
|
1624
|
+
/**
|
|
1625
|
+
* <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
|
1626
|
+
*/
|
|
1627
|
+
SubAppId?: number
|
|
1628
|
+
|
|
1624
1629
|
/**
|
|
1625
1630
|
* 模板描述信息,长度限制:256 个字符。
|
|
1626
1631
|
*/
|
|
@@ -1632,8 +1637,9 @@ export interface ResetProcedureTemplateRequest {
|
|
|
1632
1637
|
MediaProcessTask?: MediaProcessTaskInput
|
|
1633
1638
|
|
|
1634
1639
|
/**
|
|
1635
|
-
|
|
1636
|
-
|
|
1640
|
+
* AI 智能内容审核类型任务参数 \*。
|
|
1641
|
+
<font color=red>\*:该参数用于发起旧版审核,不建议使用。推荐使用 ReviewAudioVideoTask 参数发起审核。</font>
|
|
1642
|
+
*/
|
|
1637
1643
|
AiContentReviewTask?: AiContentReviewTaskInput
|
|
1638
1644
|
|
|
1639
1645
|
/**
|
|
@@ -1647,9 +1653,9 @@ export interface ResetProcedureTemplateRequest {
|
|
|
1647
1653
|
AiRecognitionTask?: AiRecognitionTaskInput
|
|
1648
1654
|
|
|
1649
1655
|
/**
|
|
1650
|
-
*
|
|
1656
|
+
* 音视频审核类型任务参数。
|
|
1651
1657
|
*/
|
|
1652
|
-
|
|
1658
|
+
ReviewAudioVideoTask?: ProcedureReviewAudioVideoTaskInput
|
|
1653
1659
|
}
|
|
1654
1660
|
|
|
1655
1661
|
/**
|
|
@@ -1887,6 +1893,23 @@ export interface DeletePersonSampleRequest {
|
|
|
1887
1893
|
SubAppId?: number
|
|
1888
1894
|
}
|
|
1889
1895
|
|
|
1896
|
+
/**
|
|
1897
|
+
* 任务流模板音视频审核输入参数类型。
|
|
1898
|
+
*/
|
|
1899
|
+
export interface ProcedureReviewAudioVideoTaskInput {
|
|
1900
|
+
/**
|
|
1901
|
+
* 审核模板。
|
|
1902
|
+
*/
|
|
1903
|
+
Definition: number
|
|
1904
|
+
|
|
1905
|
+
/**
|
|
1906
|
+
* 审核的内容,可选值:
|
|
1907
|
+
<li>Media:原始音视频。</li>
|
|
1908
|
+
不填或填空数组时,默认为审核 Media。
|
|
1909
|
+
*/
|
|
1910
|
+
ReviewContents?: Array<string>
|
|
1911
|
+
}
|
|
1912
|
+
|
|
1890
1913
|
/**
|
|
1891
1914
|
* 语音识别片段。
|
|
1892
1915
|
*/
|
|
@@ -2671,8 +2694,9 @@ export interface CreateProcedureTemplateRequest {
|
|
|
2671
2694
|
MediaProcessTask?: MediaProcessTaskInput
|
|
2672
2695
|
|
|
2673
2696
|
/**
|
|
2674
|
-
|
|
2675
|
-
|
|
2697
|
+
* AI 内容审核类型任务参数 \*。
|
|
2698
|
+
<font color=red>\*:该参数用于发起旧版审核,不建议使用。推荐使用 ReviewAudioVideoTask 参数发起审核。</font>
|
|
2699
|
+
*/
|
|
2676
2700
|
AiContentReviewTask?: AiContentReviewTaskInput
|
|
2677
2701
|
|
|
2678
2702
|
/**
|
|
@@ -2684,6 +2708,11 @@ export interface CreateProcedureTemplateRequest {
|
|
|
2684
2708
|
* AI 内容识别类型任务参数。
|
|
2685
2709
|
*/
|
|
2686
2710
|
AiRecognitionTask?: AiRecognitionTaskInput
|
|
2711
|
+
|
|
2712
|
+
/**
|
|
2713
|
+
* 音视频审核类型任务参数。
|
|
2714
|
+
*/
|
|
2715
|
+
ReviewAudioVideoTask?: ProcedureReviewAudioVideoTaskInput
|
|
2687
2716
|
}
|
|
2688
2717
|
|
|
2689
2718
|
/**
|
|
@@ -5935,6 +5964,11 @@ export interface ModifyAnimatedGraphicsTemplateRequest {
|
|
|
5935
5964
|
* DescribeProcedureTemplates请求参数结构体
|
|
5936
5965
|
*/
|
|
5937
5966
|
export interface DescribeProcedureTemplatesRequest {
|
|
5967
|
+
/**
|
|
5968
|
+
* <b>点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。</b>
|
|
5969
|
+
*/
|
|
5970
|
+
SubAppId?: number
|
|
5971
|
+
|
|
5938
5972
|
/**
|
|
5939
5973
|
* 任务流模板名字过滤条件,数组长度限制:100。
|
|
5940
5974
|
*/
|
|
@@ -5956,11 +5990,6 @@ export interface DescribeProcedureTemplatesRequest {
|
|
|
5956
5990
|
* 返回记录条数,默认值:10,最大值:100。
|
|
5957
5991
|
*/
|
|
5958
5992
|
Limit?: number
|
|
5959
|
-
|
|
5960
|
-
/**
|
|
5961
|
-
* 点播[子应用](/document/product/266/14574) ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
|
|
5962
|
-
*/
|
|
5963
|
-
SubAppId?: number
|
|
5964
5993
|
}
|
|
5965
5994
|
|
|
5966
5995
|
/**
|
|
@@ -9999,59 +10028,66 @@ export interface ProcedureTemplate {
|
|
|
9999
10028
|
/**
|
|
10000
10029
|
* 任务流名字。
|
|
10001
10030
|
*/
|
|
10002
|
-
Name
|
|
10031
|
+
Name?: string
|
|
10003
10032
|
|
|
10004
10033
|
/**
|
|
10005
10034
|
* 任务流模板类型,取值范围:
|
|
10006
10035
|
<li>Preset:系统预置任务流模板;</li>
|
|
10007
10036
|
<li>Custom:用户自定义任务流模板。</li>
|
|
10008
10037
|
*/
|
|
10009
|
-
Type
|
|
10038
|
+
Type?: string
|
|
10010
10039
|
|
|
10011
10040
|
/**
|
|
10012
10041
|
* 模板描述信息,长度限制:256 个字符。
|
|
10013
10042
|
*/
|
|
10014
|
-
Comment
|
|
10043
|
+
Comment?: string
|
|
10015
10044
|
|
|
10016
10045
|
/**
|
|
10017
10046
|
* 视频处理类型任务参数。
|
|
10018
10047
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
10019
10048
|
*/
|
|
10020
|
-
MediaProcessTask
|
|
10049
|
+
MediaProcessTask?: MediaProcessTaskInput
|
|
10021
10050
|
|
|
10022
10051
|
/**
|
|
10023
|
-
* AI
|
|
10052
|
+
* AI 智能审核类型任务参数 \*。
|
|
10053
|
+
<font color=red>\*:该参数用于发起旧版审核,不建议使用。推荐使用 ReviewAudioVideoTask 参数发起审核。</font>
|
|
10024
10054
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
10025
10055
|
*/
|
|
10026
|
-
AiContentReviewTask
|
|
10056
|
+
AiContentReviewTask?: AiContentReviewTaskInput
|
|
10027
10057
|
|
|
10028
10058
|
/**
|
|
10029
10059
|
* AI 智能内容分析类型任务参数。
|
|
10030
10060
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
10031
10061
|
*/
|
|
10032
|
-
AiAnalysisTask
|
|
10062
|
+
AiAnalysisTask?: AiAnalysisTaskInput
|
|
10033
10063
|
|
|
10034
10064
|
/**
|
|
10035
10065
|
* AI 内容识别类型任务参数。
|
|
10036
10066
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
10037
10067
|
*/
|
|
10038
|
-
AiRecognitionTask
|
|
10068
|
+
AiRecognitionTask?: AiRecognitionTaskInput
|
|
10039
10069
|
|
|
10040
10070
|
/**
|
|
10041
10071
|
* 微信小程序发布任务参数。
|
|
10042
10072
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
10043
10073
|
*/
|
|
10044
|
-
MiniProgramPublishTask
|
|
10074
|
+
MiniProgramPublishTask?: WechatMiniProgramPublishTaskInput
|
|
10075
|
+
|
|
10076
|
+
/**
|
|
10077
|
+
* 音视频审核类型任务参数。
|
|
10078
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
10079
|
+
*/
|
|
10080
|
+
ReviewAudioVideoTask?: ProcedureReviewAudioVideoTaskInput
|
|
10045
10081
|
|
|
10046
10082
|
/**
|
|
10047
10083
|
* 模板创建时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
|
|
10048
10084
|
*/
|
|
10049
|
-
CreateTime
|
|
10085
|
+
CreateTime?: string
|
|
10050
10086
|
|
|
10051
10087
|
/**
|
|
10052
10088
|
* 模板最后修改时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/266/11732#I)。
|
|
10053
10089
|
*/
|
|
10054
|
-
UpdateTime
|
|
10090
|
+
UpdateTime?: string
|
|
10055
10091
|
}
|
|
10056
10092
|
|
|
10057
10093
|
/**
|