tencentcloud-sdk-nodejs-organization 4.0.708 → 4.0.710

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.
@@ -220,6 +220,23 @@ export interface CreateOrganizationMemberAuthIdentityRequest {
220
220
  */
221
221
  IdentityIds: Array<number | bigint>;
222
222
  }
223
+ /**
224
+ * UpdateOrganizationIdentity请求参数结构体
225
+ */
226
+ export interface UpdateOrganizationIdentityRequest {
227
+ /**
228
+ * 身份ID
229
+ */
230
+ IdentityId: number;
231
+ /**
232
+ * 身份描述
233
+ */
234
+ Description: string;
235
+ /**
236
+ * 身份策略
237
+ */
238
+ IdentityPolicy: Array<IdentityPolicy>;
239
+ }
223
240
  /**
224
241
  * DeleteOrganizationMembers返回参数结构体
225
242
  */
@@ -258,6 +275,23 @@ export interface DescribeOrganizationFinancialByMemberRequest {
258
275
  */
259
276
  ProductCodes?: Array<string>;
260
277
  }
278
+ /**
279
+ * DescribeOrganizationAuthNode请求参数结构体
280
+ */
281
+ export interface DescribeOrganizationAuthNodeRequest {
282
+ /**
283
+ * 偏移量。
284
+ */
285
+ Offset: number;
286
+ /**
287
+ * 限制数目。最大50
288
+ */
289
+ Limit: number;
290
+ /**
291
+ * 互信主体名称。
292
+ */
293
+ AuthName?: string;
294
+ }
261
295
  /**
262
296
  * DescribeOrganizationFinancialByMonth请求参数结构体
263
297
  */
@@ -324,13 +358,33 @@ export interface CreateOrganizationMemberAuthIdentityResponse {
324
358
  RequestId?: string;
325
359
  }
326
360
  /**
327
- * UpdateOrganizationNode返回参数结构体
361
+ * DescribeOrganizationFinancialByProduct请求参数结构体
328
362
  */
