tencentcloud-sdk-nodejs 4.1.121 → 4.1.122

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.
Files changed (40) hide show
  1. package/es/common/credential.js +21 -21
  2. package/es/common/index.js +1 -1
  3. package/es/common/sdk_version.js +1 -1
  4. package/es/services/cdn/v20180606/cdn_client.js +2 -11
  5. package/es/services/lke/v20231130/lke_client.js +0 -6
  6. package/es/services/mps/v20190612/mps_client.js +16 -4
  7. package/package.json +1 -1
  8. package/tencentcloud/common/credential.js +20 -20
  9. package/tencentcloud/common/index.d.ts +1 -1
  10. package/tencentcloud/common/sdk_version.d.ts +1 -1
  11. package/tencentcloud/common/sdk_version.js +1 -1
  12. package/tencentcloud/services/ai3d/v20250513/ai3d_client.d.ts +2 -2
  13. package/tencentcloud/services/ai3d/v20250513/ai3d_client.js +2 -2
  14. package/tencentcloud/services/ai3d/v20250513/ai3d_models.d.ts +1 -1
  15. package/tencentcloud/services/cdn/v20180606/cdn_client.d.ts +3 -20
  16. package/tencentcloud/services/cdn/v20180606/cdn_client.js +3 -26
  17. package/tencentcloud/services/cdn/v20180606/cdn_models.d.ts +95 -244
  18. package/tencentcloud/services/ckafka/v20190819/ckafka_models.d.ts +1 -1
  19. package/tencentcloud/services/iai/v20180301/iai_models.d.ts +21 -21
  20. package/tencentcloud/services/iotexplorer/v20190423/iotexplorer_models.d.ts +8 -0
  21. package/tencentcloud/services/lcic/v20220817/lcic_models.d.ts +12 -3
  22. package/tencentcloud/services/lke/v20231130/lke_client.d.ts +1 -9
  23. package/tencentcloud/services/lke/v20231130/lke_client.js +0 -12
  24. package/tencentcloud/services/lke/v20231130/lke_models.d.ts +5204 -5256
  25. package/tencentcloud/services/mongodb/v20190725/mongodb_client.d.ts +1 -1
  26. package/tencentcloud/services/mongodb/v20190725/mongodb_client.js +1 -1
  27. package/tencentcloud/services/mongodb/v20190725/mongodb_models.d.ts +43 -29
  28. package/tencentcloud/services/mps/v20190612/mps_client.d.ts +21 -5
  29. package/tencentcloud/services/mps/v20190612/mps_client.js +30 -6
  30. package/tencentcloud/services/mps/v20190612/mps_models.d.ts +339 -130
  31. package/tencentcloud/services/redis/v20180412/redis_models.d.ts +2 -0
  32. package/tencentcloud/services/tcss/v20201101/tcss_models.d.ts +8 -0
  33. package/tencentcloud/services/teo/v20220901/teo_models.d.ts +4 -0
  34. package/tencentcloud/services/trtc/v20190722/trtc_models.d.ts +14 -6
  35. package/tencentcloud/services/tse/v20201207/tse_client.d.ts +1 -1
  36. package/tencentcloud/services/tse/v20201207/tse_client.js +1 -1
  37. package/tencentcloud/services/tse/v20201207/tse_models.d.ts +24 -0
  38. package/tencentcloud/services/waf/v20180125/waf_client.d.ts +1 -1
  39. package/tencentcloud/services/waf/v20180125/waf_client.js +1 -1
  40. package/tencentcloud/services/waf/v20180125/waf_models.d.ts +310 -33
@@ -1269,6 +1269,38 @@ export interface ManageTaskRequest {
1269
1269
  */
1270
1270
  TaskId: string;
1271
1271
  }
