tencentcloud-sdk-nodejs 4.0.361 → 4.0.362

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 (44) hide show
  1. package/CHANGELOG.md +287 -0
  2. package/SERVICE_CHANGELOG.md +445 -95
  3. package/package.json +1 -1
  4. package/products.md +10 -10
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/antiddos/v20200309/antiddos_client.ts +3 -1
  7. package/src/services/antiddos/v20200309/antiddos_models.ts +68 -2
  8. package/src/services/ciam/v20220331/ciam_client.ts +116 -1
  9. package/src/services/ciam/v20220331/ciam_models.ts +653 -0
  10. package/src/services/cii/v20210408/cii_client.ts +3 -0
  11. package/src/services/cii/v20210408/cii_models.ts +61 -0
  12. package/src/services/cvm/v20170312/cvm_models.ts +18 -8
  13. package/src/services/dlc/v20210125/dlc_client.ts +13 -0
  14. package/src/services/dlc/v20210125/dlc_models.ts +93 -6
  15. package/src/services/eis/v20210601/eis_models.ts +39 -0
  16. package/src/services/live/v20180801/live_client.ts +1 -1
  17. package/src/services/live/v20180801/live_models.ts +1 -1
  18. package/src/services/redis/v20180412/redis_models.ts +10 -0
  19. package/src/services/teo/v20220106/teo_client.ts +642 -398
  20. package/src/services/teo/v20220106/teo_models.ts +2970 -749
  21. package/tencentcloud/common/sdk_version.d.ts +1 -1
  22. package/tencentcloud/common/sdk_version.js +1 -1
  23. package/tencentcloud/services/antiddos/v20200309/antiddos_client.d.ts +1 -1
  24. package/tencentcloud/services/antiddos/v20200309/antiddos_client.js +1 -1
  25. package/tencentcloud/services/antiddos/v20200309/antiddos_models.d.ts +57 -2
  26. package/tencentcloud/services/ciam/v20220331/ciam_client.d.ts +37 -1
  27. package/tencentcloud/services/ciam/v20220331/ciam_client.js +54 -0
  28. package/tencentcloud/services/ciam/v20220331/ciam_models.d.ts +553 -0
  29. package/tencentcloud/services/cii/v20210408/cii_models.d.ts +52 -0
  30. package/tencentcloud/services/cvm/v20170312/cvm_models.d.ts +17 -8
  31. package/tencentcloud/services/dlc/v20210125/dlc_client.d.ts +5 -1
  32. package/tencentcloud/services/dlc/v20210125/dlc_client.js +6 -0
  33. package/tencentcloud/services/dlc/v20210125/dlc_models.d.ts +80 -6
  34. package/tencentcloud/services/eis/v20210601/eis_models.d.ts +32 -0
  35. package/tencentcloud/services/live/v20180801/live_client.d.ts +1 -1
  36. package/tencentcloud/services/live/v20180801/live_client.js +1 -1
  37. package/tencentcloud/services/live/v20180801/live_models.d.ts +1 -1
  38. package/tencentcloud/services/redis/v20180412/redis_models.d.ts +8 -0
  39. package/tencentcloud/services/teo/v20220106/teo_client.d.ts +197 -125
  40. package/tencentcloud/services/teo/v20220106/teo_client.js +294 -186
  41. package/tencentcloud/services/teo/v20220106/teo_models.d.ts +2446 -575
  42. package/test/ciam.v20220331.test.js +90 -0
  43. package/test/dlc.v20210125.test.js +10 -0
  44. package/test/teo.v20220106.test.js +304 -124
