@ucloud-sdks/ucloud-sdk-js 0.2.23 → 0.2.25
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/ufile/index.d.ts +1664 -88
- package/lib/services/ufile/index.js +252 -0
- package/lib/services/ukms/index.d.ts +18 -2
- package/package.json +1 -1
|
@@ -12,6 +12,42 @@ class UFileClient extends client_1.default {
|
|
|
12
12
|
constructor({ config, credential, }) {
|
|
13
13
|
super({ config, credential });
|
|
14
14
|
}
|
|
15
|
+
/**
|
|
16
|
+
* AddCORSRule - 添加跨域规则
|
|
17
|
+
*
|
|
18
|
+
* See also: https://docs.ucloud.cn/api/ufile-api/add_cors_rule
|
|
19
|
+
*/
|
|
20
|
+
addCORSRule(request) {
|
|
21
|
+
const args = Object.assign({ Action: 'AddCORSRule' }, (request || {}));
|
|
22
|
+
return this.invoke(new request_1.default(args)).then((resp) => resp.toObject());
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* AddUFileSSLCert - 给指定域名添加证书
|
|
26
|
+
*
|
|
27
|
+
* See also: https://docs.ucloud.cn/api/ufile-api/add_ufile_ssl_cert
|
|
28
|
+
*/
|
|
29
|
+
addUFileSSLCert(request) {
|
|
30
|
+
const args = Object.assign({ Action: 'AddUFileSSLCert' }, (request || {}));
|
|
31
|
+
return this.invoke(new request_1.default(args)).then((resp) => resp.toObject());
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* BindBucketDomain - 绑定自定义域名
|
|
35
|
+
*
|
|
36
|
+
* See also: https://docs.ucloud.cn/api/ufile-api/bind_bucket_domain
|
|
37
|
+
*/
|
|
38
|
+
bindBucketDomain(request) {
|
|
39
|
+
const args = Object.assign({ Action: 'BindBucketDomain' }, (request || {}));
|
|
40
|
+
return this.invoke(new request_1.default(args)).then((resp) => resp.toObject());
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* BuyUFilePkg - 购买流量包或存储包
|
|
44
|
+
*
|
|
45
|
+
* See also: https://docs.ucloud.cn/api/ufile-api/buy_ufile_pkg
|
|
46
|
+
*/
|
|
47
|
+
buyUFilePkg(request) {
|
|
48
|
+
const args = Object.assign({ Action: 'BuyUFilePkg' }, (request || {}));
|
|
49
|
+
return this.invoke(new request_1.default(args)).then((resp) => resp.toObject());
|
|
50
|
+
}
|
|
15
51
|
/**
|
|
16
52
|
* CreateBucket - 创建Bucket
|
|
17
53
|
*
|
|
@@ -39,6 +75,15 @@ class UFileClient extends client_1.default {
|
|
|
39
75
|
const args = Object.assign({ Action: 'CreateUFileToken' }, (request || {}));
|
|
40
76
|
return this.invoke(new request_1.default(args)).then((resp) => resp.toObject());
|
|
41
77
|
}
|
|
78
|
+
/**
|
|
79
|
+
* CreateUdsRule - 针对对象存储的文件,进行自动触发解压。
|
|
80
|
+
*
|
|
81
|
+
* See also: https://docs.ucloud.cn/api/ufile-api/create_uds_rule
|
|
82
|
+
*/
|
|
83
|
+
createUdsRule(request) {
|
|
84
|
+
const args = Object.assign({ Action: 'CreateUdsRule' }, (request || {}));
|
|
85
|
+
return this.invoke(new request_1.default(args)).then((resp) => resp.toObject());
|
|
86
|
+
}
|
|
42
87
|
/**
|
|
43
88
|
* DeleteBucket - 删除Bucket
|
|
44
89
|
*
|
|
@@ -48,6 +93,15 @@ class UFileClient extends client_1.default {
|
|
|
48
93
|
const args = Object.assign({ Action: 'DeleteBucket' }, (request || {}));
|
|
49
94
|
return this.invoke(new request_1.default(args)).then((resp) => resp.toObject());
|
|
50
95
|
}
|
|
96
|
+
/**
|
|
97
|
+
* DeleteCORSRule - 删除跨域规则
|
|
98
|
+
*
|
|
99
|
+
* See also: https://docs.ucloud.cn/api/ufile-api/delete_cors_rule
|
|
100
|
+
*/
|
|
101
|
+
deleteCORSRule(request) {
|
|
102
|
+
const args = Object.assign({ Action: 'DeleteCORSRule' }, (request || {}));
|
|
103
|
+
return this.invoke(new request_1.default(args)).then((resp) => resp.toObject());
|
|
104
|
+
}
|
|
51
105
|
/**
|
|
52
106
|
* DeleteUFileLifeCycle - 删除生命周期管理
|
|
53
107
|
*
|
|
@@ -57,6 +111,24 @@ class UFileClient extends client_1.default {
|
|
|
57
111
|
const args = Object.assign({ Action: 'DeleteUFileLifeCycle' }, (request || {}));
|
|
58
112
|
return this.invoke(new request_1.default(args)).then((resp) => resp.toObject());
|
|
59
113
|
}
|
|
114
|
+
/**
|
|
115
|
+
* DeleteUFilePkg - 删除资源包(退费)
|
|
116
|
+
*
|
|
117
|
+
* See also: https://docs.ucloud.cn/api/ufile-api/delete_ufile_pkg
|
|
118
|
+
*/
|
|
119
|
+
deleteUFilePkg(request) {
|
|
120
|
+
const args = Object.assign({ Action: 'DeleteUFilePkg' }, (request || {}));
|
|
121
|
+
return this.invoke(new request_1.default(args)).then((resp) => resp.toObject());
|
|
122
|
+
}
|
|
123
|
+
/**
|
|
124
|
+
* DeleteUFileSSLCert - 删除指定域名添加证书
|
|
125
|
+
*
|
|
126
|
+
* See also: https://docs.ucloud.cn/api/ufile-api/delete_ufile_ssl_cert
|
|
127
|
+
*/
|
|
128
|
+
deleteUFileSSLCert(request) {
|
|
129
|
+
const args = Object.assign({ Action: 'DeleteUFileSSLCert' }, (request || {}));
|
|
130
|
+
return this.invoke(new request_1.default(args)).then((resp) => resp.toObject());
|
|
131
|
+
}
|
|
60
132
|
/**
|
|
61
133
|
* DeleteUFileToken - 删除令牌
|
|
62
134
|
*
|
|
@@ -75,6 +147,24 @@ class UFileClient extends client_1.default {
|
|
|
75
147
|
const args = Object.assign({ Action: 'DescribeBucket' }, (request || {}));
|
|
76
148
|
return this.invoke(new request_1.default(args)).then((resp) => resp.toObject());
|
|
77
149
|
}
|
|
150
|
+
/**
|
|
151
|
+
* DescribeCORSRule - 获取跨域规则信息
|
|
152
|
+
*
|
|
153
|
+
* See also: https://docs.ucloud.cn/api/ufile-api/describe_cors_rule
|
|
154
|
+
*/
|
|
155
|
+
describeCORSRule(request) {
|
|
156
|
+
const args = Object.assign({ Action: 'DescribeCORSRule' }, (request || {}));
|
|
157
|
+
return this.invoke(new request_1.default(args)).then((resp) => resp.toObject());
|
|
158
|
+
}
|
|
159
|
+
/**
|
|
160
|
+
* DescribeUFileAvailablePkg - 查询可购买的资源包列表
|
|
161
|
+
*
|
|
162
|
+
* See also: https://docs.ucloud.cn/api/ufile-api/describe_ufile_available_pkg
|
|
163
|
+
*/
|
|
164
|
+
describeUFileAvailablePkg(request) {
|
|
165
|
+
const args = Object.assign({ Action: 'DescribeUFileAvailablePkg' }, (request || {}));
|
|
166
|
+
return this.invoke(new request_1.default(args)).then((resp) => resp.toObject());
|
|
167
|
+
}
|
|
78
168
|
/**
|
|
79
169
|
* DescribeUFileLifeCycle - 获取生命周期信息
|
|
80
170
|
*
|
|
@@ -84,6 +174,42 @@ class UFileClient extends client_1.default {
|
|
|
84
174
|
const args = Object.assign({ Action: 'DescribeUFileLifeCycle' }, (request || {}));
|
|
85
175
|
return this.invoke(new request_1.default(args)).then((resp) => resp.toObject());
|
|
86
176
|
}
|
|
177
|
+
/**
|
|
178
|
+
* DescribeUFilePkg - 查询已购买的资源包列表
|
|
179
|
+
*
|
|
180
|
+
* See also: https://docs.ucloud.cn/api/ufile-api/describe_ufile_pkg
|
|
181
|
+
*/
|
|
182
|
+
describeUFilePkg(request) {
|
|
183
|
+
const args = Object.assign({ Action: 'DescribeUFilePkg' }, (request || {}));
|
|
184
|
+
return this.invoke(new request_1.default(args)).then((resp) => resp.toObject());
|
|
185
|
+
}
|
|
186
|
+
/**
|
|
187
|
+
* DescribeUFilePkgUsage - 查询资源包使用明细
|
|
188
|
+
*
|
|
189
|
+
* See also: https://docs.ucloud.cn/api/ufile-api/describe_ufile_pkg_usage
|
|
190
|
+
*/
|
|
191
|
+
describeUFilePkgUsage(request) {
|
|
192
|
+
const args = Object.assign({ Action: 'DescribeUFilePkgUsage' }, (request || {}));
|
|
193
|
+
return this.invoke(new request_1.default(args)).then((resp) => resp.toObject());
|
|
194
|
+
}
|
|
195
|
+
/**
|
|
196
|
+
* DescribeUFileReferer - 对象存储防盗链列表
|
|
197
|
+
*
|
|
198
|
+
* See also: https://docs.ucloud.cn/api/ufile-api/describe_ufile_referer
|
|
199
|
+
*/
|
|
200
|
+
describeUFileReferer(request) {
|
|
201
|
+
const args = Object.assign({ Action: 'DescribeUFileReferer' }, (request || {}));
|
|
202
|
+
return this.invoke(new request_1.default(args)).then((resp) => resp.toObject());
|
|
203
|
+
}
|
|
204
|
+
/**
|
|
205
|
+
* DescribeUFileSSLCert - 查询指定存储桶所有证书
|
|
206
|
+
*
|
|
207
|
+
* See also: https://docs.ucloud.cn/api/ufile-api/describe_ufile_ssl_cert
|
|
208
|
+
*/
|
|
209
|
+
describeUFileSSLCert(request) {
|
|
210
|
+
const args = Object.assign({ Action: 'DescribeUFileSSLCert' }, (request || {}));
|
|
211
|
+
return this.invoke(new request_1.default(args)).then((resp) => resp.toObject());
|
|
212
|
+
}
|
|
87
213
|
/**
|
|
88
214
|
* DescribeUFileToken - 获取令牌信息
|
|
89
215
|
*
|
|
@@ -93,6 +219,51 @@ class UFileClient extends client_1.default {
|
|
|
93
219
|
const args = Object.assign({ Action: 'DescribeUFileToken' }, (request || {}));
|
|
94
220
|
return this.invoke(new request_1.default(args)).then((resp) => resp.toObject());
|
|
95
221
|
}
|
|
222
|
+
/**
|
|
223
|
+
* DescribeUdsRule - 针对解压缩规则进行查询
|
|
224
|
+
*
|
|
225
|
+
* See also: https://docs.ucloud.cn/api/ufile-api/describe_uds_rule
|
|
226
|
+
*/
|
|
227
|
+
describeUdsRule(request) {
|
|
228
|
+
const args = Object.assign({ Action: 'DescribeUdsRule' }, (request || {}));
|
|
229
|
+
return this.invoke(new request_1.default(args)).then((resp) => resp.toObject());
|
|
230
|
+
}
|
|
231
|
+
/**
|
|
232
|
+
* GetBucketQuota - 获取bucket配额
|
|
233
|
+
*
|
|
234
|
+
* See also: https://docs.ucloud.cn/api/ufile-api/get_bucket_quota
|
|
235
|
+
*/
|
|
236
|
+
getBucketQuota(request) {
|
|
237
|
+
const args = Object.assign({ Action: 'GetBucketQuota' }, (request || {}));
|
|
238
|
+
return this.invoke(new request_1.default(args)).then((resp) => resp.toObject());
|
|
239
|
+
}
|
|
240
|
+
/**
|
|
241
|
+
* GetBucketStaticPageRule - 获取bucket静态网页配置
|
|
242
|
+
*
|
|
243
|
+
* See also: https://docs.ucloud.cn/api/ufile-api/get_bucket_static_page_rule
|
|
244
|
+
*/
|
|
245
|
+
getBucketStaticPageRule(request) {
|
|
246
|
+
const args = Object.assign({ Action: 'GetBucketStaticPageRule' }, (request || {}));
|
|
247
|
+
return this.invoke(new request_1.default(args)).then((resp) => resp.toObject());
|
|
248
|
+
}
|
|
249
|
+
/**
|
|
250
|
+
* GetProjectRegionQuota - 获取项目地域配额
|
|
251
|
+
*
|
|
252
|
+
* See also: https://docs.ucloud.cn/api/ufile-api/get_project_region_quota
|
|
253
|
+
*/
|
|
254
|
+
getProjectRegionQuota(request) {
|
|
255
|
+
const args = Object.assign({ Action: 'GetProjectRegionQuota' }, (request || {}));
|
|
256
|
+
return this.invoke(new request_1.default(args)).then((resp) => resp.toObject());
|
|
257
|
+
}
|
|
258
|
+
/**
|
|
259
|
+
* GetUFileDailyBill - 获取bucket每日账单
|
|
260
|
+
*
|
|
261
|
+
* See also: https://docs.ucloud.cn/api/ufile-api/get_ufile_daily_bill
|
|
262
|
+
*/
|
|
263
|
+
getUFileDailyBill(request) {
|
|
264
|
+
const args = Object.assign({ Action: 'GetUFileDailyBill' }, (request || {}));
|
|
265
|
+
return this.invoke(new request_1.default(args)).then((resp) => resp.toObject());
|
|
266
|
+
}
|
|
96
267
|
/**
|
|
97
268
|
* GetUFileDailyReport - 查看日消费报表
|
|
98
269
|
*
|
|
@@ -102,6 +273,24 @@ class UFileClient extends client_1.default {
|
|
|
102
273
|
const args = Object.assign({ Action: 'GetUFileDailyReport' }, (request || {}));
|
|
103
274
|
return this.invoke(new request_1.default(args)).then((resp) => resp.toObject());
|
|
104
275
|
}
|
|
276
|
+
/**
|
|
277
|
+
* GetUFileMonthlyBill - 获取bucket月度账单
|
|
278
|
+
*
|
|
279
|
+
* See also: https://docs.ucloud.cn/api/ufile-api/get_ufile_monthly_bill
|
|
280
|
+
*/
|
|
281
|
+
getUFileMonthlyBill(request) {
|
|
282
|
+
const args = Object.assign({ Action: 'GetUFileMonthlyBill' }, (request || {}));
|
|
283
|
+
return this.invoke(new request_1.default(args)).then((resp) => resp.toObject());
|
|
284
|
+
}
|
|
285
|
+
/**
|
|
286
|
+
* GetUFilePkgPrice - 获取对资源进行新购、续费、升级等操作的价格
|
|
287
|
+
*
|
|
288
|
+
* See also: https://docs.ucloud.cn/api/ufile-api/get_ufile_pkg_price
|
|
289
|
+
*/
|
|
290
|
+
getUFilePkgPrice(request) {
|
|
291
|
+
const args = Object.assign({ Action: 'GetUFilePkgPrice' }, (request || {}));
|
|
292
|
+
return this.invoke(new request_1.default(args)).then((resp) => resp.toObject());
|
|
293
|
+
}
|
|
105
294
|
/**
|
|
106
295
|
* GetUFileQuota - 查看配额状态
|
|
107
296
|
*
|
|
@@ -138,6 +327,33 @@ class UFileClient extends client_1.default {
|
|
|
138
327
|
const args = Object.assign({ Action: 'GetUFileReport' }, (request || {}));
|
|
139
328
|
return this.invoke(new request_1.default(args)).then((resp) => resp.toObject());
|
|
140
329
|
}
|
|
330
|
+
/**
|
|
331
|
+
* RenewUFilePkg - 资源包续费
|
|
332
|
+
*
|
|
333
|
+
* See also: https://docs.ucloud.cn/api/ufile-api/renew_ufile_pkg
|
|
334
|
+
*/
|
|
335
|
+
renewUFilePkg(request) {
|
|
336
|
+
const args = Object.assign({ Action: 'RenewUFilePkg' }, (request || {}));
|
|
337
|
+
return this.invoke(new request_1.default(args)).then((resp) => resp.toObject());
|
|
338
|
+
}
|
|
339
|
+
/**
|
|
340
|
+
* SetBucketQuota - 设置bucket配额
|
|
341
|
+
*
|
|
342
|
+
* See also: https://docs.ucloud.cn/api/ufile-api/set_bucket_quota
|
|
343
|
+
*/
|
|
344
|
+
setBucketQuota(request) {
|
|
345
|
+
const args = Object.assign({ Action: 'SetBucketQuota' }, (request || {}));
|
|
346
|
+
return this.invoke(new request_1.default(args)).then((resp) => resp.toObject());
|
|
347
|
+
}
|
|
348
|
+
/**
|
|
349
|
+
* SetProjectRegionQuota - 设置项目地域配额
|
|
350
|
+
*
|
|
351
|
+
* See also: https://docs.ucloud.cn/api/ufile-api/set_project_region_quota
|
|
352
|
+
*/
|
|
353
|
+
setProjectRegionQuota(request) {
|
|
354
|
+
const args = Object.assign({ Action: 'SetProjectRegionQuota' }, (request || {}));
|
|
355
|
+
return this.invoke(new request_1.default(args)).then((resp) => resp.toObject());
|
|
356
|
+
}
|
|
141
357
|
/**
|
|
142
358
|
* SetUFileReferer - 设置对象存储防盗链
|
|
143
359
|
*
|
|
@@ -156,6 +372,24 @@ class UFileClient extends client_1.default {
|
|
|
156
372
|
const args = Object.assign({ Action: 'UpdateBucket' }, (request || {}));
|
|
157
373
|
return this.invoke(new request_1.default(args)).then((resp) => resp.toObject());
|
|
158
374
|
}
|
|
375
|
+
/**
|
|
376
|
+
* UpdateBucketStaticPageRule - 修改bucket静态网页配置
|
|
377
|
+
*
|
|
378
|
+
* See also: https://docs.ucloud.cn/api/ufile-api/update_bucket_static_page_rule
|
|
379
|
+
*/
|
|
380
|
+
updateBucketStaticPageRule(request) {
|
|
381
|
+
const args = Object.assign({ Action: 'UpdateBucketStaticPageRule' }, (request || {}));
|
|
382
|
+
return this.invoke(new request_1.default(args)).then((resp) => resp.toObject());
|
|
383
|
+
}
|
|
384
|
+
/**
|
|
385
|
+
* UpdateCORSRule - 更新跨域规则
|
|
386
|
+
*
|
|
387
|
+
* See also: https://docs.ucloud.cn/api/ufile-api/update_cors_rule
|
|
388
|
+
*/
|
|
389
|
+
updateCORSRule(request) {
|
|
390
|
+
const args = Object.assign({ Action: 'UpdateCORSRule' }, (request || {}));
|
|
391
|
+
return this.invoke(new request_1.default(args)).then((resp) => resp.toObject());
|
|
392
|
+
}
|
|
159
393
|
/**
|
|
160
394
|
* UpdateUFileLifeCycle - 更新生命周期管理
|
|
161
395
|
*
|
|
@@ -165,6 +399,15 @@ class UFileClient extends client_1.default {
|
|
|
165
399
|
const args = Object.assign({ Action: 'UpdateUFileLifeCycle' }, (request || {}));
|
|
166
400
|
return this.invoke(new request_1.default(args)).then((resp) => resp.toObject());
|
|
167
401
|
}
|
|
402
|
+
/**
|
|
403
|
+
* UpdateUFileSSLCert - 更新指定域名证书
|
|
404
|
+
*
|
|
405
|
+
* See also: https://docs.ucloud.cn/api/ufile-api/update_ufile_ssl_cert
|
|
406
|
+
*/
|
|
407
|
+
updateUFileSSLCert(request) {
|
|
408
|
+
const args = Object.assign({ Action: 'UpdateUFileSSLCert' }, (request || {}));
|
|
409
|
+
return this.invoke(new request_1.default(args)).then((resp) => resp.toObject());
|
|
410
|
+
}
|
|
168
411
|
/**
|
|
169
412
|
* UpdateUFileToken - 更新令牌的操作权限,可操作key的前缀,可操作bucket和令牌超时时间点
|
|
170
413
|
*
|
|
@@ -174,5 +417,14 @@ class UFileClient extends client_1.default {
|
|
|
174
417
|
const args = Object.assign({ Action: 'UpdateUFileToken' }, (request || {}));
|
|
175
418
|
return this.invoke(new request_1.default(args)).then((resp) => resp.toObject());
|
|
176
419
|
}
|
|
420
|
+
/**
|
|
421
|
+
* UpdateUdsRule - 针对对象存储的文件,进行自动触发解压。
|
|
422
|
+
*
|
|
423
|
+
* See also: https://docs.ucloud.cn/api/ufile-api/update_uds_rule
|
|
424
|
+
*/
|
|
425
|
+
updateUdsRule(request) {
|
|
426
|
+
const args = Object.assign({ Action: 'UpdateUdsRule' }, (request || {}));
|
|
427
|
+
return this.invoke(new request_1.default(args)).then((resp) => resp.toObject());
|
|
428
|
+
}
|
|
177
429
|
}
|
|
178
430
|
exports.default = UFileClient;
|
|
@@ -307,7 +307,7 @@ export interface DecryptRequest {
|
|
|
307
307
|
*/
|
|
308
308
|
KeyId?: string;
|
|
309
309
|
/**
|
|
310
|
-
* 加密上下文,JSON Object
|
|
310
|
+
* 加密上下文,JSON Object。该参数内容会记录在日志中,请勿传入密码、密钥、令牌等敏感信息。
|
|
311
311
|
*/
|
|
312
312
|
EncryptionContext?: string;
|
|
313
313
|
/**
|
|
@@ -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
|
/**
|
|
@@ -510,7 +518,7 @@ export interface EncryptRequest {
|
|
|
510
518
|
*/
|
|
511
519
|
Plaintext: string;
|
|
512
520
|
/**
|
|
513
|
-
* 加密上下文,JSON Object
|
|
521
|
+
* 加密上下文,JSON Object。该参数内容会记录在日志中,请勿传入密码、密钥、令牌等敏感信息。
|
|
514
522
|
*/
|
|
515
523
|
EncryptionContext?: string;
|
|
516
524
|
/**
|
|
@@ -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。
|