1272
+ /**
1273
+ * CreateSmartEraseTemplate请求参数结构体
1274
+ */
1275
+ export interface CreateSmartEraseTemplateRequest {
1276
+ /**
1277
+ * 智能擦除模板名称长度限制:64 个字符。
1278
+ */
1279
+ Name: string;
1280
+ /**
1281
+ * 擦除类型
1282
+ - subtitle 去字幕
1283
+ - watermark 去水印
1284
+ - privacy 隐私保护
1285
+ */
1286
+ EraseType: string;
1287
+ /**
1288
+ * 智能擦除模板描述信息长度限制:256 个字符。
1289
+ */
1290
+ Comment?: string;
1291
+ /**
1292
+ * 字幕擦除配置,EraseType取subtitle时必填且仅此时生效。
1293
+ */
1294
+ EraseSubtitleConfig?: SmartEraseSubtitleConfig;
1295
+ /**
1296
+ * 水印擦除配置,EraseType取watermark时必填且仅此时生效。
1297
+ */
1298
+ EraseWatermarkConfig?: SmartEraseWatermarkConfig;
1299
+ /**
1300
+ * 隐私保护配置,EraseType取privacy时必填且仅此时生效。
1301
+ */
1302
+ ErasePrivacyConfig?: SmartErasePrivacyConfig;
1303
+ }
1272
1304
  /**
1273
1305
  * 查询Flow的配置信息。
1274
1306
  */
@@ -2057,6 +2089,15 @@ export interface ContentReviewTemplateItem {
2057
2089
  */
2058
2090
  Type?: string;
2059
2091
  }
2092
+ /**
2093
+ * ModifySmartEraseTemplate返回参数结构体
2094
+ */
2095
+ export interface ModifySmartEraseTemplateResponse {
2096
+ /**
2097
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2098
+ */
2099
+ RequestId?: string;
2100
+ }
2060
2101
  /**
2061
2102
  * ModifyStreamLinkFlow返回参数结构体
2062
2103
  */
@@ -4924,6 +4965,33 @@ export interface DescribeStreamLinkEventsResponse {
4924
4965
  */
4925
4966
  RequestId?: string;
4926
4967
  }
4968
+ /**
4969
+ * DescribeSmartEraseTemplates请求参数结构体
4970
+ */
4971
+ export interface DescribeSmartEraseTemplatesRequest {
4972
+ /**
4973
+ * 智能擦除模板唯一标识过滤条件,数组长度限制:100。
4974
+ */
4975
+ Definitions?: Array<number | bigint>;
4976
+ /**
4977
+ * 分页偏移量,默认值:0。
4978
+ */
4979
+ Offset?: number;
4980
+ /**
4981
+ * 返回记录条数,默认值:10,最大值:100。
4982
+ */
4983
+ Limit?: number;
4984
+ /**
4985
+ * 模板类型过滤条件,不填则返回所有,可选值:
4986
+ * Preset:系统预置模板;
4987
+ * Custom:用户自定义模板。
4988
+ */
4989
+ Type?: string;
4990
+ /**
4991
+ * 智能擦除模板名过滤条件,长度限制:64 个字符。
4992
+ */
4993
+ Name?: string;
4994
+ }
4927
4995
  /**
4928
4996
  * 语音涉敏任务控制参数。
4929
4997
  */
@@ -8346,6 +8414,42 @@ export interface CreateInputSRTSettings {
8346
8414
  */
8347
8415
  FEC?: SRTFECSimpleOptions;
8348
8416
  }