@@ -1,3 +1,103 @@
1
+ /**
2
+ * UpdateUser请求参数结构体
3
+ */
4
+ export interface UpdateUserRequest {
5
+ /**
6
+ * 用户ID
7
+ */
8
+ UserId: string;
9
+ /**
10
+ * 用户目录ID
11
+ */
12
+ UserStoreId: string;
13
+ /**
14
+ * 用户名称
15
+ */
16
+ UserName?: string;
17
+ /**
18
+ * 手机号码
19
+ */
20
+ PhoneNumber?: string;
21
+ /**
22
+ * 邮箱
23
+ */
24
+ Email?: string;
25
+ /**
26
+ * 昵称
27
+ */
28
+ Nickname?: string;
29
+ /**
30
+ * 地址
31
+ */
32
+ Address?: string;
33
+ /**
34
+ * 用户组
35
+ */
36
+ UserGroup?: Array<string>;
37
+ /**
38
+ * 生日
39
+ */
40
+ Birthdate?: number;
41
+ /**
42
+ * 自定义属性
43
+ */
44
+ CustomizationAttributes?: Array<MemberMap>;
45
+ }
46
+ /**
47
+ * DescribeUserById请求参数结构体
48
+ */
49
+ export interface DescribeUserByIdRequest {
50
+ /**
51
+ * 用户目录ID
52
+ */
53
+ UserStoreId: string;
54
+ /**
55
+ * 用户ID
56
+ */
57
+ UserId: string;
58
+ }
59
+ /**
60
+ * ListUser请求参数结构体
61
+ */
62
+ export interface ListUserRequest {
63
+ /**
64
+ * 用户目录ID
65
+ */
66
+ UserStoreId: string;
67
+ /**
68
+ * 分页数据
69
+ */
70
+ Pageable: Pageable;
71
+ /**
72
+ * Key可选值为condition、userGroupId
73
+
74
+ <li> **condition** </li> Values = 查询条件,用户ID,用户名称,手机或邮箱
75
+ <li> **userGroupId** </li> Values = 用户组ID
76
+ */
77
+ Filters?: Array<Filter>;
78
+ }
79
+ /**
80
+ * DeleteUsers请求参数结构体
81
+ */
82
+ export interface DeleteUsersRequest {
83
+ /**
84
+ * 用户目录ID
85
+ */
86
+ UserStoreId: string;
87
+ /**
88
+ * 用户ID数组
89
+ */
90
+ UserIds: Array<string>;
91
+ }
92
+ /**
93
+ * UpdateUserStatus返回参数结构体
94
+ */
95
+ export interface UpdateUserStatusResponse {
96
+ /**
97
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
98
+ */
99
+ RequestId?: string;
100
+ }
1
101
  /**
2
102
  * ResetPassword请求参数结构体
3
103
  */
@@ -11,6 +111,260 @@ export interface ResetPasswordRequest {
11
111
  */
12
112
  UserStoreId: string;
13
113
  }
