tencentcloud-sdk-nodejs 4.1.243 → 4.1.245

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 (54) hide show
  1. package/es/common/sdk_version.js +1 -1
  2. package/es/services/adp/index.js +4 -0
  3. package/es/services/adp/v20260520/adp_client.js +126 -0
  4. package/es/services/adp/v20260520/adp_models.js +1 -0
  5. package/es/services/adp/v20260520/index.js +6 -0
  6. package/es/services/cfw/v20190904/cfw_client.js +26 -5
  7. package/es/services/cls/v20201016/cls_client.js +6 -0
  8. package/es/services/index.js +1 -0
  9. package/es/services/ocr/v20181119/ocr_client.js +0 -3
  10. package/es/services/tokenhub/v20260322/tokenhub_client.js +3 -0
  11. package/package.json +1 -1
  12. package/tencentcloud/common/sdk_version.d.ts +1 -1
  13. package/tencentcloud/common/sdk_version.js +1 -1
  14. package/tencentcloud/services/adp/index.d.ts +6 -0
  15. package/tencentcloud/services/adp/index.js +7 -0
  16. package/tencentcloud/services/adp/v20260520/adp_client.d.ts +170 -0
  17. package/tencentcloud/services/adp/v20260520/adp_client.js +271 -0
  18. package/tencentcloud/services/adp/v20260520/adp_models.d.ts +4219 -0
  19. package/tencentcloud/services/adp/v20260520/adp_models.js +18 -0
  20. package/tencentcloud/services/adp/v20260520/index.d.ts +6 -0
  21. package/tencentcloud/services/adp/v20260520/index.js +10 -0
  22. package/tencentcloud/services/ags/v20250920/ags_models.d.ts +2 -2
  23. package/tencentcloud/services/cfw/v20190904/cfw_client.d.ts +35 -7
  24. package/tencentcloud/services/cfw/v20190904/cfw_client.js +51 -9
  25. package/tencentcloud/services/cfw/v20190904/cfw_models.d.ts +535 -156
  26. package/tencentcloud/services/cls/v20201016/cls_client.d.ts +11 -1
  27. package/tencentcloud/services/cls/v20201016/cls_client.js +14 -0
  28. package/tencentcloud/services/cls/v20201016/cls_models.d.ts +30 -0
  29. package/tencentcloud/services/cwp/v20180228/cwp_client.d.ts +3 -3
  30. package/tencentcloud/services/cwp/v20180228/cwp_models.d.ts +173 -167
  31. package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +9 -5
  32. package/tencentcloud/services/dbbrain/v20210527/dbbrain_models.d.ts +14 -16
  33. package/tencentcloud/services/ess/v20201111/ess_client.d.ts +22 -5
  34. package/tencentcloud/services/ess/v20201111/ess_client.js +22 -5
  35. package/tencentcloud/services/ess/v20201111/ess_models.d.ts +12 -25
  36. package/tencentcloud/services/essbasic/v20210526/essbasic_client.d.ts +1 -1
  37. package/tencentcloud/services/essbasic/v20210526/essbasic_client.js +1 -1
  38. package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +11 -19
  39. package/tencentcloud/services/iai/v20180301/iai_models.d.ts +1 -1
  40. package/tencentcloud/services/iai/v20200303/iai_models.d.ts +1 -1
  41. package/tencentcloud/services/index.d.ts +1 -0
  42. package/tencentcloud/services/index.js +8 -6
  43. package/tencentcloud/services/mna/v20210119/mna_models.d.ts +5 -5
  44. package/tencentcloud/services/mps/v20190612/mps_models.d.ts +1 -1
  45. package/tencentcloud/services/ocr/v20181119/ocr_client.d.ts +1 -7
  46. package/tencentcloud/services/ocr/v20181119/ocr_client.js +0 -8
  47. package/tencentcloud/services/ocr/v20181119/ocr_models.d.ts +42 -116
  48. package/tencentcloud/services/rce/v20201103/rce_models.d.ts +1 -1
  49. package/tencentcloud/services/tcb/v20180608/tcb_models.d.ts +12 -8
  50. package/tencentcloud/services/tokenhub/v20260322/tokenhub_client.d.ts +7 -1
  51. package/tencentcloud/services/tokenhub/v20260322/tokenhub_client.js +8 -0
  52. package/tencentcloud/services/tokenhub/v20260322/tokenhub_models.d.ts +20 -7
  53. package/tencentcloud/services/vod/v20180717/vod_models.d.ts +9 -1
  54. package/tencentcloud/services/waf/v20180125/waf_models.d.ts +9 -5
