tencentcloud-sdk-nodejs-mps 4.0.1004 → 4.0.1016

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.
@@ -116,6 +116,29 @@ export interface ContainerDiagnoseResultItem {
116
116
  */
117
117
  TimestampSet?: Array<number>;
118
118
  }
119
+ /**
120
+ * 安全组解绑输入/输出请求信息。
121
+ */
122
+ export interface UnattachSecurityGroupInOutInfo {
123
+ /**
124
+ * 该安全组关联的FlowId。
125
+ */
126
+ FlowId: string;
127
+ /**
128
+ * 要解绑的输入/输出ID。
129
+ */
130
+ InOutId: string;
131
+ /**
132
+ * 输入/输出类型,可选值:
133
+ Input:输入
134
+ Output:输出。
135
+ */
136
+ InOutType: string;
137
+ /**
138
+ * Flow所在的Region,和input共用。
139
+ */
140
+ FlowRegion: string;
141
+ }
119
142
  /**
120
143
  * ModifyWatermarkTemplate请求参数结构体
121
144
  */
@@ -232,58 +255,13 @@ export interface FrameRateConfig {
232
255
  Fps?: number;
233
256
  }
234
257
  /**
235
- * 自定义转码的规格参数。用于覆盖模板中对应参数值。
258
+ * DeleteStreamLinkSecurityGroup返回参数结构体
236
259
  */
237
- export interface OverrideTranscodeParameter {
238
- /**
239
- * 封装格式,可选值:mp4、flv、hls、mp3、flac、ogg、m4a。其中,mp3、flac、ogg、m4a 为纯音频文件。
240
- */
241
- Container?: string;
260
+ export interface DeleteStreamLinkSecurityGroupResponse {
242
261
  /**
243
- * 是否去除视频数据,取值:
244
- <li>0:保留;</li>
245
- <li>1:去除。</li>
246
- */
247
- RemoveVideo?: number;
248
- /**
249
- * 是否去除音频数据,取值:
250
- <li>0:保留;</li>
251
- <li>1:去除。</li>
252
- */
253
- RemoveAudio?: number;
254
- /**
255
- * 视频流配置参数。
256
- */
257
- VideoTemplate?: VideoTemplateInfoForUpdate;
258
- /**
259
- * 音频流配置参数。
260
- */
261
- AudioTemplate?: AudioTemplateInfoForUpdate;
262
- /**
263
- * 极速高清转码参数。
264
- 注意:此字段可能返回 null,表示取不到有效值。
265
- */
266
- TEHDConfig?: TEHDConfigForUpdate;
267
- /**
268
- * 字幕流配置参数。
269
- 注意:此字段可能返回 null,表示取不到有效值。
270
- */
271
- SubtitleTemplate?: SubtitleTemplate;
272
- /**
273
- * 外挂音轨参数。
274
- 注意:此字段可能返回 null,表示取不到有效值。
275
- */
276
- AddonAudioStream?: Array<MediaInputInfo>;
277
- /**
278
- * 转码扩展字段。
279
- 注意:此字段可能返回 null,表示取不到有效值。
280
- */
281
- StdExtInfo?: string;
282
- /**
283
- * 要插入的字幕文件。
284
- 注意:此字段可能返回 null,表示取不到有效值。
262
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
285
263
  */
286
- AddOnSubtitles?: Array<AddOnSubtitle>;
264
+ RequestId?: string;
287
265
  }
288
266
  /**
289
267
  * 智能分类任务输入类型
@@ -436,19 +414,19 @@ export interface CreateOutputSRTSettings {
436
414
  */
437
415
  StreamId?: string;
438
416
  /**
439
- * 转推SRT的总延迟,默认0,单位ms,范围为[0, 3000]
417
+ * 转推SRT的总延迟,默认0,单位ms,范围为[0, 3000]。此参数同时设置了发送方和接收方的延迟(recvlatency和peerlatency)为相同的值。建议配置为至少3倍RTT,以确保在网络拥塞时能够有效处理数据包的重传和确认
440
418
  */
441
419
  Latency?: number;
442
420
  /**
443
- * 转推SRT的接收延迟,默认120,单位ms,范围为[0, 3000]。
421
+ * 转推SRT的接收延迟,默认120,单位ms,范围为[0, 3000]。 此参数表示接收方用于缓存数据包的时间长度
444
422
  */
445
423
  RecvLatency?: number;
446
424
  /**
447
- * 转推SRT的对端延迟,默认0,单位ms,范围为[0, 3000]。
425
+ * 转推SRT的对端延迟,默认0,单位ms,范围为[0, 3000]。 此参数由发送方设置,用于告知接收方其期望的延迟缓冲时间
448
426
  */
449
427
  PeerLatency?: number;
450
428
  /**
451
- * 转推SRT的对端空闲超时时间,默认5000,单位ms,范围为[1000, 10000]。
429
+ * 转推SRT的对端空闲超时时间,默认5000,单位ms,范围为[1000, 10000]。 如果连接在设定的超时时间内没有活动,将会被关闭
452
430
  */
453
431
  PeerIdleTimeout?: number;
454
432
  /**
@@ -1069,6 +1047,53 @@ export interface ManageTaskRequest {
1069
1047
  */
1070
1048
  TaskId: string;
1071
1049
  }
