@ucloud-sdks/ucloud-sdk-js 0.2.22 → 0.2.23
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.
- package/lib/services/ukms/index.d.ts +48 -12
- package/package.json +1 -1
|
@@ -791,6 +791,18 @@ export interface ListAliasesRequest {
|
|
|
791
791
|
* 返回数据长度。
|
|
792
792
|
*/
|
|
793
793
|
Limit?: number;
|
|
794
|
+
/**
|
|
795
|
+
* 按完整别名(含 alias/ 前缀)进行子串模糊匹配
|
|
796
|
+
*/
|
|
797
|
+
Alias?: string;
|
|
798
|
+
/**
|
|
799
|
+
* 排序字段
|
|
800
|
+
*/
|
|
801
|
+
OrderBy?: string;
|
|
802
|
+
/**
|
|
803
|
+
* 排序方向,默认 desc
|
|
804
|
+
*/
|
|
805
|
+
Sort?: string;
|
|
794
806
|
}
|
|
795
807
|
/**
|
|
796
808
|
* ListAliases - 获取 UKMS 实例下的别名列表。
|
|
@@ -842,6 +854,18 @@ export interface ListKeysRequest {
|
|
|
842
854
|
* 返回数据长度。最大1000
|
|
843
855
|
*/
|
|
844
856
|
Limit?: number;
|
|
857
|
+
/**
|
|
858
|
+
* 状态筛选:Active、Deactivated、PendingDeletion
|
|
859
|
+
*/
|
|
860
|
+
Status?: string;
|
|
861
|
+
/**
|
|
862
|
+
* 排序字段
|
|
863
|
+
*/
|
|
864
|
+
OrderBy?: string;
|
|
865
|
+
/**
|
|
866
|
+
* 排序方向,默认 desc
|
|
867
|
+
*/
|
|
868
|
+
Sort?: string;
|
|
845
869
|
}
|
|
846
870
|
/**
|
|
847
871
|
* ListKeys - 查询用户的主密钥信息列表。
|
|
@@ -925,6 +949,18 @@ export interface ListScheduleDeletionKeysRequest {
|
|
|
925
949
|
* 列表排序方式, 可选项: "-created_time", "created_time","plan_delete_time","-plan_delete_time";默认按-plan_delete_time 计划删除时间升序返回
|
|
926
950
|
*/
|
|
927
951
|
OrderBy?: string;
|
|
952
|
+
/**
|
|
953
|
+
* 按密钥 ID 或别名模糊过滤
|
|
954
|
+
*/
|
|
955
|
+
Alias?: string;
|
|
956
|
+
/**
|
|
957
|
+
* UKMS 实例资源 ID
|
|
958
|
+
*/
|
|
959
|
+
ResourceId?: string;
|
|
960
|
+
/**
|
|
961
|
+
* 排序方向,默认 desc
|
|
962
|
+
*/
|
|
963
|
+
Sort?: string;
|
|
928
964
|
}
|
|
929
965
|
/**
|
|
930
966
|
* ListScheduleDeletionKeys - 获取计划删除密钥列表,调用ScheduleKeyDeletion命令后进入此列表, 默认30天后正式删除。正式删除前可调用CancelScheduleKeyDeletion恢复
|
|
@@ -939,29 +975,29 @@ export interface ListScheduleDeletionKeysResponse {
|
|
|
939
975
|
*/
|
|
940
976
|
KeyId: string;
|
|
941
977
|
/**
|
|
942
|
-
*
|
|
978
|
+
* 密钥类型,如RSA、EC、DES
|
|
943
979
|
*/
|
|
944
|
-
|
|
980
|
+
KeyType: string;
|
|
945
981
|
/**
|
|
946
|
-
*
|
|
982
|
+
* 创建时间
|
|
947
983
|
*/
|
|
948
|
-
|
|
984
|
+
CreatedTime: number;
|
|
949
985
|
/**
|
|
950
|
-
*
|
|
986
|
+
* 别名,与CMK一一对应
|
|
951
987
|
*/
|
|
952
|
-
|
|
988
|
+
Alias: string;
|
|
953
989
|
/**
|
|
954
|
-
*
|
|
990
|
+
* 密钥状态 "Pre-Active", "Active", "Deactivated", "Compromised", "Destroyed", "Destroyed Compromised"
|
|
955
991
|
*/
|
|
956
|
-
|
|
992
|
+
Status: string;
|
|
957
993
|
/**
|
|
958
|
-
*
|
|
994
|
+
* 更新时间
|
|
959
995
|
*/
|
|
960
|
-
|
|
996
|
+
UpdateTime: number;
|
|
961
997
|
/**
|
|
962
|
-
*
|
|
998
|
+
* 对密钥的描述说明
|
|
963
999
|
*/
|
|
964
|
-
|
|
1000
|
+
Description?: string;
|
|
965
1001
|
/**
|
|
966
1002
|
* 计划删除时间 时间戳
|
|
967
1003
|
*/
|