tencentcloud-sdk-nodejs 4.1.250 → 4.1.252

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 (30) hide show
  1. package/es/common/sdk_version.js +1 -1
  2. package/es/services/dbdc/v20201029/dbdc_client.js +61 -7
  3. package/es/services/ess/v20201111/ess_client.js +5 -2
  4. package/es/services/mps/v20190612/mps_client.js +3 -0
  5. package/es/services/tcb/v20180608/tcb_client.js +9 -0
  6. package/package.json +1 -1
  7. package/tencentcloud/common/sdk_version.d.ts +1 -1
  8. package/tencentcloud/common/sdk_version.js +1 -1
  9. package/tencentcloud/services/ags/v20250920/ags_models.d.ts +4 -0
  10. package/tencentcloud/services/ckafka/v20190819/ckafka_models.d.ts +1 -1
  11. package/tencentcloud/services/clb/v20180317/clb_models.d.ts +1 -1
  12. package/tencentcloud/services/dbdc/v20201029/dbdc_client.d.ts +81 -9
  13. package/tencentcloud/services/dbdc/v20201029/dbdc_client.js +120 -12
  14. package/tencentcloud/services/dbdc/v20201029/dbdc_models.d.ts +1312 -382
  15. package/tencentcloud/services/emr/v20190103/emr_models.d.ts +22 -5
  16. package/tencentcloud/services/ess/v20201111/ess_client.d.ts +39 -9
  17. package/tencentcloud/services/ess/v20201111/ess_client.js +41 -9
  18. package/tencentcloud/services/ess/v20201111/ess_models.d.ts +144 -67
  19. package/tencentcloud/services/monitor/v20180724/monitor_client.d.ts +3 -3
  20. package/tencentcloud/services/monitor/v20180724/monitor_client.js +3 -3
  21. package/tencentcloud/services/monitor/v20180724/monitor_models.d.ts +52 -52
  22. package/tencentcloud/services/mps/v20190612/mps_client.d.ts +5 -1
  23. package/tencentcloud/services/mps/v20190612/mps_client.js +6 -0
  24. package/tencentcloud/services/mps/v20190612/mps_models.d.ts +34 -0
  25. package/tencentcloud/services/pts/v20210728/pts_models.d.ts +2 -2
  26. package/tencentcloud/services/tcb/v20180608/tcb_client.d.ts +13 -1
  27. package/tencentcloud/services/tcb/v20180608/tcb_client.js +18 -0
  28. package/tencentcloud/services/tcb/v20180608/tcb_models.d.ts +376 -106
  29. package/tencentcloud/services/tione/v20211111/tione_models.d.ts +4 -0
  30. package/tencentcloud/services/tokenhub/v20260322/tokenhub_models.d.ts +49 -0
@@ -1089,6 +1089,14 @@ export interface ApiKeyDetail {
1089
1089
  * 当Platform为maas时该字段为空
1090
1090
  */
1091
1091
  Creator?: string;
1092
+ /**
1093
+ * Token 限额信息多维度列表。未配置限额时不返回该字段。
1094
+ */
1095
+ QuotaSet?: Array<QuotaInfo>;
1096
+ /**
1097
+ * Token 限额状态。空字符串表示未配置任何限额包;active 表示已配置且当前可用;inactive 表示已配置但额度耗尽
1098
+ */
1099
+ QuotaStatus?: string;
1092
1100
  }
1093
1101
  /**
1094
1102
  * DescribeGlossaries返回参数结构体
@@ -1589,6 +1597,14 @@ export interface DescribeApiKeyResponse {
1589
1597
  * 当Platform为maas时该字段为空
1590
1598
  */
1591
1599
  Creator?: string;
1600
+ /**
1601
+ * Token 限额多维度信息。未配置限额时不返回该字段。
1602
+ */
1603
+ QuotaSet?: Array<QuotaInfo>;
1604
+ /**
1605
+ * Token 限额状态。空字符串表示未配置任何限额包;active 表示已配置且当前可用;inactive 表示已配置但额度耗尽
1606
+ */
1607
+ QuotaStatus?: string;
1592
1608
  /**
1593
1609
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1594
1610
  */
@@ -1697,3 +1713,36 @@ export interface DescribeTokenPlanApiKeySecretRequest {
1697
1713
  */
1698
1714
  ApiKeyId: string;
1699
1715
  }
1716
+ /**
1717
+ * Token 限额信息
1718
+ */
1719
+ export interface QuotaInfo {
1720
+ /**
1721
+ * 限额包 ID。
1722
+ */
1723
+ PkgId?: string;
1724
+ /**
1725
+ * 限额包状态。取值:1(正常)、3(已耗尽)、4(已销毁)。
1726
+ */
1727
+ Status?: number;
1728
+ /**
1729
+ * 限额周期。取值:d(按日)、m(按月)、lifetime(总额度,不重置)。
1730
+ */
1731
+ CycleUnit?: string;
1732
+ /**
1733
+ * 维度当期限额总量(Token 数)。使用字符串避免大数精度丢失。
1734
+ */
1735
+ CycleCredits?: string;
1736
+ /**
1737
+ * 维度当期已使用量(Token 数)。使用字符串避免大数精度丢失。
1738
+ */
1739
+ CycleUsed?: string;
1740
+ /**
1741
+ * 限额生效起始时间。
1742
+ */
1743
+ StartTime?: string;
1744
+ /**
1745
+ * 限额过期时间。
1746
+ */
1747
+ ExpireTime?: string;
1748
+ }