1050
+ /**
1051
+ * 查询Flow的配置信息。
1052
+ */
1053
+ export interface FlowInOutResp {
1054
+ /**
1055
+ * 流Id。
1056
+ */
1057
+ FlowId?: string;
1058
+ /**
1059
+ * 流名称。
1060
+ */
1061
+ FlowName?: string;
1062
+ /**
1063
+ * 该Flow关联的媒体传输事件EventId。
1064
+ */
1065
+ EventId?: string;
1066
+ /**
1067
+ * 媒体传输输入流所属的区域,取值和InputRegion相同。
1068
+ */
1069
+ FlowRegion?: string;
1070
+ /**
1071
+ * 当返回是输出类型时非空,output所在Region。
1072
+ */
1073
+ OutputRegion?: string;
1074
+ /**
1075
+ * EventName。
1076
+ */
1077
+ EventName?: string;
1078
+ /**
1079
+ * InOutType为Input有效。
1080
+ */
1081
+ InputName?: string;
1082
+ /**
1083
+ * InOutType为Output有效。
1084
+ */
1085
+ OutputName?: string;
1086
+ /**
1087
+ * Input或者Output的Id。
1088
+ */
1089
+ InOutId?: string;
1090
+ /**
1091
+ * 输入/输出类型,可选值:
1092
+ Input:输入
1093
+ Outpu:输出。
1094
+ */
1095
+ InOutType?: string;
1096
+ }
1072
1097
  /**
1073
1098
  * 音视频增强配置
1074
1099
  */
@@ -1435,6 +1460,60 @@ export interface AiSampleWord {
1435
1460
  */
1436
1461
  UpdateTime: string;
1437
1462
  }