8417
+ /**
8418
+ * ModifySmartEraseTemplate请求参数结构体
8419
+ */
8420
+ export interface ModifySmartEraseTemplateRequest {
8421
+ /**
8422
+ * 智能擦除模板唯一标识
8423
+ */
8424
+ Definition: number;
8425
+ /**
8426
+ * 智能擦除模板名称长度限制:64 个字符。
8427
+ */
8428
+ Name?: string;
8429
+ /**
8430
+ * 智能擦除模板描述信息长度限制:256 个字符。
8431
+ */
8432
+ Comment?: string;
8433
+ /**
8434
+ * 擦除类型
8435
+ - subtitle 去字幕
8436
+ - watermark 去水印
8437
+ - privacy 隐私保护
8438
+ */
8439
+ EraseType?: string;
8440
+ /**
8441
+ * 字幕擦除配置,EraseType取subtitle或者EraseType不填,对应模板原EraseType为subtitle时生效。
8442
+ */
8443
+ EraseSubtitleConfig?: SmartEraseSubtitleConfig;
8444
+ /**
8445
+ * 水印擦除配置,EraseType取watermark或者EraseType不填,对应模板原EraseType为watermark时生效。
8446
+ */
8447
+ EraseWatermarkConfig?: SmartEraseWatermarkConfig;
8448
+ /**
8449
+ * 隐私保护配置,EraseType取privacy或者EraseType不填,对应模板原EraseType为privacy时生效。
8450
+ */
8451
+ ErasePrivacyConfig?: SmartErasePrivacyConfig;
8452
+ }
8349
8453
  /**
8350
8454
  * DescribeGroupAttachFlowsById请求参数结构体
8351
8455
  */
@@ -9078,6 +9182,34 @@ export interface ModifyImageSpriteTemplateResponse {
9078
9182
  */
9079
9183
  RequestId?: string;
9080
9184
  }
9185
+ /**
9186
+ * 内容审核 Asr 文字审核嫌疑片段
9187
+ */
9188
+ export interface MediaContentReviewAsrTextSegmentItem {
9189
+ /**
9190
+ * 嫌疑片段起始的偏移时间,单位:秒。
9191
+ */
9192
+ StartTimeOffset?: number;
9193
+ /**
9194
+ * 嫌疑片段结束的偏移时间,单位:秒。
9195
+ */
9196
+ EndTimeOffset?: number;
9197
+ /**
9198
+ * 嫌疑片段置信度。
9199
+ */
9200
+ Confidence?: number;
9201
+ /**
9202
+ * 嫌疑片段审核结果建议,取值范围:
9203
+ <li>pass。</li>
9204
+ <li>review。</li>
9205
+ <li>block。</li>
9206
+ */
9207
+ Suggestion?: string;
9208
+ /**
9209
+ * 嫌疑关键词列表。
9210
+ */
9211
+ KeywordSet?: Array<string>;
9212
+ }
9081
9213
  /**
9082
9214
  * 创建的输入RIST的配置信息。
9083
9215
  */
@@ -10679,32 +10811,13 @@ export interface LiveStreamAiReviewVoicePornResult {
10679
10811
  Label?: string;
10680
10812
  }
10681
10813
  /**
10682
- * 内容审核 Asr 文字审核嫌疑片段
10814
+ * DeleteSmartEraseTemplate请求参数结构体
10683
10815
  */
10684
- export interface MediaContentReviewAsrTextSegmentItem {
10816
+ export interface DeleteSmartEraseTemplateRequest {
10685
10817
  /**
10686
- * 嫌疑片段起始的偏移时间,单位:秒。
10687
- */
10688
- StartTimeOffset?: number;
10689
- /**
10690
- * 嫌疑片段结束的偏移时间,单位:秒。
10691
- */
10692
- EndTimeOffset?: number;
10693
- /**
10694
- * 嫌疑片段置信度。
10695
- */
10696
- Confidence?: number;
10697
- /**
10698
- * 嫌疑片段审核结果建议,取值范围:
10699
- <li>pass。</li>
10700
- <li>review。</li>
10701
- <li>block。</li>
10702
- */
10703
- Suggestion?: string;
10704
- /**
10705
- * 嫌疑关键词列表。
10818
+ * 智能擦除模板唯一标识。
10706
10819
  */
10707
- KeywordSet?: Array<string>;
10820
+ Definition: number;
10708
10821
  }
10709
10822
  /**
10710
10823
  * 内容审核涉敏嫌疑片段
@@ -11227,7 +11340,7 @@ export interface SpekeDrm {
11227
11340
  */
11228
11341
  KeyServerUrl: string;
11229
11342
  /**
11230
- * 加密初始化向量(32字节字符串),该字段内容为用户自定义。
11343
+ * 加密初始化向量(十六进制32字节字符串),该字段内容为用户自定义。
11231
11344
  */
11232
11345
  Vector: string;
11233
11346
  /**
@@ -12961,6 +13074,19 @@ export interface CreateAIAnalysisTemplateResponse {
12961
13074
  */
12962
13075
  RequestId?: string;
12963
13076
  }