@@ -93,47 +93,6 @@ export interface FieldsInfo {
93
93
  */
94
94
  SubItems?: Array<SubItemGroup>;
95
95
  }
96
- /**
97
- * 表格识别结果
98
- */
99
- export interface TextTable {
100
- /**
101
- * 单元格左上角的列索引
102
- */
103
- ColTl?: number;
104
- /**
105
- * 单元格左上角的行索引
106
- */
107
- RowTl?: number;
108
- /**
109
- * 单元格右下角的列索引
110
- */
111
- ColBr?: number;
112
- /**
113
- * 单元格右下角的行索引
114
- */
115
- RowBr?: number;
116
- /**
117
- * 单元格文字
118
- */
119
- Text?: string;
120
- /**
121
- * 单元格类型,包含body(表格主体)、header(表头)、footer(表尾)三种
122
- */
123
- Type?: string;
124
- /**
125
- * 置信度 0 ~100
126
- */
127
- Confidence?: number;
128
- /**
129
- * 文本行坐标,以四个顶点坐标表示
130
- */
131
- Polygon?: Array<Coord>;
132
- /**
133
- * 此字段为扩展字段
134
- */
135
- AdvancedInfo?: string;
136
- }
137
96
  /**
138
97
  * 混贴票据单张发票识别信息
139
98
  */
@@ -1347,57 +1306,29 @@ export interface TextFormula {
1347
1306
  DetectedText?: string;
1348
1307
  }
1349
1308
  /**
1350
- * HmtResidentPermitOCR返回参数结构体
1309
+ * MLIDCardOCR请求参数结构体
1351
1310
  */
1352
- export interface HmtResidentPermitOCRResponse {
1353
- /**
1354
- * <p>证件姓名</p>
1355
- */
1356
- Name?: string;
1357
- /**
1358
- * <p>性别</p>
1359
- */
1360
- Sex?: string;
1361
- /**
1362
- * <p>出生日期</p>
1363
- */
1364
- Birth?: string;
1365
- /**
1366
- * <p>地址</p>
1367
- */
1368
- Address?: string;
1369
- /**
1370
- * <p>身份证号</p>
1371
- */
1372
- IdCardNo?: string;
1373
- /**
1374
- * <p>0-正面<br>1-反面</p>
1375
- */
1376
- CardType?: number;
1377
- /**
1378
- * <p>证件有效期限</p>
1379
- */
1380
- ValidDate?: string;
1311
+ export interface MLIDCardOCRRequest {
1381
1312
  /**
1382
- * <p>签发机关</p>
1313
+ * 图片的 Base64 值。支持的图片格式:PNG、JPG、JPEG,暂不支持 GIF 格式。支持的图片大小:所下载图片经Base64编码后不超过 10M。图片下载时间不超过 3 秒。
1383
1314
  */
1384
- Authority?: string;
1315
+ ImageBase64?: string;
1385
1316
  /**
1386
- * <p>签发次数</p>
1317
+ * 卡证背面图片的 Base64 值。支持的图片格式:PNG、JPG、JPEG,暂不支持 GIF 格式。支持的图片大小:所下载图片经Base64编码后不超过 10M。图片下载时间不超过 3 秒。图片的 ImageUrl、ImageBase64 必须提供一个,如果都提供,只使用 ImageUrl。
1387
1318
  */
1388
- VisaNum?: string;
1319
+ BackImageBase64?: string;
1389
1320
  /**
1390
- * <p>通行证号码</p>
1321
+ * 图片的 Url 地址。( 中国地区之外不支持这个字段 )支持的图片格式:PNG、JPG、JPEG,暂不支持 GIF 格式。支持的图片大小:所下载图片经 Base64 编码后不超过 10M。图片下载时间不超过 3 秒。图片存储于腾讯云的 Url 可保障更高的下载速度和稳定性,建议图片存储于腾讯云。非腾讯云存储的 Url 速度和稳定性可能受一定影响。
1391
1322
  */
1392
- PassNo?: string;
1323
+ ImageUrl?: string;
1393
1324
  /**
1394
- * <p>头像和坐标信息</p>
1325
+ * 卡证背面图片的 Url 地址。支持的图片格式:PNG、JPG、JPEG,暂不支持 GIF 格式。支持的图片大小:所下载图片经 Base64 编码后不超过 10M。图片下载时间不超过 3 秒。图片存储于腾讯云的 Url 可保障更高的下载速度和稳定性,建议图片存储于腾讯云。非腾讯云存储的 Url 速度和稳定性可能受一定影响。
1395
1326
  */
1396
- PortraitImageInfo?: PortraitImageInfo;
1327
+ BackImageUrl?: string;
1397
1328
  /**
1398
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1329
+ * 是否返回图片,默认false
1399
1330
  */
1400
- RequestId?: string;
1331
+ RetImage?: boolean;
1401
1332
  }
1402
1333
  /**
1403
1334
  * 增值税发票项目明细
@@ -3771,31 +3702,6 @@ export interface ClassifyDetectOCRRequest {
3771
3702
  */
3772
3703
  DiscernType?: Array<string>;
3773
3704
  }