1463
+ /**
1464
+ * 自定义转码的规格参数。用于覆盖模板中对应参数值。
1465
+ */
1466
+ export interface OverrideTranscodeParameter {
1467
+ /**
1468
+ * 封装格式,可选值:mp4、flv、hls、mp3、flac、ogg、m4a。其中,mp3、flac、ogg、m4a 为纯音频文件。
1469
+ */
1470
+ Container?: string;
1471
+ /**
1472
+ * 是否去除视频数据,取值:
1473
+ <li>0:保留;</li>
1474
+ <li>1:去除。</li>
1475
+ */
1476
+ RemoveVideo?: number;
1477
+ /**
1478
+ * 是否去除音频数据,取值:
1479
+ <li>0:保留;</li>
1480
+ <li>1:去除。</li>
1481
+ */
1482
+ RemoveAudio?: number;
1483
+ /**
1484
+ * 视频流配置参数。
1485
+ */
1486
+ VideoTemplate?: VideoTemplateInfoForUpdate;
1487
+ /**
1488
+ * 音频流配置参数。
1489
+ */
1490
+ AudioTemplate?: AudioTemplateInfoForUpdate;
1491
+ /**
1492
+ * 极速高清转码参数。
1493
+ 注意:此字段可能返回 null,表示取不到有效值。
1494
+ */
1495
+ TEHDConfig?: TEHDConfigForUpdate;
1496
+ /**
1497
+ * 字幕流配置参数。
1498
+ 注意:此字段可能返回 null,表示取不到有效值。
1499
+ */
1500
+ SubtitleTemplate?: SubtitleTemplate;
1501
+ /**
1502
+ * 外挂音轨参数。
1503
+ 注意:此字段可能返回 null,表示取不到有效值。
1504
+ */
1505
+ AddonAudioStream?: Array<MediaInputInfo>;
1506
+ /**
1507
+ * 转码扩展字段。
1508
+ 注意:此字段可能返回 null,表示取不到有效值。
1509
+ */
1510
+ StdExtInfo?: string;
1511
+ /**
1512
+ * 要插入的字幕文件。
1513
+ 注意:此字段可能返回 null,表示取不到有效值。
1514
+ */
1515
+ AddOnSubtitles?: Array<AddOnSubtitle>;
1516
+ }
1438
1517
  /**
1439
1518
  * 文本涉敏任务控制参数
1440
1519
  */
@@ -1573,6 +1652,15 @@ export interface CreateInputHLSPullSettings {
1573
1652
  */
1574
1653
  SourceAddresses: Array<HLSPullSourceAddress>;
1575
1654
  }
1655
+ /**
1656
+ * DeleteStreamLinkSecurityGroup请求参数结构体
1657
+ */
1658
+ export interface DeleteStreamLinkSecurityGroupRequest {
1659
+ /**
1660
+ * 安全组 ID。
1661
+ */
1662
+ Id: string;
1663
+ }
1576
1664
  /**
1577
1665
  * 内容审核模板详情
1578
1666
  */
@@ -3095,6 +3183,19 @@ export interface AudioBeautifyConfig {
3095
3183
  */
3096
3184
  Types?: Array<string>;
3097
3185
  }
3186
+ /**
3187
+ * CreateStreamLinkSecurityGroup请求参数结构体
3188
+ */
3189
+ export interface CreateStreamLinkSecurityGroupRequest {
3190
+ /**
3191
+ * 安全组名称,限制大小写、数字和下划线,Region下唯一。
3192
+ */
3193
+ Name: string;
3194
+ /**
3195
+ * 白名单列表,数量限制[1, 10]。
3196
+ */
3197
+ Whitelist: Array<string>;
3198
+ }
3098
3199
  /**
3099
3200
  * DescribeStreamLinkEvent返回参数结构体
3100
3201
  */
@@ -3213,6 +3314,15 @@ export interface FlowRealtimeStatusItem {
3213
3314
  */
3214
3315
  RTPStatus: FlowRealtimeStatusRTP;
3215
3316
  }
3317
+ /**
3318
+ * DisassociateSecurityGroup返回参数结构体
3319
+ */
3320
+ export interface DisassociateSecurityGroupResponse {
3321
+ /**
3322
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3323
+ */
3324
+ RequestId?: string;
3325
+ }
3216
3326
  /**
3217
3327
  * 文本全文识别输出。
3218
3328
  */