13077
+ /**
13078
+ * CreateSmartEraseTemplate返回参数结构体
13079
+ */
13080
+ export interface CreateSmartEraseTemplateResponse {
13081
+ /**
13082
+ * 智能擦除模板唯一标识
13083
+ */
13084
+ Definition?: number;
13085
+ /**
13086
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
13087
+ */
13088
+ RequestId?: string;
13089
+ }
12964
13090
  /**
12965
13091
  * 对视频做采样截图任务结果类型
12966
13092
  */
@@ -13450,6 +13576,16 @@ export interface PoliticalImgReviewTemplateInfo {
13450
13576
  */
13451
13577
  ReviewConfidence?: number;
13452
13578
  }
13579
+ /**
13580
+ * 任务判断条件
13581
+ */
13582
+ export interface ExecRulesTask {
13583
+ /**
13584
+ * 条件判断信息
13585
+ 注意:此字段可能返回 null,表示取不到有效值。
13586
+ */
13587
+ Rules?: Array<Rules>;
13588
+ }
13453
13589
  /**
13454
13590
  * 涉敏任务控制参数
13455
13591
  */
@@ -14821,6 +14957,79 @@ export interface DescribeTasksResponse {
14821
14957
  */
14822
14958
  RequestId?: string;
14823
14959
  }
14960
+ /**
14961
+ * ModifyImageSpriteTemplate请求参数结构体
14962
+ */
14963
+ export interface ModifyImageSpriteTemplateRequest {
14964
+ /**
14965
+ * 雪碧图模板唯一标识。
14966
+ */
14967
+ Definition: number;
14968
+ /**
14969
+ * 雪碧图模板名称,长度限制:64 个字符。
14970
+ */
14971
+ Name?: string;
14972
+ /**
14973
+ * 雪碧图中小图的宽度(或长边)的最大值,取值范围:0 和 [128, 4096],单位:px。
14974
+ <li>当 Width、Height 均为 0,则分辨率同源;</li>
14975
+ <li>当 Width 为 0,Height 非 0,则 Width 按比例缩放;</li>
14976
+ <li>当 Width 非 0,Height 为 0,则 Height 按比例缩放;</li>
14977
+ <li>当 Width、Height 均非 0,则分辨率按用户指定。</li>
14978
+ 默认值:0。
14979
+ */
14980
+ Width?: number;
14981
+ /**
14982
+ * 雪碧图中小图的高度(或短边)的最大值,取值范围:0 和 [128, 4096],单位:px。
14983
+ <li>当 Width、Height 均为 0,则分辨率同源;</li>
14984
+ <li>当 Width 为 0,Height 非 0,则 Width 按比例缩放;</li>
14985
+ <li>当 Width 非 0,Height 为 0,则 Height 按比例缩放;</li>
14986
+ <li>当 Width、Height 均非 0,则分辨率按用户指定。</li>
14987
+ 默认值:0。
14988
+ */
14989
+ Height?: number;
14990
+ /**
14991
+ * 分辨率自适应,可选值:
14992
+ <li>open:开启,此时,Width 代表视频的长边,Height 表示视频的短边;</li>
14993
+ <li>close:关闭,此时,Width 代表视频的宽度,Height 表示视频的高度。</li>
14994
+ 默认值:open。
14995
+ */
14996
+ ResolutionAdaptive?: string;
14997
+ /**
14998
+ * 采样类型,取值:
14999
+ <li>Percent:按百分比。</li>
15000
+ <li>Time:按时间间隔。</li>
15001
+ */
15002
+ SampleType?: string;
15003
+ /**
15004
+ * 采样间隔。
15005
+ <li>当 SampleType 为 Percent 时,指定采样间隔的百分比。</li>
15006
+ <li>当 SampleType 为 Time 时,指定采样间隔的时间,单位为秒。</li>
15007
+ */
15008
+ SampleInterval?: number;
15009
+ /**
15010
+ * 雪碧图中小图的行数。
15011
+ */
15012
+ RowCount?: number;
15013
+ /**
15014
+ * 雪碧图中小图的列数。
15015
+ */
15016
+ ColumnCount?: number;
15017
+ /**
15018
+ * 填充方式,当视频流配置宽高参数与原始视频的宽高比不一致时,对转码的处理方式,即为“填充”。可选填充方式:
15019
+ <li> stretch:拉伸,对每一帧进行拉伸,填满整个画面,可能导致转码后的视频被“压扁“或者“拉长“;</li>
15020
+ <li>black:留黑,保持视频宽高比不变,边缘剩余部分使用黑色填充。</li>
15021
+ 默认值:black 。
15022
+ */
15023
+ FillType?: string;
15024
+ /**
15025
+ * 模板描述信息,长度限制:256 个字符。
15026
+ */
15027
+ Comment?: string;
15028
+ /**
15029
+ * 图片格式,取值可以为 jpg、png、webp。
15030
+ */
15031
+ Format?: string;
15032
+ }
14824
15033
  /**
14825
15034
  * 查询输出的SRT配置信息。
14826
15035
  */
