@ucloud-sdks/ucloud-sdk-js 0.2.23 → 0.2.24

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.
@@ -371,6 +371,10 @@ export interface DescribeKeyResponse {
371
371
  * 密钥元数据。
372
372
  */
373
373
  KeyMetadata: {
374
+ /**
375
+ * 密钥所属项目的对外别名,格式为 org-xxx。该值由项目数字 ID 解析得到,可能因项目别名查询失败而为空。
376
+ */
377
+ ProjectId?: string;
374
378
  /**
375
379
  * 密钥资源长 ID。
376
380
  */
@@ -419,6 +423,10 @@ export interface DescribeKeyResponse {
419
423
  * 计划删除时间,Unix 时间戳。
420
424
  */
421
425
  DeletionDate?: number;
426
+ /**
427
+ * 密钥所属组织的数字 ID,来源于密钥关联的资源交易记录。
428
+ */
429
+ OrganizationId?: number;
422
430
  };
423
431
  }
424
432
  /**
@@ -875,6 +883,10 @@ export interface ListKeysResponse {
875
883
  * 密钥信息数组,每项为 DEK/ListKeys item。
876
884
  */
877
885
  Data: {
886
+ /**
887
+ * 密钥所属项目的对外别名,格式为 org-xxx。该值由项目数字 ID 解析得到,可能因项目别名查询失败而为空。
888
+ */
889
+ ProjectId?: string;
878
890
  /**
879
891
  * 对外主密钥 ID(ukms_key_info.key_id)。
880
892
  */
@@ -927,6 +939,10 @@ export interface ListKeysResponse {
927
939
  * 下次自动轮转时间(Unix 时间戳,秒);仅在已开启自动轮转时返回。
928
940
  */
929
941
  NextRotationDate?: number;
942
+ /**
943
+ * 密钥所属组织的数字 ID,来源于密钥关联的资源交易记录。
944
+ */
945
+ OrganizationId?: number;
930
946
  }[];
931
947
  /**
932
948
  * 符合条件的总数,不同于 Limit。
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ucloud-sdks/ucloud-sdk-js",
3
3
  "description": "ucloud-sdk-js",
4
- "version": "0.2.23",
4
+ "version": "0.2.24",
5
5
  "author": "oas@ucloud.cn",
6
6
  "license": "MIT",
7
7
  "private": false,