@@ -4889,6 +4999,7 @@ export interface DescribeAdaptiveDynamicStreamingTemplatesRequest {
4889
4999
  Type?: string;
4890
5000
  /**
4891
5001
  * 是否为纯音频,0表示视频,1表示纯音频
5002
+ 默认值:0
4892
5003
  */
4893
5004
  PureAudio?: number;
4894
5005
  /**
@@ -5251,6 +5362,7 @@ export interface VideoTemplateInfo {
5251
5362
  <li>当 Width 非 0,Height 为 0,则 Height 按比例缩放;</li>
5252
5363
  <li>当 Width、Height 均非 0,则分辨率按用户指定。</li>
5253
5364
  默认值:0。
5365
+ 注意:Codec为MV-HEVC时可以支持到7680
5254
5366
  */
5255
5367
  Width?: number;
5256
5368
  /**
@@ -5260,6 +5372,7 @@ export interface VideoTemplateInfo {
5260
5372
  <li>当 Width 非 0,Height 为 0,则 Height 按比例缩放;</li>
5261
5373
  <li>当 Width、Height 均非 0,则分辨率按用户指定。</li>
5262
5374
  默认值:0。
5375
+ 注意:Codec为MV-HEVC时可以支持到7680
5263
5376
  */
5264
5377
  Height?: number;
5265
5378
  /**
@@ -7126,29 +7239,13 @@ export interface CreateInputSRTSettings {
7126
7239
  SourceAddresses?: Array<SRTSourceAddressReq>;
7127
7240
  }
7128
7241
  /**
7129
- * 实时流状态查询的通用状态信息。
7242
+ * DescribeGroupAttachFlowsById请求参数结构体
7130
7243
  */
7131
- export interface FlowRealtimeStatusCommon {
7244
+ export interface DescribeGroupAttachFlowsByIdRequest {
7132
7245
  /**
7133
- * 当前连接状态,Connected|Waiting|Idle
7134
- */
7135
- State: string;
7136
- /**
7137
- * 连接模式,Listener|Caller。
7246
+ * 媒体传输安全组ID
7138
7247
  */
7139
- Mode: string;
7140
- /**
7141
- * 已连接时长,单位为ms。
7142
- */
7143
- ConnectedTime: number;
7144
- /**
7145
- * 实时码率,单位为bps。
7146
- */
7147
- Bitrate: number;
7148
- /**
7149
- * 重试次数。
7150
- */
7151
- Reconnections: number;
7248
+ Id?: string;
7152
7249
  }
7153
7250
  /**
7154
7251
  * DescribeWorkflows返回参数结构体
@@ -7274,11 +7371,13 @@ export interface VideoTemplateInfoForUpdate {
7274
7371
  <li>当 Width 为 0,Height 非 0,则 Width 按比例缩放;</li>
7275
7372
  <li>当 Width 非 0,Height 为 0,则 Height 按比例缩放;</li>
7276
7373
  <li>当 Width、Height 均非 0,则分辨率按用户指定。</li>
7374
+ 注意:Codec为MV-HEVC时可以支持到7680
7277
7375
  注意:此字段可能返回 null,表示取不到有效值。
7278
7376
  */
7279
7377
  Width?: number;
7280
7378
  /**
7281
7379
  * 视频流高度(或短边)的最大值,取值范围:0 和 [128, 4096],单位:px。
7380
+ 注意:Codec为MV-HEVC时可以支持到7680
7282
7381
  注意:此字段可能返回 null,表示取不到有效值。
7283
7382
  */
7284
7383
  Height?: number;
@@ -7541,7 +7640,7 @@ export interface CreateInput {
7541
7640
  */
7542
7641
  InputName: string;
7543
7642
  /**
7544
- * 输入的协议,可选[SRT|RTP|RTMP|RTMP_PULL|RTSP_PULL|RIST]。
7643
+ * 输入的协议,可选[SRT|RTP|RTMP_PUSH|RTMP_PULL|RTSP_PULL|RIST]。
7545
7644
  */
7546
7645
  Protocol: string;
7547
7646
  /**
@@ -8036,6 +8135,37 @@ export interface ClassificationConfigureInfoForUpdate {
8036
8135
  */
8037
8136
  Switch?: string;
8038
8137
  }
8138
+ /**
8139
+ * 安全组信息。
8140
+ */
8141
+ export interface SecurityGroupInfo {
8142
+ /**
8143
+ * 安全组 ID。
8144
+ */
8145
+ Id?: string;
8146
+ /**
8147
+ * 安全组名称。
8148
+ */
8149
+ Name?: string;
8150
+ /**
8151
+ * 白名单列表。
8152
+ */
8153
+ Whitelist?: Array<string>;
8154
+ /**
8155
+ * 绑定的输入流列表。
8156
+ 注意:此字段可能返回 null,表示取不到有效值。
8157
+ */
8158
+ OccupiedInputs?: Array<string>;
8159
+ /**
8160
+ * 安全组地址。
8161
+ */
8162
+ Region?: string;
8163
+ /**
8164
+ * 绑定的输出流列表。
8165
+ 注意:此字段可能返回 null,表示取不到有效值。
8166
+ */
8167
+ OccupiedOutputs?: Array<string>;
8168
+ }
8039
8169
  /**
8040
8170
  * CreateSchedule请求参数结构体
8041
8171
  */
@@ -8630,6 +8760,19 @@ export interface BatchStartStreamLinkFlowResponse {
8630
8760
  */
8631
8761
  RequestId?: string;
8632
8762
  }
8763
+ /**
8764
+ * DisassociateSecurityGroup请求参数结构体
8765
+ */
8766
+ export interface DisassociateSecurityGroupRequest {
8767
+ /**
8768
+ * 媒体传输安全组ID。
8769
+ */
8770
+ Id?: string;
8771
+ /**
8772
+ * 要解绑的输入输出信息列表。
8773
+ */
8774
+ UnattachInOutInfos?: Array<UnattachSecurityGroupInOutInfo>;
8775
+ }
8633
8776
  /**
8634
8777
  * 违禁任务控制参数
8635
8778
  */
@@ -10483,6 +10626,19 @@ export interface TranscodeTaskInput {
10483
10626
  */
10484
10627
  HeadTailParameter?: HeadTailParameter;
10485
10628
  }
10629
+ /**
10630
+ * CreateStreamLinkSecurityGroup返回参数结构体
10631
+ */
10632
+ export interface CreateStreamLinkSecurityGroupResponse {
10633
+ /**
10634
+ * 安全组 ID。
10635
+ */
10636
+ Id?: string;
10637
+ /**
10638
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
10639
+ */
10640
+ RequestId?: string;
10641
+ }
10486
10642
  /**
10487
10643
  * ModifyAIRecognitionTemplate请求参数结构体
10488
10644
  */
@@ -11270,6 +11426,23 @@ export interface DescribeOutputRTMPPullServerUrl {
11270
11426
  */
11271
11427
  StreamKey: string;
11272
11428
  }
11429
+ /**
11430
+ * ModifyStreamLinkSecurityGroup请求参数结构体
11431
+ */
11432
+ export interface ModifyStreamLinkSecurityGroupRequest {
11433
+ /**
11434
+ * 安全组Id。
11435
+ */
11436
+ Id: string;
11437
+ /**
11438
+ * 安全组名称,限制大小写、数字和下划线,长度[1, 32],Region下唯一。
11439
+ */
11440
+ Name?: string;
11441
+ /**
11442
+ * 白名单列表,最多10个。
11443
+ */
11444
+ Whitelist?: Array<string>;
11445
+ }
11273
11446
  /**
11274
11447
  * 文本识别片段。
11275
11448
  */
@@ -11884,24 +12057,29 @@ export interface DescribeImageSpriteTemplatesResponse {
11884
12057
  RequestId?: string;
11885
12058
  }
11886
12059
  /**
11887
- * SimpleAes 加密信息。
12060
+ * 实时流状态查询的通用状态信息。
11888
12061
  */
11889
- export interface SimpleAesDrm {
12062
+ export interface FlowRealtimeStatusCommon {
11890
12063
  /**
11891
- * 请求解密秘钥uri地址。
11892
- 注意:此字段可能返回 null,表示取不到有效值。
12064
+ * 当前连接状态,Connected|Waiting|Idle。
11893
12065
  */
11894
- Uri: string;
12066
+ State: string;
11895
12067
  /**
11896
- * 加密key(32字节字符串)
11897
- 注意:此字段可能返回 null,表示取不到有效值。
12068
+ * 连接模式,Listener|Caller
11898
12069
  */
11899
- Key: string;
12070
+ Mode: string;
11900
12071
  /**
11901
- * 加密初始化向量(32字节字符串)
11902
- 注意:此字段可能返回 null,表示取不到有效值。
12072
+ * 已连接时长,单位为ms
11903
12073
  */
11904
- Vector?: string;
12074
+ ConnectedTime: number;
12075
+ /**
12076
+ * 实时码率,单位为bps。
12077
+ */
12078
+ Bitrate: number;
12079
+ /**
12080
+ * 重试次数。
12081
+ */
12082
+ Reconnections: number;
11905
12083
  }
11906
12084
  /**
11907
12085
  * 任务的事件通知配置。
@@ -12376,6 +12554,10 @@ export interface LiveStreamTransTextRecognitionResult {
12376
12554
  */
12377
12555
  SteadyState?: boolean;
12378
12556
  }
12557
+ /**
12558
+ * DescribeStreamLinkSecurityGroups请求参数结构体
12559
+ */
12560
+ export declare type DescribeStreamLinkSecurityGroupsRequest = null;
12379
12561
  /**
12380
12562
  * 文本全文本识别任务控制参数
12381
12563
  */
@@ -13880,6 +14062,19 @@ export interface ModifyLiveRecordTemplateResponse {
13880
14062
  */
13881
14063
  RequestId?: string;
13882
14064
  }
14065
+ /**
14066
+ * DescribeStreamLinkSecurityGroups返回参数结构体
14067
+ */
14068
+ export interface DescribeStreamLinkSecurityGroupsResponse {
14069
+ /**
14070
+ * 安全组信息列表。
14071
+ */
14072
+ Infos?: Array<SecurityGroupInfo>;
14073
+ /**
14074
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
14075
+ */
14076
+ RequestId?: string;
14077
+ }
13883
14078
  /**
13884
14079
  * BatchDeleteStreamLinkFlow返回参数结构体
13885
14080
  */
@@ -14199,6 +14394,26 @@ export interface DescribeVideoDatabaseEntryTaskDetailResponse {
14199
14394
  */
14200
14395
  RequestId?: string;
14201
14396
  }
14397
+ /**
14398
+ * SimpleAes 加密信息。
14399
+ */
14400
+ export interface SimpleAesDrm {
14401
+ /**
14402
+ * 请求解密秘钥uri地址。
14403
+ 注意:此字段可能返回 null,表示取不到有效值。
14404
+ */
14405
+ Uri: string;
14406
+ /**
14407
+ * 加密key(32字节字符串)。
14408
+ 注意:此字段可能返回 null,表示取不到有效值。
14409
+ */
14410
+ Key: string;
14411
+ /**
14412
+ * 加密初始化向量(32字节字符串)。
14413
+ 注意:此字段可能返回 null,表示取不到有效值。
14414
+ */
14415
+ Vector?: string;
14416
+ }
14202
14417
  /**
14203
14418
  * DeleteTranscodeTemplate返回参数结构体
14204
14419
  */
@@ -14364,10 +14579,7 @@ export interface ModifyInput {
14364
14579
  */
14365
14580
  RTPSettings: CreateInputRTPSettings;
14366
14581
  /**
14367
- * 输入的协议,可选[SRT|RTP|RTMP|RTMP_PULL|RTSP_PULL|RIST]。
14368
- 当输出包含RTP时,输入只能是RTP。
14369
- 当输出包含RTMP时,输入可以是SRT/RTMP。
14370
- 当输出包含SRT时,输入只能是SRT。
14582
+ * 输入的协议,可选[SRT|RTP|RTMP_PUSH|RTMP_PULL|RTSP_PULL|RIST]。 -
14371
14583
  */
14372
14584
  Protocol?: string;
14373
14585
  /**
@@ -14971,6 +15183,15 @@ export interface OcrFullTextConfigureInfo {
14971
15183
  */
14972
15184
  Switch: string;
14973
15185
  }
15186
+ /**
15187
+ * ModifyStreamLinkSecurityGroup返回参数结构体
15188
+ */
15189
+ export interface ModifyStreamLinkSecurityGroupResponse {
15190
+ /**
15191
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
15192
+ */
15193
+ RequestId?: string;
15194
+ }
14974
15195
  /**
14975
15196
  * ModifyLiveRecordTemplate请求参数结构体
14976
15197
  */
@@ -15702,6 +15923,33 @@ export interface AiRecognitionTaskTransTextResult {
15702
15923
  */
15703
15924
  Progress?: number;
15704
15925
  }
15926
+ /**
15927
+ * DescribeAIRecognitionTemplates请求参数结构体
15928
+ */
15929
+ export interface DescribeAIRecognitionTemplatesRequest {
15930
+ /**
15931
+ * 视频内容识别模板唯一标识过滤条件,数组长度限制:10。
15932
+ */
15933
+ Definitions?: Array<number | bigint>;
15934
+ /**
15935
+ * 分页偏移量,默认值:0。
15936
+ */
15937
+ Offset?: number;
15938
+ /**
15939
+ * 返回记录条数,默认值:10,最大值:50。
15940
+ */
15941
+ Limit?: number;
15942
+ /**
15943
+ * 模板类型过滤条件,不填则返回所有,可选值:
15944
+ * Preset:系统预置模板;
15945
+ * Custom:用户自定义模板。
15946
+ */
15947
+ Type?: string;
15948
+ /**
15949
+ * 视频内容识别模板标识过滤条件,长度限制:64 个字符。
15950
+ */
15951
+ Name?: string;
15952
+ }
15705
15953
  /**
15706
15954
  * BatchStopStreamLinkFlow返回参数结构体
15707
15955
  */
@@ -15837,31 +16085,17 @@ export interface CreateImageSpriteTemplateResponse {
15837
16085
  RequestId?: string;
15838
16086
  }
15839
16087
  /**
15840
- * DescribeAIRecognitionTemplates请求参数结构体
16088
+ * DescribeGroupAttachFlowsById返回参数结构体
15841
16089
  */
15842
- export interface DescribeAIRecognitionTemplatesRequest {
15843
- /**
15844
- * 视频内容识别模板唯一标识过滤条件,数组长度限制:10。
15845
- */
15846
- Definitions?: Array<number | bigint>;
15847
- /**
15848
- * 分页偏移量,默认值:0。
15849
- */
15850
- Offset?: number;
15851
- /**
15852
- * 返回记录条数,默认值:10,最大值:50。
15853
- */
15854
- Limit?: number;
16090
+ export interface DescribeGroupAttachFlowsByIdResponse {
15855
16091
  /**
15856
- * 模板类型过滤条件,不填则返回所有,可选值:
15857
- * Preset:系统预置模板;
15858
- * Custom:用户自定义模板。
16092
+ * 安全组反查的Flow信息列表。
15859
16093
  */
15860
- Type?: string;
16094
+ Infos?: Array<FlowInOutResp>;
15861
16095
  /**
15862
- * 视频内容识别模板标识过滤条件,长度限制:64 个字符。
16096
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
15863
16097
  */
15864
- Name?: string;
16098
+ RequestId?: string;
15865
16099
  }
15866
16100
  /**
15867
16101
  * 翻译片段。