@@ -15815,14 +16024,21 @@ export interface AiAnalysisTaskHorizontalToVerticalOutput {
15815
16024
  Confidence?: number;
15816
16025
  }
15817
16026
  /**
15818
- * type FailOverOption struct
15819
- { FailOverType string json:"FailOverType" // 新增 冷/热备 COLDSTANDBY、HOTSTANDBY }
16027
+ * DescribeSmartEraseTemplates返回参数结构体
15820
16028
  */
15821
- export interface FailOverOption {
16029
+ export interface DescribeSmartEraseTemplatesResponse {
15822
16030
  /**
15823
- * 热备
16031
+ * 符合过滤条件的记录总数。
15824
16032
  */
15825
- FailOverType?: string;
16033
+ TotalCount?: number;
16034
+ /**
16035
+ * 智能擦除模板详情列表。
16036
+ */
16037
+ SmartEraseTemplateSet?: Array<SmartEraseTemplateItem>;
16038
+ /**
16039
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
16040
+ */
16041
+ RequestId?: string;
15826
16042
  }
15827
16043
  /**
15828
16044
  * 媒体质检的检测策略。
@@ -17013,12 +17229,12 @@ export interface SimpleAesDrm {
17013
17229
  */
17014
17230
  Uri: string;
17015
17231
  /**
17016
- * 加密key(32字节字符串)。
17232
+ * 加密key(十六进制32字节字符串)。
17017
17233
  注意:此字段可能返回 null,表示取不到有效值。
17018
17234
  */
17019
17235
  Key: string;
17020
17236
  /**
17021
- * 加密初始化向量(32字节字符串)。
17237
+ * 加密初始化向量(十六进制32字节字符串)。
17022
17238
  注意:此字段可能返回 null,表示取不到有效值。
17023
17239
  */
17024
17240
  Vector?: string;
@@ -17603,14 +17819,13 @@ export interface FlowMediaVideo {
17603
17819
  SessionId: string;
17604
17820
  }
17605
17821
  /**
17606
- * 任务判断条件
17822
+ * DeleteSmartEraseTemplate返回参数结构体
17607
17823
  */
17608
- export interface ExecRulesTask {
17824
+ export interface DeleteSmartEraseTemplateResponse {
17609
17825
  /**
17610
- * 条件判断信息
17611
- 注意:此字段可能返回 null,表示取不到有效值。
17826
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
17612
17827
  */
17613
- Rules?: Array<Rules>;
17828
+ RequestId?: string;
17614
17829
  }
17615
17830
  /**
17616
17831
  * 内容审核 Asr 文字鉴黄任务结果类型
@@ -18850,31 +19065,17 @@ export interface AiRecognitionTaskTransTextResult {
18850
19065
  Progress?: number;
18851
19066
  }
18852
19067
  /**
18853
- * DescribeAIRecognitionTemplates请求参数结构体
19068
+ * DescribeGroupAttachFlowsById返回参数结构体
18854
19069
  */
18855
- export interface DescribeAIRecognitionTemplatesRequest {
18856
- /**
18857
- * 视频内容识别模板唯一标识过滤条件,数组长度限制:10。
18858
- */
18859
- Definitions?: Array<number | bigint>;
18860
- /**
18861
- * 分页偏移量,默认值:0。
18862
- */
18863
- Offset?: number;
18864
- /**
18865
- * 返回记录条数,默认值:10,最大值:50。
18866
- */
18867
- Limit?: number;
19070
+ export interface DescribeGroupAttachFlowsByIdResponse {
18868
19071
  /**
18869
- * 模板类型过滤条件,不填则返回所有,可选值:
18870
- * Preset:系统预置模板;
18871
- * Custom:用户自定义模板。
19072
+ * 安全组反查的Flow信息列表。
18872
19073
  */
18873
- Type?: string;
19074
+ Infos?: Array<FlowInOutResp>;
18874
19075
  /**
18875
- * 视频内容识别模板标识过滤条件,长度限制:64 个字符。
19076
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
18876
19077
  */
18877
- Name?: string;
19078
+ RequestId?: string;
18878
19079
  }
18879
19080
  /**
18880
19081
  * BatchStopStreamLinkFlow返回参数结构体
@@ -18941,6 +19142,63 @@ export interface HighlightSegmentItem {
18941
19142
  */
18942
19143
  Summary?: string;
18943
19144
  }
19145
+ /**
19146
+ * 智能擦除模板详情
19147
+ */
19148
+ export interface SmartEraseTemplateItem {
19149
+ /**
19150
+ * 智能擦除模板唯一标识
19151
+ */
19152
+ Definition?: number;
19153
+ /**
19154
+ * 智能擦除模板名称
19155
+ */
19156
+ Name?: string;
19157
+ /**
19158
+ * 智能擦除模板描述信息
19159
+ */
19160
+ Comment?: string;
19161
+ /**
19162
+ * 模板类型,取值范围:
19163
+ * Preset:系统预置模板;
19164
+ * Custom:用户自定义模板。
19165
+ */
19166
+ Type?: string;
19167
+ /**
19168
+ * 擦除类型
19169
+ - subtitle 去字幕
19170
+ - watermark 去水印
19171
+ - privacy 隐私保护
19172
+ */
19173
+ EraseType?: string;
19174
+ /**
19175
+ * 字幕擦除配置
19176
+ 注意:此字段可能返回 null,表示取不到有效值。
19177
+ */
19178
+ EraseSubtitleConfig?: SmartEraseSubtitleConfig;
19179
+ /**
19180
+ * 水印擦除配置
19181
+ 注意:此字段可能返回 null,表示取不到有效值。
19182
+ */
19183
+ EraseWatermarkConfig?: SmartEraseWatermarkConfig;
19184
+ /**
19185
+ * 隐私保护配置
19186
+ 注意:此字段可能返回 null,表示取不到有效值。
19187
+ */
19188
+ ErasePrivacyConfig?: SmartErasePrivacyConfig;
19189
+ /**
19190
+ * 模板创建时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
19191
+ */
19192
+ CreateTime?: string;
19193
+ /**
19194
+ * 模板最后修改时间,使用 [ISO 日期格式](https://cloud.tencent.com/document/product/862/37710#52)。
19195
+ */
19196
+ UpdateTime?: string;
19197
+ /**
19198
+ * 智能擦除预设模板别名
19199
+ */
19200
+ AliasName?: string;
19201
+ }
18944
19202
  /**
18945
19203
  * DeleteWatermarkTemplate返回参数结构体
18946
19204
  */
@@ -18975,77 +19233,14 @@ export interface DescribeOutputRTSPPullServerUrl {
18975
19233
  Url: string;
18976
19234
  }
18977
19235
  /**
18978
- * ModifyImageSpriteTemplate请求参数结构体
19236
+ * type FailOverOption struct
19237
+ { FailOverType string json:"FailOverType" // 新增 冷/热备 COLDSTANDBY、HOTSTANDBY }
18979
19238
  */
18980
- export interface ModifyImageSpriteTemplateRequest {
18981
- /**
18982
- * 雪碧图模板唯一标识。
18983
- */
18984
- Definition: number;
18985
- /**
18986
- * 雪碧图模板名称,长度限制:64 个字符。
18987
- */
18988
- Name?: string;
18989
- /**
18990
- * 雪碧图中小图的宽度(或长边)的最大值,取值范围:0 和 [128, 4096],单位:px。
18991
- <li>当 Width、Height 均为 0,则分辨率同源;</li>
18992
- <li>当 Width 为 0,Height 非 0,则 Width 按比例缩放;</li>
18993
- <li>当 Width 非 0,Height 为 0,则 Height 按比例缩放;</li>
18994
- <li>当 Width、Height 均非 0,则分辨率按用户指定。</li>
18995
- 默认值:0。
18996
- */
18997
- Width?: number;
18998
- /**
18999
- * 雪碧图中小图的高度(或短边)的最大值,取值范围:0 和 [128, 4096],单位:px。
19000
- <li>当 Width、Height 均为 0,则分辨率同源;</li>
19001
- <li>当 Width 为 0,Height 非 0,则 Width 按比例缩放;</li>
19002
- <li>当 Width 非 0,Height 为 0,则 Height 按比例缩放;</li>
19003
- <li>当 Width、Height 均非 0,则分辨率按用户指定。</li>
19004
- 默认值:0。
19005
- */
19006
- Height?: number;
19007
- /**
19008
- * 分辨率自适应,可选值:
19009
- <li>open:开启,此时,Width 代表视频的长边,Height 表示视频的短边;</li>
19010
- <li>close:关闭,此时,Width 代表视频的宽度,Height 表示视频的高度。</li>
19011
- 默认值:open。
19012
- */
19013
- ResolutionAdaptive?: string;
19014
- /**
19015
- * 采样类型,取值:
19016
- <li>Percent:按百分比。</li>
19017
- <li>Time:按时间间隔。</li>
19018
- */
19019
- SampleType?: string;
19020
- /**
19021
- * 采样间隔。
19022
- <li>当 SampleType 为 Percent 时,指定采样间隔的百分比。</li>
19023
- <li>当 SampleType 为 Time 时,指定采样间隔的时间,单位为秒。</li>
19024
- */
19025
- SampleInterval?: number;
19026
- /**
19027
- * 雪碧图中小图的行数。
19028
- */
19029
- RowCount?: number;
19030
- /**
19031
- * 雪碧图中小图的列数。
19032
- */
19033
- ColumnCount?: number;
19034
- /**
19035
- * 填充方式,当视频流配置宽高参数与原始视频的宽高比不一致时,对转码的处理方式,即为“填充”。可选填充方式:
19036
- <li> stretch:拉伸,对每一帧进行拉伸,填满整个画面,可能导致转码后的视频被“压扁“或者“拉长“;</li>
19037
- <li>black:留黑,保持视频宽高比不变,边缘剩余部分使用黑色填充。</li>
19038
- 默认值:black 。
19039
- */
19040
- FillType?: string;
19041
- /**
19042
- * 模板描述信息,长度限制:256 个字符。
19043
- */
19044
- Comment?: string;
19239
+ export interface FailOverOption {
19045
19240
  /**
19046
- * 图片格式,取值可以为 jpg、png、webp。
19241
+ * 热备
19047
19242
  */
19048
- Format?: string;
19243
+ FailOverType?: string;
19049
19244
  }
19050
19245
  /**
19051
19246
  * 低光照增强配置
@@ -19100,17 +19295,31 @@ export interface CreateImageSpriteTemplateResponse {
19100
19295
  RequestId?: string;
19101
19296
  }
19102
19297
  /**
19103
- * DescribeGroupAttachFlowsById返回参数结构体
19298
+ * DescribeAIRecognitionTemplates请求参数结构体
19104
19299
  */
19105
- export interface DescribeGroupAttachFlowsByIdResponse {
19300
+ export interface DescribeAIRecognitionTemplatesRequest {
19106
19301
  /**
19107
- * 安全组反查的Flow信息列表。
19302
+ * 视频内容识别模板唯一标识过滤条件,数组长度限制:10。
19108
19303
  */
19109
- Infos?: Array<FlowInOutResp>;
19304
+ Definitions?: Array<number | bigint>;
19110
19305
  /**
19111
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId
19306
+ * 分页偏移量,默认值:0
19112
19307
  */
19113
- RequestId?: string;
19308
+ Offset?: number;
19309
+ /**
19310
+ * 返回记录条数,默认值:10,最大值:50。
19311
+ */
19312
+ Limit?: number;
19313
+ /**
19314
+ * 模板类型过滤条件,不填则返回所有,可选值:
19315
+ * Preset:系统预置模板;
19316
+ * Custom:用户自定义模板。
19317
+ */
19318
+ Type?: string;
19319
+ /**
19320
+ * 视频内容识别模板标识过滤条件,长度限制:64 个字符。
19321
+ */
19322
+ Name?: string;
19114
19323
  }
19115
19324
  /**
19116
19325
  * 翻译片段。
@@ -4981,6 +4981,8 @@ export interface InstanceSet {
4981
4981
  CloseTime?: string;
4982
4982
  /**
4983
4983
  * 从节点读取权重。
4984
+ - 0:表示关闭副本只读。
4985
+ - 100:表示开启副本只读。
4984
4986
  */
4985
4987
  SlaveReadWeight?: number;
4986
4988
  /**
@@ -19707,6 +19707,14 @@ export interface VulInfo {
19707
19707
  * 已防御攻击次数
19708
19708
  */
19709
19709
  DefendedCount?: number;
19710
+ /**
19711
+ * 漏洞对应机器的应用防护开启数量
19712
+ */
19713
+ RaspOpenNodeCount?: number;
19714
+ /**
19715
+ * 漏洞对应机器的应用防护关闭数量
19716
+ */
19717
+ RaspClosedNodeCount?: number;
19710
19718
  }
19711
19719
  /**
19712
19720
  * DescribeAssetImageRegistryRegistryList返回参数结构体
@@ -913,6 +913,10 @@ export interface MultiPathGateway {
913
913
  * 线路信息,当查询网关信息详情 DescribeMultiPathGateway 的时候会返回,当查询网关列表 DescribeMultiPathGateways 的时候不会返回。
914
914
  */
915
915
  Lines?: Array<MultiPathGatewayLine>;
916
+ /**
917
+ * 网关回源 IP 列表发生了变化是否需要重新确认,取值有:<li>true:回源 IP 列表发生了变化,需要确认;</li><li>false:回源 IP 列表未发生变化,无需确认。</li>
918
+ */
919
+ NeedConfirm?: string;
916
920
  }
917
921
  /**
918
922
  * DescribeAliasDomains请求参数结构体