114
+ /**
115
+ * CreateUser返回参数结构体
116
+ */
117
+ export interface CreateUserResponse {
118
+ /**
119
+ * 创建的用户信息
120
+ 注意:此字段可能返回 null,表示取不到有效值。
121
+ */
122
+ User: User;
123
+ /**
124
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
125
+ */
126
+ RequestId?: string;
127
+ }
128
+ /**
129
+ * SetPassword返回参数结构体
130
+ */
131
+ export interface SetPasswordResponse {
132
+ /**
133
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
134
+ */
135
+ RequestId?: string;
136
+ }
137
+ /**
138
+ * ListUserByProperty返回参数结构体
139
+ */
140
+ export interface ListUserByPropertyResponse {
141
+ /**
142
+ * 用户列表
143
+ 注意:此字段可能返回 null,表示取不到有效值。
144
+ */
145
+ Users: Array<User>;
146
+ /**
147
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
148
+ */
149
+ RequestId?: string;
150
+ }
151
+ /**
152
+ * DescribeUserById返回参数结构体
153
+ */
154
+ export interface DescribeUserByIdResponse {
155
+ /**
156
+ * 用户信息
157
+ 注意:此字段可能返回 null,表示取不到有效值。
158
+ */
159
+ User: User;
160
+ /**
161
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
162
+ */
163
+ RequestId?: string;
164
+ }
165
+ /**
166
+ * DeleteUsers返回参数结构体
167
+ */
168
+ export interface DeleteUsersResponse {
169
+ /**
170
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
171
+ */
172
+ RequestId?: string;
173
+ }
174
+ /**
175
+ * 用户信息
176
+ */
177
+ export interface User {
178
+ /**
179
+ * 用户ID
180
+ */
181
+ UserId: string;
182
+ /**
183
+ * 用户名
184
+ 注意:此字段可能返回 null,表示取不到有效值。
185
+ */
186
+ UserName: string;
187
+ /**
188
+ * 手机号
189
+ 注意:此字段可能返回 null,表示取不到有效值。
190
+ */
191
+ PhoneNumber: string;
192
+ /**
193
+ * 邮箱
194
+ 注意:此字段可能返回 null,表示取不到有效值。
195
+ */
196
+ Email: string;
197
+ /**
198
+ * 上次登录时间
199
+ 注意:此字段可能返回 null,表示取不到有效值。
200
+ */
201
+ LastSignOn: number;
202
+ /**
203
+ * 创建时间
204
+ */
205
+ CreatedDate: number;
206
+ /**
207
+ * 状态
208
+ */
209
+ Status: string;
210
+ /**
211
+ * 用户来源
212
+ */
213
+ UserDataSourceEnum: string;
214
+ /**
215
+ * 昵称
216
+ 注意:此字段可能返回 null,表示取不到有效值。
217
+ */
218
+ Nickname: string;
219
+ /**
220
+ * 地址
221
+ 注意:此字段可能返回 null,表示取不到有效值。
222
+ */
223
+ Address: string;
224
+ /**
225
+ * 生日
226
+ 注意:此字段可能返回 null,表示取不到有效值。
227
+ */
228
+ Birthdate: number;
229
+ /**
230
+ * 用户组ID
231
+ 注意:此字段可能返回 null,表示取不到有效值。
232
+ */
233
+ UserGroups: Array<string>;
234
+ /**
235
+ * 上次修改时间
236
+ 注意:此字段可能返回 null,表示取不到有效值。
237
+ */
238
+ LastModifiedDate: number;
239
+ /**
240
+ * 自定义属性
241
+ 注意:此字段可能返回 null,表示取不到有效值。
242
+ */
243
+ CustomAttributes: Array<MemberMap>;
244
+ /**
245
+ * 身份证号
246
+ 注意:此字段可能返回 null,表示取不到有效值。
247
+ */
248
+ ResidentIdentityCard: string;
249
+ /**
250
+ * QQ的OpenId
251
+ 注意:此字段可能返回 null,表示取不到有效值。
252
+ */
253
+ QqOpenId: string;
254
+ /**
255
+ * QQ的UnionId
256
+ 注意:此字段可能返回 null,表示取不到有效值。
257
+ */
258
+ QqUnionId: string;
259
+ /**
260
+ * 微信的WechatOpenId
261
+ 注意:此字段可能返回 null,表示取不到有效值。
262
+ */
263
+ WechatOpenId: string;
264
+ /**
265
+ * 微信的WechatUnionId
266
+ 注意:此字段可能返回 null,表示取不到有效值。
267
+ */
268
+ WechatUnionId: string;
269
+ /**
270
+ * 支付宝的AlipayUserId
271
+ 注意:此字段可能返回 null,表示取不到有效值。
272
+ */
273
+ AlipayUserId: string;
274
+ /**
275
+ * 描述
276
+ 注意:此字段可能返回 null,表示取不到有效值。
277
+ */
278
+ Description: string;
279
+ /**
280
+ * 姓名
281
+ 注意:此字段可能返回 null,表示取不到有效值。
282
+ */
283
+ Name: string;
284
+ /**
285
+ * 坐标
286
+ 注意:此字段可能返回 null,表示取不到有效值。
287
+ */
288
+ Locale: string;
289
+ /**
290
+ * 性别
291
+ 注意:此字段可能返回 null,表示取不到有效值。
292
+ */
293
+ Gender: string;
294
+ /**
295
+ * 实名核验方式
296
+ 注意:此字段可能返回 null,表示取不到有效值。
297
+ */
298
+ IdentityVerificationMethod: string;
299
+ /**
300
+ * 是否已经实名核验
301
+ 注意:此字段可能返回 null,表示取不到有效值。
302
+ */
303
+ IdentityVerified: boolean;
304
+ /**
305
+ * 工作
306
+ 注意:此字段可能返回 null,表示取不到有效值。
307
+ */
308
+ Job: string;
309
+ /**
310
+ * 国家
311
+ 注意:此字段可能返回 null,表示取不到有效值。
312
+ */
313
+ Nationality: string;
314
+ /**
315
+ * 是否主账号(进行过账号融合后,主账号为true,从账号为false)
316
+ 注意:此字段可能返回 null,表示取不到有效值。
317
+ */
318
+ Primary: boolean;
319
+ /**
320
+ * 时区
321
+ 注意:此字段可能返回 null,表示取不到有效值。
322
+ */
323
+ Zone: string;
324
+ /**
325
+ * 是否已经首次登录
326
+ 注意:此字段可能返回 null,表示取不到有效值。
327
+ */
328
+ AlreadyFirstLogin: boolean;
329
+ /**
330
+ * 租户id
331
+ 注意:此字段可能返回 null,表示取不到有效值。
332
+ */
333
+ TenantId: string;
334
+ /**
335
+ * 用户目录id
336
+ 注意:此字段可能返回 null,表示取不到有效值。
337
+ */
338
+ UserStoreId: string;
339
+ /**
340
+ * 版本
341
+ 注意:此字段可能返回 null,表示取不到有效值。
342
+ */
343
+ Version: number;
344
+ /**
345
+ * 锁定类型(分为管理员锁定,和登录策略锁定)
346
+ 注意:此字段可能返回 null,表示取不到有效值。
347
+ */
348
+ LockType: string;
349
+ /**
350
+ * 锁定时间点
351
+ 注意:此字段可能返回 null,表示取不到有效值。
352
+ */
353
+ LockTime: number;
354
+ }
355
+ /**
356
+ * 分页对象
357
+ */
358
+ export interface Pageable {
359
+ /**
360
+ * 每页数量
361
+ */
362
+ PageSize: number;
363
+ /**
364
+ * 当前页码
365
+ */
366
+ PageNumber: number;
367
+ }
14
368
  /**
15
369
  * ResetPassword返回参数结构体
16
370
  */