3774
- /**
3775
- * MLIDCardOCR请求参数结构体
3776
- */
3777
- export interface MLIDCardOCRRequest {
3778
- /**
3779
- * 图片的 Base64 值。支持的图片格式:PNG、JPG、JPEG,暂不支持 GIF 格式。支持的图片大小:所下载图片经Base64编码后不超过 10M。图片下载时间不超过 3 秒。
3780
- */
3781
- ImageBase64?: string;
3782
- /**
3783
- * 卡证背面图片的 Base64 值。支持的图片格式:PNG、JPG、JPEG,暂不支持 GIF 格式。支持的图片大小:所下载图片经Base64编码后不超过 10M。图片下载时间不超过 3 秒。图片的 ImageUrl、ImageBase64 必须提供一个,如果都提供,只使用 ImageUrl。
3784
- */
3785
- BackImageBase64?: string;
3786
- /**
3787
- * 图片的 Url 地址。( 中国地区之外不支持这个字段 )支持的图片格式:PNG、JPG、JPEG,暂不支持 GIF 格式。支持的图片大小:所下载图片经 Base64 编码后不超过 10M。图片下载时间不超过 3 秒。图片存储于腾讯云的 Url 可保障更高的下载速度和稳定性,建议图片存储于腾讯云。非腾讯云存储的 Url 速度和稳定性可能受一定影响。
3788
- */
3789
- ImageUrl?: string;
3790
- /**
3791
- * 卡证背面图片的 Url 地址。支持的图片格式:PNG、JPG、JPEG,暂不支持 GIF 格式。支持的图片大小:所下载图片经 Base64 编码后不超过 10M。图片下载时间不超过 3 秒。图片存储于腾讯云的 Url 可保障更高的下载速度和稳定性,建议图片存储于腾讯云。非腾讯云存储的 Url 速度和稳定性可能受一定影响。
3792
- */
3793
- BackImageUrl?: string;
3794
- /**
3795
- * 是否返回图片,默认false
3796
- */
3797
- RetImage?: boolean;
3798
- }
3799
3705
  /**
3800
3706
  * LicensePlateOCR返回参数结构体
3801
3707
  */
@@ -9193,25 +9099,45 @@ export interface MedicalInvoice {
9193
9099
  Reviewer?: string;
9194
9100
  }
9195
9101
  /**
9196
- * HmtResidentPermitOCR请求参数结构体
9102
+ * 表格识别结果
9197
9103
  */