329
- export interface UpdateOrganizationNodeResponse {
363
+ export interface DescribeOrganizationFinancialByProductRequest {
330
364
  /**
331
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
365
+ * 查询开始月份。格式:yyyy-mm,例如:2021-01
332
366
  */
333
- RequestId?: string;
367
+ Month: string;
368
+ /**
369
+ * 限制数目。取值范围:1~50,默认值:10
370
+ */
371
+ Limit?: number;
372
+ /**
373
+ * 偏移量。取值是limit的整数倍,默认值 : 0
374
+ */
375
+ Offset?: number;
376
+ /**
377
+ * 查询结束月份。格式:yyyy-mm,例如:2021-01,默认值为查询开始月份
378
+ */
379
+ EndMonth?: string;
380
+ /**
381
+ * 查询成员列表。 最大100个
382
+ */
383
+ MemberUins?: Array<number | bigint>;
384
+ /**
385
+ * 查询产品列表。 最大100个
386
+ */
387
+ ProductCodes?: Array<string>;
334
388
  }
335
389
  /**
336
390
  * CreateOrganizationMemberPolicy请求参数结构体
@@ -354,17 +408,18 @@ export interface CreateOrganizationMemberPolicyRequest {
354
408
  Description?: string;
355
409
  }
356
410
  /**
357
- * DescribeOrganization请求参数结构体
411
+ * CreateOrganizationMembersPolicy返回参数结构体
358
412
  */
359
- export interface DescribeOrganizationRequest {
413
+ export interface CreateOrganizationMembersPolicyResponse {
360
414
  /**
361
- * 国际站:en,国内站:zh
415
+ * 策略ID。
416
+ 注意:此字段可能返回 null,表示取不到有效值。
362
417
  */
363
- Lang?: string;
418
+ PolicyId?: number;
364
419
  /**
365
- * 可信服务产品简称。查询是否该可信服务管理员时必须指定
420
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
366
421
  */
367
- Product?: string;
422
+ RequestId?: string;
368
423
  }
369
424
  /**
370
425
  * DescribeOrganizationFinancialByMonth返回参数结构体
@@ -412,51 +467,57 @@ export interface CreateOrganizationMemberResponse {
412
467
  RequestId?: string;
413
468
  }
414
469
  /**
415
- * MoveOrganizationNodeMembers请求参数结构体
470
+ * CreateOrganizationIdentity返回参数结构体
416
471
  */
417
- export interface MoveOrganizationNodeMembersRequest {
472
+ export interface CreateOrganizationIdentityResponse {
418
473
  /**
419
- * 组织节点ID
474
+ * 身份ID
475
+ 注意:此字段可能返回 null,表示取不到有效值。
420
476
  */
421
- NodeId: number;
477
+ IdentityId?: number;
422
478
  /**
423
- * 成员UIN列表。
479
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
424
480
  */
425
- MemberUin: Array<number | bigint>;
481
+ RequestId?: string;
426
482
  }
427
483
  /**
428
- * QuitOrganization返回参数结构体
484
+ * UpdateOrganizationMember返回参数结构体
429
485
  */
430
- export interface QuitOrganizationResponse {
486
+ export interface UpdateOrganizationMemberResponse {
431
487
  /**
432
488
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
433
489
  */
434
490
  RequestId?: string;
435
491
  }
436
492
  /**
437
- * ListOrganizationIdentity请求参数结构体
493
+ * QuitOrganization返回参数结构体
438
494
  */
439
- export interface ListOrganizationIdentityRequest {
495
+ export interface QuitOrganizationResponse {
440
496
  /**
441
- * 偏移量。取值是limit的整数倍。默认值 : 0
497
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId
442
498
  */
443
- Offset: number;
499
+ RequestId?: string;
500
+ }
501
+ /**
502
+ * CreateOrganizationMembersPolicy请求参数结构体
503
+ */
504
+ export interface CreateOrganizationMembersPolicyRequest {
444
505
  /**
445
- * 限制数目。取值范围:1~50。默认值:10
506
+ * 成员Uin列表。最多10
446
507
  */
447
- Limit: number;
508
+ MemberUins: Array<number | bigint>;
448
509
  /**
449
- * 名称搜索关键字。
510
+ * 策略名。长度1~128个字符,支持英文字母、数字、符号+=,.@_-
450
511
  */
451
- SearchKey?: string;
512
+ PolicyName: string;
452
513
  /**
453
- * 身份ID搜索。
514
+ * 成员访问身份ID
454
515
  */
455
- IdentityId?: number;
516
+ IdentityId: number;
456
517
  /**
457
- * 身份类型。取值范围 1-预设, 2-自定义
518
+ * 策略描述。最大长度为128个字符
458
519
  */
459
- IdentityType?: number;
520
+ Description?: string;
460
521
  }
461
522
  /**
462
523
  * 互信主体主要信息
@@ -680,6 +741,15 @@ export interface DescribeOrganizationFinancialByProductResponse {
680
741
  */
681
742
  RequestId?: string;
682
743
  }
744
+ /**
745
+ * UpdateOrganizationIdentity返回参数结构体
746
+ */
747
+ export interface UpdateOrganizationIdentityResponse {
748
+ /**
749
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
750
+ */
751
+ RequestId?: string;
752
+ }
683
753
  /**
684
754
  * AddOrganizationMemberEmail请求参数结构体
685
755
  */
@@ -784,33 +854,34 @@ export interface CreateOrganizationMemberPolicyResponse {
784
854
  RequestId?: string;
785
855
  }
786
856
  /**
787
- * DescribeOrganizationFinancialByProduct请求参数结构体
857
+ * CreateOrganizationIdentity请求参数结构体
788
858
  */
789
- export interface DescribeOrganizationFinancialByProductRequest {
859
+ export interface CreateOrganizationIdentityRequest {
790
860
  /**
791
- * 查询开始月份。格式:yyyy-mm,例如:2021-01
861
+ * 身份名称
792
862
  */
793
- Month: string;
863
+ IdentityAliasName: string;
794
864
  /**
795
- * 限制数目。取值范围:1~50,默认值:10
865
+ * 身份策略
796
866
  */
797
- Limit?: number;
867
+ IdentityPolicy: Array<IdentityPolicy>;
798
868
  /**
799
- * 偏移量。取值是limit的整数倍,默认值 : 0
869
+ * 身份描述
800
870
  */
801
- Offset?: number;
802
- /**
803
- * 查询结束月份。格式:yyyy-mm,例如:2021-01,默认值为查询开始月份
804
- */
805
- EndMonth?: string;
871
+ Description?: string;
872
+ }
873
+ /**
874
+ * MoveOrganizationNodeMembers请求参数结构体
875
+ */
876
+ export interface MoveOrganizationNodeMembersRequest {
806
877
  /**
807
- * 查询成员列表。 最大100个
878
+ * 组织节点ID。
808
879
  */
809
- MemberUins?: Array<number | bigint>;
880
+ NodeId: number;
810
881
  /**
811
- * 查询产品列表。 最大100个
882
+ * 成员UIN列表。
812
883
  */
813
- ProductCodes?: Array<string>;
884
+ MemberUin: Array<number | bigint>;
814
885
  }
815
886
  /**
816
887
  * CancelOrganizationMemberAuthAccount返回参数结构体
@@ -905,6 +976,24 @@ export interface UpdateOrganizationMemberRequest {
905
976
  */
906
977
  PayUin?: string;
907
978
  }
979
+ /**
980
+ * DeleteOrganizationNodes返回参数结构体
981
+ */
982
+ export interface DeleteOrganizationNodesResponse {
983
+ /**
984
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
985
+ */
986
+ RequestId?: string;
987
+ }
988
+ /**
989
+ * QuitOrganization请求参数结构体
990
+ */
991
+ export interface QuitOrganizationRequest {
992
+ /**
993
+ * 企业组织ID
994
+ */
995
+ OrgId: number;
996
+ }
908
997
  /**
909
998
  * DescribeOrganization返回参数结构体
910
999
  */
@@ -994,15 +1083,6 @@ export interface DescribeOrganizationResponse {
994
1083
  */
995
1084
  RequestId?: string;
996
1085
  }
997
- /**
998
- * QuitOrganization请求参数结构体
999
- */
1000
- export interface QuitOrganizationRequest {
1001
- /**
1002
- * 企业组织ID
1003
- */
1004
- OrgId: number;
1005
- }
1006
1086
  /**
1007
1087
  * DescribeOrganizationMemberPolicies请求参数结构体
1008
1088
  */
@@ -1059,6 +1139,15 @@ export interface AddOrganizationNodeRequest {
1059
1139
  */
1060
1140
  Remark?: string;
1061
1141
  }
1142
+ /**
1143
+ * UpdateOrganizationNode返回参数结构体
1144
+ */
1145
+ export interface UpdateOrganizationNodeResponse {
1146
+ /**
1147
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1148
+ */
1149
+ RequestId?: string;
1150
+ }
1062
1151
  /**
1063
1152
  * DescribeOrganizationMemberAuthIdentities返回参数结构体
1064
1153
  */
@@ -1104,21 +1193,13 @@ export interface OrgMemberFinancial {
1104
1193
  Ratio?: string;
1105
1194
  }
1106
1195
  /**
1107
- * DescribeOrganizationAuthNode请求参数结构体
1196
+ * DeleteOrganizationIdentity请求参数结构体
1108
1197
  */
1109
- export interface DescribeOrganizationAuthNodeRequest {
1110
- /**
1111
- * 偏移量。
1112
- */
1113
- Offset: number;
1114
- /**
1115
- * 限制数目。最大50
1116
- */
1117
- Limit: number;
1198
+ export interface DeleteOrganizationIdentityRequest {
1118
1199
  /**
1119
- * 互信主体名称。
1200
+ * 身份ID
1120
1201
  */
1121
- AuthName?: string;
1202
+ IdentityId: number;
1122
1203
  }
1123
1204
  /**
1124
1205
  * UpdateOrganizationNode请求参数结构体
@@ -1176,18 +1257,34 @@ export interface CancelOrganizationMemberAuthAccountRequest {
1176
1257
  OrgSubAccountUin: number;
1177
1258
  }
1178
1259
  /**
1179
- * UpdateOrganizationMember返回参数结构体
1260
+ * ListOrganizationIdentity请求参数结构体
1180
1261
  */
1181
- export interface UpdateOrganizationMemberResponse {
1262
+ export interface ListOrganizationIdentityRequest {
1182
1263
  /**
1183
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId
1264
+ * 偏移量。取值是limit的整数倍。默认值 : 0
1184
1265
  */
1185
- RequestId?: string;
1266
+ Offset: number;
1267
+ /**
1268
+ * 限制数目。取值范围:1~50。默认值:10。
1269
+ */
1270
+ Limit: number;
1271
+ /**
1272
+ * 名称搜索关键字。
1273
+ */
1274
+ SearchKey?: string;
1275
+ /**
1276
+ * 身份ID搜索。
1277
+ */
1278
+ IdentityId?: number;
1279
+ /**
1280
+ * 身份类型。取值范围 1-预设, 2-自定义
1281
+ */
1282
+ IdentityType?: number;
1186
1283
  }
1187
1284
  /**
1188
- * DeleteOrganizationNodes返回参数结构体
1285
+ * DeleteOrganizationIdentity返回参数结构体
1189
1286
  */
1190
- export interface DeleteOrganizationNodesResponse {
1287
+ export interface DeleteOrganizationIdentityResponse {
1191
1288
  /**
1192
1289
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1193
1290
  */
@@ -1245,6 +1342,19 @@ export interface DescribeOrganizationMemberAuthAccountsResponse {
1245
1342
  */
1246
1343
  RequestId?: string;
1247
1344
  }
1345
+ /**
1346
+ * DescribeOrganization请求参数结构体
1347
+ */
1348
+ export interface DescribeOrganizationRequest {
1349
+ /**
1350
+ * 国际站:en,国内站:zh
1351
+ */
1352
+ Lang?: string;
1353
+ /**
1354
+ * 可信服务产品简称。查询是否该可信服务管理员时必须指定
1355
+ */
1356
+ Product?: string;
1357
+ }
1248
1358
  /**
1249
1359
  * DeleteOrganizationMembersPolicy返回参数结构体
1250
1360
  */