@@ -24,3 +378,202 @@ export interface ResetPasswordResponse {
24
378
  */
25
379
  RequestId?: string;
26
380
  }
381
+ /**
382
+ * SetPassword请求参数结构体
383
+ */
384
+ export interface SetPasswordRequest {
385
+ /**
386
+ * 用户目录ID
387
+ */
388
+ UserStoreId: string;
389
+ /**
390
+ * 用户ID
391
+ */
392
+ UserId: string;
393
+ /**
394
+ * 密码
395
+ */
396
+ Password: string;
397
+ }
398
+ /**
399
+ * UpdateUserStatus请求参数结构体
400
+ */
401
+ export interface UpdateUserStatusRequest {
402
+ /**
403
+ * 用户目录ID
404
+ */
405
+ UserStoreId: string;
406
+ /**
407
+ * 用户ID
408
+ */
409
+ UserId: string;
410
+ /**
411
+ * NORMAL(正常),LOCK(锁定),FREEZE(冻结),请传英文大写字母
412
+ */
413
+ Status: string;
414
+ }
415
+ /**
416
+ * 查询条件
417
+ */
418
+ export interface Filter {
419
+ /**
420
+ * key值
421
+ */
422
+ Key?: string;
423
+ /**
424
+ * value值
425
+ */
426
+ Values?: Array<string>;
427
+ /**
428
+ * 逻辑值
429
+ */
430
+ Logic?: boolean;
431
+ }
432
+ /**
433
+ * ListUserByProperty请求参数结构体
434
+ */
435
+ export interface ListUserByPropertyRequest {
436
+ /**
437
+ * 用户目录ID
438
+ */
439
+ UserStoreId: string;
440
+ /**
441
+ * 查询的属性(支持phoneNumber,email)
442
+ */
443
+ PropertyCode: string;
444
+ /**
445
+ * 属性值
446
+ */
447
+ PropertyValue: string;
448
+ }
449
+ /**
450
+ * LinkAccount返回参数结构体
451
+ */
452
+ export interface LinkAccountResponse {
453
+ /**
454
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
455
+ */
456
+ RequestId?: string;
457
+ }
458
+ /**
459
+ * CreateUser请求参数结构体
460
+ */
461
+ export interface CreateUserRequest {
462
+ /**
463
+ * 用户目录ID
464
+ */
465
+ UserStoreId: string;
466
+ /**
467
+ * 手机号码
468
+ */
469
+ PhoneNumber: string;
470
+ /**
471
+ * 邮箱
472
+ */
473
+ Email: string;
474
+ /**
475
+ * 密码
476
+ */
477
+ Password: string;
478
+ /**
479
+ * 用户名
480
+ */
481
+ UserName: string;
482
+ /**
483
+ * 昵称
484
+ */
485
+ Nickname?: string;
486
+ /**
487
+ * 地址
488
+ */
489
+ Address?: string;
490
+ /**
491
+ * 用户组ID
492
+ */
493
+ UserGroup?: Array<string>;
494
+ /**
495
+ * 生日
496
+ */
497
+ Birthdate?: number;
498
+ /**
499
+ * 自定义属性
500
+ */
501
+ CustomizationAttributes?: Array<MemberMap>;
502
+ }
503
+ /**
504
+ * Map数据类型
505
+ */
506
+ export interface MemberMap {
507
+ /**
508
+ * 健
509
+ */
510
+ Name: string;
511
+ /**
512
+ * 值
513
+ */
514
+ Value: string;
515
+ /**
516
+ * 类型
517
+ 注意:此字段可能返回 null,表示取不到有效值。
518
+ */
519
+ Type?: string;
520
+ }
521
+ /**
522
+ * LinkAccount请求参数结构体
523
+ */
524
+ export interface LinkAccountRequest {
525
+ /**
526
+ * 用户目录ID
527
+ */
528
+ UserStoreId: string;
529
+ /**
530
+ * 主用户ID
531
+ */
532
+ PrimaryUserId: string;
533
+ /**
534
+ * 从用户ID
535
+ */
536
+ SecondaryUserId: string;
537
+ /**
538
+ * 融合属性(PHONENUMBER,EMAIL)
539
+ */
540
+ UserLinkedOnAttribute: string;
541
+ }
542
+ /**
543
+ * ListUser返回参数结构体
544
+ */
545
+ export interface ListUserResponse {
546
+ /**
547
+ * 总条数
548
+ 注意:此字段可能返回 null,表示取不到有效值。
549
+ */
550
+ Total: number;
551
+ /**
552
+ * 分页对象
553
+ 注意:此字段可能返回 null,表示取不到有效值。
554
+ */
555
+ Pageable: Pageable;
556
+ /**
557
+ * 用户列表
558
+ 注意:此字段可能返回 null,表示取不到有效值。
559
+ */
560
+ Content: Array<User>;
561
+ /**
562
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
563
+ */
564
+ RequestId?: string;
565
+ }
566
+ /**
567
+ * UpdateUser返回参数结构体
568
+ */
569
+ export interface UpdateUserResponse {
570
+ /**
571
+ * 更新之后的用户信息
572
+ 注意:此字段可能返回 null,表示取不到有效值。
573
+ */
574
+ User: User;
575
+ /**
576
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
577
+ */
578
+ RequestId?: string;
579
+ }
@@ -127,6 +127,15 @@ export interface DescribeStructCompareDataRequest {
127
127
  */
128
128
  SubTaskId?: string;
129
129
  }