9198
- export interface HmtResidentPermitOCRRequest {
9104
+ export interface TextTable {
9199
9105
  /**
9200
- * <p>图片的 Base64 值。支持的图片格式:PNG、JPG、JPEG,暂不支持 GIF 格式。支持的图片大小:所下载图片经Base64编码后不超过 10M。图片下载时间不超过 3 秒。图片的 ImageUrl、ImageBase64 必须提供一个,如果都提供,只使用 ImageUrl。</p>
9106
+ * 单元格左上角的列索引
9201
9107
  */
9202
- ImageBase64?: string;
9108
+ ColTl?: number;
9203
9109
  /**
9204
- * <p>图片的 Url 地址。支持的图片格式:PNG、JPG、JPEG,暂不支持 GIF 格式。支持的图片大小:所下载图片经 Base64 编码后不超过 10M。图片下载时间不超过 3 秒。图片存储于腾讯云的 Url 可保障更高的下载速度和稳定性,建议图片存储于腾讯云。非腾讯云存储的 Url 速度和稳定性可能受一定影响。</p>
9110
+ * 单元格左上角的行索引
9205
9111
  */
9206
- ImageUrl?: string;
9112
+ RowTl?: number;
9207
9113
  /**
9208
- * <p>FRONT:有照片的一面(人像面),<br>BACK:无照片的一面(国徽面),<br>该参数如果不填或填错,将为您自动判断正反面。</p>
9114
+ * 单元格右下角的列索引
9209
9115
  */
9210
- CardSide?: string;
9116
+ ColBr?: number;
9211
9117
  /**
9212
- * <p>是否返回头像和位置坐标</p>
9118
+ * 单元格右下角的行索引
9213
9119
  */
9214
- CropPortrait?: boolean;
9120
+ RowBr?: number;
9121
+ /**
9122
+ * 单元格文字
9123
+ */
9124
+ Text?: string;
9125
+ /**
9126
+ * 单元格类型,包含body(表格主体)、header(表头)、footer(表尾)三种
9127
+ */
9128
+ Type?: string;
9129
+ /**
9130
+ * 置信度 0 ~100
9131
+ */
9132
+ Confidence?: number;
9133
+ /**
9134
+ * 文本行坐标,以四个顶点坐标表示
9135
+ */
9136
+ Polygon?: Array<Coord>;
9137
+ /**
9138
+ * 此字段为扩展字段
9139
+ */
9140
+ AdvancedInfo?: string;
9215
9141
  }
9216
9142
  /**
9217
9143
  * RecognizeTableAccurateOCR返回参数结构体
@@ -715,7 +715,7 @@ export interface DescribeNameListDataListRequest {
715
715
  BusinessSecurityData: InputDescribeDataListFront;
716
716
  }
717
717
  /**
718
- * 全栈式风控引擎入参
718
+ * 风险识别RCE入参
719
719
  */
720
720
  export interface InputCryptoManageMarketingRisk {
721
721
  /**
@@ -2760,7 +2760,7 @@ export interface ManagedAIModel {
2760
2760
  */
2761
2761
  export interface DescribeUserListResponse {
2762
2762
  /**
2763
- * 结果返回
2763
+ * <p>结果返回</p>
2764
2764
  */
2765
2765
  Data?: DescribeUserListResp;
2766
2766
  /**
@@ -4525,33 +4525,37 @@ export interface AIModel {
4525
4525
  */
4526
4526
  export interface DescribeUserListRequest {
4527
4527
  /**
4528
- * 环境id
4528
+ * <p>环境id</p>
4529
4529
  */
4530
4530
  EnvId: string;
4531
4531
  /**
4532
- * 页码,从1开始,默认1
4532
+ * <p>页码,从1开始,默认1</p>
4533
4533
  */
4534
4534
  PageNo?: number;
4535
4535
  /**
4536
- * 每页数量,默认20,最大100
4536
+ * <p>每页数量,默认20,最大100</p>
4537
4537
  */
4538
4538
  PageSize?: number;
4539
4539
  /**
4540
- * 用户名,模糊查询
4540
+ * <p>用户名,模糊查询</p>
4541
4541
  */
4542
4542
  Name?: string;
4543
4543
  /**
4544
- * 用户昵称,模糊查询
4544
+ * <p>用户昵称,模糊查询</p>
4545
4545
  */
4546
4546
  NickName?: string;
4547
4547
  /**
4548
- * 手机号,模糊查询
4548
+ * <p>手机号,模糊查询</p>
4549
4549
  */
4550
4550
  Phone?: string;
4551
4551
  /**
4552
- * 邮箱,模糊查询
4552
+ * <p>邮箱,模糊查询</p>
4553
4553
  */
4554
4554
  Email?: string;
4555
+ /**
4556
+ * <p>用户id列表,根据id过滤用户</p>
4557
+ */
4558
+ UidList?: Array<string>;
4555
4559
  }
4556
4560
  /**
4557
4561
  * DescribeCurveData请求参数结构体
@@ -1,6 +1,6 @@
1
1
  import { AbstractClient } from "../../../common/abstract_client";
2
2
  import { ClientConfig } from "../../../common/interface";
3
- import { DescribeTokenPlanApiKeySecretResponse, ModifyTokenPlanApiKeySecretResponse, DescribeTokenPlanApiKeyListResponse, DescribeUsageRankListRequest, DescribeTokenPlanRequest, DescribeTokenPlanApiKeyResponse, ModifyTokenPlanApiKeySecretRequest, DescribeApiKeyListResponse, RenewTokenPlanTeamOrderResponse, ModifyTokenPlanApiKeyResponse, DescribeApiKeyListRequest, UpgradeTokenPlanTeamOrderRequest, DescribeTokenPlanListResponse, CreateTokenPlanApiKeysResponse, DescribeTokenPlanApiKeyRequest, DescribeApiKeyRequest, DescribeTokenPlanApiKeyUsageDetailResponse, DescribeTokenPlanApiKeyListRequest, CreateTokenPlanTeamOrderAndBuyRequest, ModifyTokenPlanApiKeyRequest, RenewTokenPlanTeamOrderRequest, DeleteTokenPlanApiKeyResponse, DescribeTokenPlanApiKeyUsageDetailRequest, CreateTokenPlanTeamOrderAndBuyResponse, DescribeTokenPlanListRequest, UpgradeTokenPlanTeamOrderResponse, DescribeTokenPlanResponse, CreateTokenPlanApiKeysRequest, DescribeUsageRankListResponse, DeleteTokenPlanApiKeyRequest, DescribeApiKeyResponse, DescribeTokenPlanApiKeySecretRequest } from "./tokenhub_models";
3
+ import { DescribeTokenPlanApiKeySecretResponse, ModifyTokenPlanApiKeySecretResponse, DescribeTokenPlanApiKeyListResponse, DescribeUsageRankListRequest, DescribeTokenPlanRequest, DescribeTokenPlanApiKeyResponse, ModifyTokenPlanApiKeySecretRequest, DescribeApiKeyListResponse, RenewTokenPlanTeamOrderResponse, DescribeModelListRequest, DescribeApiKeyListRequest, UpgradeTokenPlanTeamOrderRequest, DescribeTokenPlanListResponse, CreateTokenPlanApiKeysResponse, DescribeTokenPlanApiKeyRequest, DescribeApiKeyRequest, DescribeModelListResponse, DescribeTokenPlanApiKeyUsageDetailResponse, DescribeTokenPlanApiKeyListRequest, CreateTokenPlanTeamOrderAndBuyRequest, ModifyTokenPlanApiKeyRequest, RenewTokenPlanTeamOrderRequest, DeleteTokenPlanApiKeyResponse, DescribeTokenPlanApiKeyUsageDetailRequest, ModifyTokenPlanApiKeyResponse, CreateTokenPlanTeamOrderAndBuyResponse, DescribeTokenPlanListRequest, UpgradeTokenPlanTeamOrderResponse, DescribeTokenPlanResponse, CreateTokenPlanApiKeysRequest, DescribeUsageRankListResponse, DeleteTokenPlanApiKeyRequest, DescribeApiKeyResponse, DescribeTokenPlanApiKeySecretRequest } from "./tokenhub_models";
4
4
  /**
5
5
  * tokenhub client
6
6
  * @class
@@ -61,6 +61,12 @@ export declare class Client extends AbstractClient {
61
61
  支持分页、过滤和排序。主账号可查看全部,子账号仅可查看自己创建的。返回结果包含每个套餐关联的额度中心主额度包详情。
62
62
  */
63
63
  DescribeTokenPlanList(req: DescribeTokenPlanListRequest, cb?: (error: string, rep: DescribeTokenPlanListResponse) => void): Promise<DescribeTokenPlanListResponse>;
64
+ /**
65
+ * 查询模型列表。
66
+
67
+ 支持按模型 ID、模型名称、模型能力等条件筛选,支持分页和排序。
68
+ */
69
+ DescribeModelList(req?: DescribeModelListRequest, cb?: (error: string, rep: DescribeModelListResponse) => void): Promise<DescribeModelListResponse>;
64
70
  /**
65
71
  * 根据 API 密钥 ID 或密钥值查询 API 密钥详情,返回明文密钥。ApiKeyId 和 ApiKey 至少需传入其一,优先使用 ApiKeyId。
66
72
  */
@@ -99,6 +99,14 @@ class Client extends abstract_client_1.AbstractClient {
99
99
  async DescribeTokenPlanList(req, cb) {
100
100
  return this.request("DescribeTokenPlanList", req, cb);
101
101
  }
102
+ /**
103
+ * 查询模型列表。
104
+
105
+ 支持按模型 ID、模型名称、模型能力等条件筛选,支持分页和排序。
106
+ */
107
+ async DescribeModelList(req, cb) {
108
+ return this.request("DescribeModelList", req, cb);
109
+ }
102
110
  /**
103
111
  * 根据 API 密钥 ID 或密钥值查询 API 密钥详情,返回明文密钥。ApiKeyId 和 ApiKey 至少需传入其一,优先使用 ApiKeyId。
104
112
  */
@@ -414,14 +414,9 @@ export interface TokenPlanApiKeyInfo {
414
414
  ProductType?: string;
415
415
  }
416
416
  /**
417
- * ModifyTokenPlanApiKey返回参数结构体
417
+ * DescribeModelList请求参数结构体
418
418
  */
419
- export interface ModifyTokenPlanApiKeyResponse {
420
- /**
421
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
422
- */
423
- RequestId?: string;
424
- }
419
+ export type DescribeModelListRequest = null;
425
420
  /**
426
421
  * DescribeApiKeyList请求参数结构体
427
422
  */
@@ -550,6 +545,15 @@ export interface TokenSummaryBillingItem {
550
545
  */
551
546
  TotalQty?: number;
552
547
  }
548
+ /**
549
+ * DescribeModelList返回参数结构体
550
+ */
551
+ export interface DescribeModelListResponse {
552
+ /**
553
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
554
+ */
555
+ RequestId?: string;
556
+ }
553
557
  /**
554
558
  * DescribeTokenPlanApiKeyUsageDetail返回参数结构体
555
559
  */
@@ -802,6 +806,15 @@ export interface DescribeTokenPlanApiKeyUsageDetailRequest {
802
806
  */
803
807
  ModelName?: string;
804
808
  }
809
+ /**
810
+ * ModifyTokenPlanApiKey返回参数结构体
811
+ */
812
+ export interface ModifyTokenPlanApiKeyResponse {
813
+ /**
814
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
815
+ */
816
+ RequestId?: string;
817
+ }
805
818
  /**
806
819
  * API 密钥详情
807
820
  */
@@ -9171,6 +9171,10 @@ export interface ArtifactRepairInfo {
9171
9171
  * CreateAigcAudioTask请求参数结构体
9172
9172
  */
9173
9173
  export interface CreateAigcAudioTaskRequest {
9174
+ /**
9175
+ * <p>点播应用 ID。从2023年12月25日起开通点播的客户,如访问点播应用中的资源(无论是默认应用还是新创建的应用),必须将该字段填写为应用 ID。</p>
9176
+ */
9177
+ SubAppId?: number;
9174
9178
  /**
9175
9179
  * <p>模型名称。</p>
9176
9180
  */
@@ -9180,7 +9184,7 @@ export interface CreateAigcAudioTaskRequest {
9180
9184
  */
9181
9185
  ModelVersion?: string;
9182
9186
  /**
9183
- * <p>指定场景,目前支持sfx(音效)。</p>
9187
+ * <p>指定场景,目前支持sfx(音效)、music(音乐)。</p>
9184
9188
  */
9185
9189
  SceneType?: string;
9186
9190
  /**
@@ -20565,6 +20569,10 @@ export interface DescribeAigcUsageDataRequest {
20565
20569
  * <p>API Key</p>
20566
20570
  */
20567
20571
  APIKey?: string;
20572
+ /**
20573
+ * <p>API Key</p>
20574
+ */
20575
+ APIKeys?: Array<string>;
20568
20576
  }
20569
20577
  /**
20570
20578
  * CreateVodDomain返回参数结构体
@@ -9174,25 +9174,29 @@ export interface SwitchDomainRulesResponse {
9174
9174
  */
9175
9175
  export interface QpsData {
9176
9176
  /**
9177
- * 弹性qps默认值
9177
+ * <p>弹性qps默认值</p>
9178
9178
  */
9179
9179
  ElasticBillingDefault?: number;
9180
9180
  /**
9181
- * 弹性qps最小值
9181
+ * <p>弹性qps最小值</p>
9182
9182
  */
9183
9183
  ElasticBillingMin?: number;
9184
9184
  /**
9185
- * 弹性qps最大值
9185
+ * <p>弹性qps最大值</p>
9186
9186
  */
9187
9187
  ElasticBillingMax?: number;
9188
9188
  /**
9189
- * 业务扩展包最大qps
9189
+ * <p>业务扩展包最大qps</p>
9190
9190
  */
9191
9191
  QPSExtendMax?: number;
9192
9192
  /**
9193
- * 境外业务扩展包最大qps
9193
+ * <p>境外业务扩展包最大qps</p>
9194
9194
  */
9195
9195
  QPSExtendIntlMax?: number;
9196
+ /**
9197
+ * <p>预付费/后付费QPS扩容比</p>
9198
+ */
9199
+ ElasticPrepaidRatio?: number;
9196
9200
  }
9197
9201
  /**
9198
9202
  * ModifyCustomRule返回参数结构体