130
+ /**
131
+ * 位置信息
132
+ */
133
+ export interface Location {
134
+ /**
135
+ * 位置信息
136
+ */
137
+ Points: Array<Point>;
138
+ }
130
139
  /**
131
140
  * AddSubStructureTasks返回参数结构体
132
141
  */
@@ -753,6 +762,27 @@ export interface DescribeMachineUnderwriteResponse {
753
762
  */
754
763
  RequestId?: string;
755
764
  }
765
+ /**
766
+ * Ocr识别结果
767
+ */
768
+ export interface OcrRecognise {
769
+ /**
770
+ * 原文字段
771
+ */
772
+ OriginalField: string;
773
+ /**
774
+ * 识别结果
775
+ */
776
+ Value: string;
777
+ /**
778
+ * 置信度
779
+ */
780
+ Confidence: number;
781
+ /**
782
+ * 位置信息
783
+ */
784
+ Location: Location;
785
+ }
756
786
  /**
757
787
  * CreateAutoClassifyStructureTask返回参数结构体
758
788
  */
@@ -766,6 +796,23 @@ export interface CreateAutoClassifyStructureTaskResponse {
766
796
  */
767
797
  RequestId?: string;
768
798
  }
799
+ /**
800
+ * 点信息
801
+ */
802
+ export interface Point {
803
+ /**
804
+ * x坐标
805
+ */
806
+ XCoordinate: number;
807
+ /**
808
+ * y坐标
809
+ */
810
+ YCoordinate: number;
811
+ /**
812
+ * 页码
813
+ */
814
+ Page: number;
815
+ }
769
816
  /**
770
817
  * DescribeReportClassify返回参数结构体
771
818
  */
@@ -816,6 +863,11 @@ export interface StructureResultObject {
816
863
  * 任务文件列表
817
864
  */
818
865
  TaskFiles: Array<string>;
866
+ /**
867
+ * 结构化字段结果数组
868
+ 注意:此字段可能返回 null,表示取不到有效值。
869
+ */
870
+ ResultFields: Array<OcrRecognise>;
819
871
  }
820
872
  /**
821
873
  * 创建结构化任务子任务信息
@@ -678,7 +678,7 @@ export interface ImportKeyPairResponse {
678
678
  /**
679
679
  * 密钥对ID。
680
680
  */
681
- KeyId: string;
681
+ KeyId?: string;
682
682
  /**
683
683
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
684
684
  */
@@ -1669,23 +1669,23 @@ export interface DescribeDisasterRecoverGroupQuotaResponse {
1669
1669
  /**
1670
1670
  * 可创建置放群组数量的上限。
1671
1671
  */
1672
- GroupQuota?: number;
1672
+ GroupQuota: number;
1673
1673
  /**
1674
1674
  * 当前用户已经创建的置放群组数量。
1675
1675
  */
1676
- CurrentNum?: number;
1676
+ CurrentNum: number;
1677
1677
  /**
1678
1678
  * 物理机类型容灾组内实例的配额数。
1679
1679
  */
1680
- CvmInHostGroupQuota?: number;
1680
+ CvmInHostGroupQuota: number;
1681
1681
  /**
1682
1682
  * 交换机类型容灾组内实例的配额数。
1683
1683
  */
1684
- CvmInSwGroupQuota?: number;
1684
+ CvmInSwGroupQuota: number;
1685
1685
  /**
1686
1686
  * 机架类型容灾组内实例的配额数。
1687
1687
  */
1688
- CvmInRackGroupQuota?: number;
1688
+ CvmInRackGroupQuota: number;
1689
1689
  /**
1690
1690
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1691
1691
  */
@@ -1837,7 +1837,11 @@ export interface DescribeKeyPairsRequest {
1837
1837
  /**
1838
1838
  * 过滤条件。
1839
1839
  <li> project-id - Integer - 是否必填:否 -(过滤条件)按照项目ID过滤。可以通过[项目列表](https://console.cloud.tencent.com/project)查询项目ID,或者调用接口 [DescribeProject](https://cloud.tencent.com/document/api/378/4400),取返回信息中的projectId获取项目ID。</li>
1840
- <li> key-name - String - 是否必填:否 -(过滤条件)按照密钥对名称过滤。</li>参数不支持同时指定 `KeyIds` 和 `Filters`。
1840
+ <li> key-name - String - 是否必填:否 -(过滤条件)按照密钥对名称过滤。</li>
1841
+ <li> tag-key - String - 是否必填:否 -(过滤条件)按照标签键过滤。</li>
1842
+ <li> tag-value - String - 是否必填:否 -(过滤条件)按照标签值过滤。</li>
1843
+ <li> tag:tag-key - String - 是否必填:否 -(过滤条件)按照标签键值对过滤。tag-key使用具体的标签键进行替换。</li>
1844
+ 参数不支持同时指定 `KeyIds` 和 `Filters`。
1841
1845
  */
1842
1846
  Filters?: Array<Filter>;
1843
1847
  /**
@@ -2472,7 +2476,7 @@ export interface CreateKeyPairResponse {
2472
2476
  /**
2473
2477
  * 密钥对信息。
2474
2478
  */
2475
- KeyPair: KeyPair;
2479
+ KeyPair?: KeyPair;
2476
2480
  /**
2477
2481
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2478
2482
  */
@@ -4444,6 +4448,11 @@ export interface KeyPair {
4444
4448
  * 创建时间。按照`ISO8601`标准表示,并且使用`UTC`时间。格式为:`YYYY-MM-DDThh:mm:ssZ`。
4445
4449
  */
4446
4450
  CreatedTime?: string;
4451
+ /**
4452
+ * 密钥关联的标签列表。
4453
+ 注意:此字段可能返回 null,表示取不到有效值。
4454
+ */
4455
+ Tags?: Array<Tag>;
4447
4456
  }
4448
4457
  /**
4449
4458
  * DescribeReservedInstancesOfferings返回参数结构体