tencentcloud-sdk-nodejs-intl-en 3.0.1023 → 3.0.1025

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-intl-en",
3
- "version": "3.0.1023",
3
+ "version": "3.0.1025",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -1,2 +1,2 @@
1
- const sdkVersion = "3.0.1023";
1
+ const sdkVersion = "3.0.1025";
2
2
  module.exports = sdkVersion
@@ -2206,6 +2206,45 @@ class GetTaskStatusResponse extends AbstractModel {
2206
2206
  }
2207
2207
  }
2208
2208
 
2209
+ /**
2210
+ * Tag key-value pair.
2211
+ * @class
2212
+ */
2213
+ class Tag extends AbstractModel {
2214
+ constructor(){
2215
+ super();
2216
+
2217
+ /**
2218
+ * Tag key
2219
+
2220
+ Note: This field may return null, indicating that no valid values can be obtained.
2221
+ * @type {string || null}
2222
+ */
2223
+ this.TagKey = null;
2224
+
2225
+ /**
2226
+ * Tag value
2227
+
2228
+ Note: This field may return null, indicating that no valid values can be obtained.
2229
+ * @type {string || null}
2230
+ */
2231
+ this.TagValue = null;
2232
+
2233
+ }
2234
+
2235
+ /**
2236
+ * @private
2237
+ */
2238
+ deserialize(params) {
2239
+ if (!params) {
2240
+ return;
2241
+ }
2242
+ this.TagKey = 'TagKey' in params ? params.TagKey : null;
2243
+ this.TagValue = 'TagValue' in params ? params.TagValue : null;
2244
+
2245
+ }
2246
+ }
2247
+
2209
2248
  /**
2210
2249
  * ListRoleAssignments response structure.
2211
2250
  * @class
@@ -3487,6 +3526,120 @@ class RemovePermissionPolicyFromRoleConfigurationRequest extends AbstractModel
3487
3526
  }
3488
3527
  }
3489
3528
 
3529
+ /**
3530
+ * InviteOrganizationMember request structure.
3531
+ * @class
3532
+ */
3533
+ class InviteOrganizationMemberRequest extends AbstractModel {
3534
+ constructor(){
3535
+ super();
3536
+
3537
+ /**
3538
+ * UIN of an invited account.
3539
+ * @type {number || null}
3540
+ */
3541
+ this.MemberUin = null;
3542
+
3543
+ /**
3544
+ * Member name, which contains up to 25 characters, including English letters, digits, and symbols `+@&._[]-:,`.
3545
+ * @type {string || null}
3546
+ */
3547
+ this.Name = null;
3548
+
3549
+ /**
3550
+ * Relationship policy. Valid value: `Financial`.
3551
+ * @type {string || null}
3552
+ */
3553
+ this.PolicyType = null;
3554
+
3555
+ /**
3556
+ * List of member financial permission IDs. Valid values: 1: View bills. 2: View balance. 3: Transfer funds. 4: Consolidate bills. 5: Issue invoice. 6: Inherit discounts. 7: Pay on behalf. 1 and 2 are required by default.
3557
+ * @type {Array.<number> || null}
3558
+ */
3559
+ this.PermissionIds = null;
3560
+
3561
+ /**
3562
+ * Node ID of the member's department, which can be obtained through [DescribeOrganizationNodes](https://intl.cloud.tencent.com/document/product/850/82926?from_cn_redirect=1).
3563
+ * @type {number || null}
3564
+ */
3565
+ this.NodeId = null;
3566
+
3567
+ /**
3568
+ * Remarks.
3569
+ * @type {string || null}
3570
+ */
3571
+ this.Remark = null;
3572
+
3573
+ /**
3574
+ * Whether to allow a member to exit. Valid values: Allow, Denied.
3575
+ * @type {string || null}
3576
+ */
3577
+ this.IsAllowQuit = null;
3578
+
3579
+ /**
3580
+ * Payer UIN, which is required when pay-on-behalf mode is used.
3581
+ * @type {string || null}
3582
+ */
3583
+ this.PayUin = null;
3584
+
3585
+ /**
3586
+ * Name of a mutual trust real-name entity.
3587
+ * @type {string || null}
3588
+ */
3589
+ this.RelationAuthName = null;
3590
+
3591
+ /**
3592
+ * List of proof files of a mutual trust entity.
3593
+ * @type {Array.<AuthRelationFile> || null}
3594
+ */
3595
+ this.AuthFile = null;
3596
+
3597
+ /**
3598
+ * Member tag list, with a maximum of 10.
3599
+ * @type {Array.<Tag> || null}
3600
+ */
3601
+ this.Tags = null;
3602
+
3603
+ }
3604
+
3605
+ /**
3606
+ * @private
3607
+ */
3608
+ deserialize(params) {
3609
+ if (!params) {
3610
+ return;
3611
+ }
3612
+ this.MemberUin = 'MemberUin' in params ? params.MemberUin : null;
3613
+ this.Name = 'Name' in params ? params.Name : null;
3614
+ this.PolicyType = 'PolicyType' in params ? params.PolicyType : null;
3615
+ this.PermissionIds = 'PermissionIds' in params ? params.PermissionIds : null;
3616
+ this.NodeId = 'NodeId' in params ? params.NodeId : null;
3617
+ this.Remark = 'Remark' in params ? params.Remark : null;
3618
+ this.IsAllowQuit = 'IsAllowQuit' in params ? params.IsAllowQuit : null;
3619
+ this.PayUin = 'PayUin' in params ? params.PayUin : null;
3620
+ this.RelationAuthName = 'RelationAuthName' in params ? params.RelationAuthName : null;
3621
+
3622
+ if (params.AuthFile) {
3623
+ this.AuthFile = new Array();
3624
+ for (let z in params.AuthFile) {
3625
+ let obj = new AuthRelationFile();
3626
+ obj.deserialize(params.AuthFile[z]);
3627
+ this.AuthFile.push(obj);
3628
+ }
3629
+ }
3630
+
3631
+ if (params.Tags) {
3632
+ this.Tags = new Array();
3633
+ for (let z in params.Tags) {
3634
+ let obj = new Tag();
3635
+ obj.deserialize(params.Tags[z]);
3636
+ this.Tags.push(obj);
3637
+ }
3638
+ }
3639
+
3640
+ }
3641
+ }
3642
+
3490
3643
  /**
3491
3644
  * ListTasks response structure.
3492
3645
  * @class
@@ -3584,6 +3737,12 @@ class AddOrganizationNodeRequest extends AbstractModel {
3584
3737
  */
3585
3738
  this.Remark = null;
3586
3739
 
3740
+ /**
3741
+ * Department tag list, with a maximum of 10.
3742
+ * @type {Array.<Tag> || null}
3743
+ */
3744
+ this.Tags = null;
3745
+
3587
3746
  }
3588
3747
 
3589
3748
  /**
@@ -3597,6 +3756,15 @@ class AddOrganizationNodeRequest extends AbstractModel {
3597
3756
  this.Name = 'Name' in params ? params.Name : null;
3598
3757
  this.Remark = 'Remark' in params ? params.Remark : null;
3599
3758
 
3759
+ if (params.Tags) {
3760
+ this.Tags = new Array();
3761
+ for (let z in params.Tags) {
3762
+ let obj = new Tag();
3763
+ obj.deserialize(params.Tags[z]);
3764
+ this.Tags.push(obj);
3765
+ }
3766
+ }
3767
+
3600
3768
  }
3601
3769
  }
3602
3770
 
@@ -3650,6 +3818,13 @@ Note: This field may return null, indicating that no valid values can be obtaine
3650
3818
  */
3651
3819
  this.UpdateTime = null;
3652
3820
 
3821
+ /**
3822
+ * Member tag list.
3823
+ Note: This field may return null, indicating that no valid values can be obtained.
3824
+ * @type {Array.<Tag> || null}
3825
+ */
3826
+ this.Tags = null;
3827
+
3653
3828
  }
3654
3829
 
3655
3830
  /**
@@ -3666,6 +3841,15 @@ Note: This field may return null, indicating that no valid values can be obtaine
3666
3841
  this.CreateTime = 'CreateTime' in params ? params.CreateTime : null;
3667
3842
  this.UpdateTime = 'UpdateTime' in params ? params.UpdateTime : null;
3668
3843
 
3844
+ if (params.Tags) {
3845
+ this.Tags = new Array();
3846
+ for (let z in params.Tags) {
3847
+ let obj = new Tag();
3848
+ obj.deserialize(params.Tags[z]);
3849
+ this.Tags.push(obj);
3850
+ }
3851
+ }
3852
+
3669
3853
  }
3670
3854
  }
3671
3855
 
@@ -4049,49 +4233,13 @@ Note: This field may return null, indicating that no valid values can be obtaine
4049
4233
  }
4050
4234
 
4051
4235
  /**
4052
- * DescribeOrganizationMembers request structure.
4236
+ * DescribeIdentityCenter request structure.
4053
4237
  * @class
4054
4238
  */
4055
- class DescribeOrganizationMembersRequest extends AbstractModel {
4239
+ class DescribeIdentityCenterRequest extends AbstractModel {
4056
4240
  constructor(){
4057
4241
  super();
4058
4242
 
4059
- /**
4060
- * Offset, which is an integer multiple of the value of `Limit`. Default value: `0`.
4061
- * @type {number || null}
4062
- */
4063
- this.Offset = null;
4064
-
4065
- /**
4066
- * Limit, which defaults to `10`. Value range: 1-50.
4067
- * @type {number || null}
4068
- */
4069
- this.Limit = null;
4070
-
4071
- /**
4072
- * Valid values: `en` (Tencent Cloud International); `zh` (Tencent Cloud).
4073
- * @type {string || null}
4074
- */
4075
- this.Lang = null;
4076
-
4077
- /**
4078
- * Search by member name or ID.
4079
- * @type {string || null}
4080
- */
4081
- this.SearchKey = null;
4082
-
4083
- /**
4084
- * Entity name.
4085
- * @type {string || null}
4086
- */
4087
- this.AuthName = null;
4088
-
4089
- /**
4090
- * Abbreviation of the trusted service, which is required during querying the trusted service admin.
4091
- * @type {string || null}
4092
- */
4093
- this.Product = null;
4094
-
4095
4243
  }
4096
4244
 
4097
4245
  /**
@@ -4101,12 +4249,6 @@ class DescribeOrganizationMembersRequest extends AbstractModel {
4101
4249
  if (!params) {
4102
4250
  return;
4103
4251
  }
4104
- this.Offset = 'Offset' in params ? params.Offset : null;
4105
- this.Limit = 'Limit' in params ? params.Limit : null;
4106
- this.Lang = 'Lang' in params ? params.Lang : null;
4107
- this.SearchKey = 'SearchKey' in params ? params.SearchKey : null;
4108
- this.AuthName = 'AuthName' in params ? params.AuthName : null;
4109
- this.Product = 'Product' in params ? params.Product : null;
4110
4252
 
4111
4253
  }
4112
4254
  }
@@ -6481,6 +6623,12 @@ class CreateOrganizationMemberRequest extends AbstractModel {
6481
6623
  */
6482
6624
  this.AuthRelationId = null;
6483
6625
 
6626
+ /**
6627
+ * Member tag list, with a maximum of 10.
6628
+ * @type {Array.<Tag> || null}
6629
+ */
6630
+ this.Tags = null;
6631
+
6484
6632
  }
6485
6633
 
6486
6634
  /**
@@ -6501,6 +6649,53 @@ class CreateOrganizationMemberRequest extends AbstractModel {
6501
6649
  this.IdentityRoleID = 'IdentityRoleID' in params ? params.IdentityRoleID : null;
6502
6650
  this.AuthRelationId = 'AuthRelationId' in params ? params.AuthRelationId : null;
6503
6651
 
6652
+ if (params.Tags) {
6653
+ this.Tags = new Array();
6654
+ for (let z in params.Tags) {
6655
+ let obj = new Tag();
6656
+ obj.deserialize(params.Tags[z]);
6657
+ this.Tags.push(obj);
6658
+ }
6659
+ }
6660
+
6661
+ }
6662
+ }
6663
+
6664
+ /**
6665
+ * Real-name mutual trust application proof file.
6666
+ * @class
6667
+ */
6668
+ class AuthRelationFile extends AbstractModel {
6669
+ constructor(){
6670
+ super();
6671
+
6672
+ /**
6673
+ * File name.
6674
+ Note: This field may return null, indicating that no valid values can be obtained.
6675
+ * @type {string || null}
6676
+ */
6677
+ this.Name = null;
6678
+
6679
+ /**
6680
+ * File path.
6681
+
6682
+ Note: This field may return null, indicating that no valid values can be obtained.
6683
+ * @type {string || null}
6684
+ */
6685
+ this.Url = null;
6686
+
6687
+ }
6688
+
6689
+ /**
6690
+ * @private
6691
+ */
6692
+ deserialize(params) {
6693
+ if (!params) {
6694
+ return;
6695
+ }
6696
+ this.Name = 'Name' in params ? params.Name : null;
6697
+ this.Url = 'Url' in params ? params.Url : null;
6698
+
6504
6699
  }
6505
6700
  }
6506
6701
 
@@ -7211,6 +7406,13 @@ Note: This field may return null, indicating that no valid values can be obtaine
7211
7406
  */
7212
7407
  this.PermissionStatus = null;
7213
7408
 
7409
+ /**
7410
+ * Member tag list.
7411
+ Note: This field may return null, indicating that no valid values can be obtained.
7412
+ * @type {Array.<Tag> || null}
7413
+ */
7414
+ this.Tags = null;
7415
+
7214
7416
  }
7215
7417
 
7216
7418
  /**
@@ -7254,6 +7456,15 @@ Note: This field may return null, indicating that no valid values can be obtaine
7254
7456
  this.BindStatus = 'BindStatus' in params ? params.BindStatus : null;
7255
7457
  this.PermissionStatus = 'PermissionStatus' in params ? params.PermissionStatus : null;
7256
7458
 
7459
+ if (params.Tags) {
7460
+ this.Tags = new Array();
7461
+ for (let z in params.Tags) {
7462
+ let obj = new Tag();
7463
+ obj.deserialize(params.Tags[z]);
7464
+ this.Tags.push(obj);
7465
+ }
7466
+ }
7467
+
7257
7468
  }
7258
7469
  }
7259
7470
 
@@ -7489,13 +7700,55 @@ class RemoveUserFromGroupResponse extends AbstractModel {
7489
7700
  }
7490
7701
 
7491
7702
  /**
7492
- * DescribeIdentityCenter request structure.
7703
+ * DescribeOrganizationMembers request structure.
7493
7704
  * @class
7494
7705
  */
7495
- class DescribeIdentityCenterRequest extends AbstractModel {
7706
+ class DescribeOrganizationMembersRequest extends AbstractModel {
7496
7707
  constructor(){
7497
7708
  super();
7498
7709
 
7710
+ /**
7711
+ * Offset, which is an integer multiple of the value of `Limit`. Default value: `0`.
7712
+ * @type {number || null}
7713
+ */
7714
+ this.Offset = null;
7715
+
7716
+ /**
7717
+ * Limit, which defaults to `10`. Value range: 1-50.
7718
+ * @type {number || null}
7719
+ */
7720
+ this.Limit = null;
7721
+
7722
+ /**
7723
+ * Valid values: `en` (Tencent Cloud International); `zh` (Tencent Cloud).
7724
+ * @type {string || null}
7725
+ */
7726
+ this.Lang = null;
7727
+
7728
+ /**
7729
+ * Search by member name or ID.
7730
+ * @type {string || null}
7731
+ */
7732
+ this.SearchKey = null;
7733
+
7734
+ /**
7735
+ * Entity name.
7736
+ * @type {string || null}
7737
+ */
7738
+ this.AuthName = null;
7739
+
7740
+ /**
7741
+ * Abbreviation of the trusted service, which is required during querying the trusted service admin.
7742
+ * @type {string || null}
7743
+ */
7744
+ this.Product = null;
7745
+
7746
+ /**
7747
+ * Member tag search list, with a maximum of 10.
7748
+ * @type {Array.<Tag> || null}
7749
+ */
7750
+ this.Tags = null;
7751
+
7499
7752
  }
7500
7753
 
7501
7754
  /**
@@ -7505,6 +7758,21 @@ class DescribeIdentityCenterRequest extends AbstractModel {
7505
7758
  if (!params) {
7506
7759
  return;
7507
7760
  }
7761
+ this.Offset = 'Offset' in params ? params.Offset : null;
7762
+ this.Limit = 'Limit' in params ? params.Limit : null;
7763
+ this.Lang = 'Lang' in params ? params.Lang : null;
7764
+ this.SearchKey = 'SearchKey' in params ? params.SearchKey : null;
7765
+ this.AuthName = 'AuthName' in params ? params.AuthName : null;
7766
+ this.Product = 'Product' in params ? params.Product : null;
7767
+
7768
+ if (params.Tags) {
7769
+ this.Tags = new Array();
7770
+ for (let z in params.Tags) {
7771
+ let obj = new Tag();
7772
+ obj.deserialize(params.Tags[z]);
7773
+ this.Tags.push(obj);
7774
+ }
7775
+ }
7508
7776
 
7509
7777
  }
7510
7778
  }
@@ -7613,6 +7881,12 @@ class DescribeOrganizationNodesRequest extends AbstractModel {
7613
7881
  */
7614
7882
  this.Offset = null;
7615
7883
 
7884
+ /**
7885
+ * Department tag search list, with a maximum of 10.
7886
+ * @type {Array.<Tag> || null}
7887
+ */
7888
+ this.Tags = null;
7889
+
7616
7890
  }
7617
7891
 
7618
7892
  /**
@@ -7625,6 +7899,43 @@ class DescribeOrganizationNodesRequest extends AbstractModel {
7625
7899
  this.Limit = 'Limit' in params ? params.Limit : null;
7626
7900
  this.Offset = 'Offset' in params ? params.Offset : null;
7627
7901
 
7902
+ if (params.Tags) {
7903
+ this.Tags = new Array();
7904
+ for (let z in params.Tags) {
7905
+ let obj = new Tag();
7906
+ obj.deserialize(params.Tags[z]);
7907
+ this.Tags.push(obj);
7908
+ }
7909
+ }
7910
+
7911
+ }
7912
+ }
7913
+
7914
+ /**
7915
+ * InviteOrganizationMember response structure.
7916
+ * @class
7917
+ */
7918
+ class InviteOrganizationMemberResponse extends AbstractModel {
7919
+ constructor(){
7920
+ super();
7921
+
7922
+ /**
7923
+ * The unique request ID, generated by the server, will be returned for every request (if the request fails to reach the server for other reasons, the request will not obtain a RequestId). RequestId is required for locating a problem.
7924
+ * @type {string || null}
7925
+ */
7926
+ this.RequestId = null;
7927
+
7928
+ }
7929
+
7930
+ /**
7931
+ * @private
7932
+ */
7933
+ deserialize(params) {
7934
+ if (!params) {
7935
+ return;
7936
+ }
7937
+ this.RequestId = 'RequestId' in params ? params.RequestId : null;
7938
+
7628
7939
  }
7629
7940
  }
7630
7941
 
@@ -8849,6 +9160,7 @@ module.exports = {
8849
9160
  MemberMainInfo: MemberMainInfo,
8850
9161
  CreateRoleAssignmentRequest: CreateRoleAssignmentRequest,
8851
9162
  GetTaskStatusResponse: GetTaskStatusResponse,
9163
+ Tag: Tag,
8852
9164
  ListRoleAssignmentsResponse: ListRoleAssignmentsResponse,
8853
9165
  UpdateUserResponse: UpdateUserResponse,
8854
9166
  RemoveUserFromGroupRequest: RemoveUserFromGroupRequest,
@@ -8878,6 +9190,7 @@ module.exports = {
8878
9190
  GetZoneStatisticsRequest: GetZoneStatisticsRequest,
8879
9191
  NodeMainInfo: NodeMainInfo,
8880
9192
  RemovePermissionPolicyFromRoleConfigurationRequest: RemovePermissionPolicyFromRoleConfigurationRequest,
9193
+ InviteOrganizationMemberRequest: InviteOrganizationMemberRequest,
8881
9194
  ListTasksResponse: ListTasksResponse,
8882
9195
  AddOrganizationNodeRequest: AddOrganizationNodeRequest,
8883
9196
  OrgNode: OrgNode,
@@ -8888,7 +9201,7 @@ module.exports = {
8888
9201
  RoleAssignmentInfo: RoleAssignmentInfo,
8889
9202
  ListRoleConfigurationProvisioningsRequest: ListRoleConfigurationProvisioningsRequest,
8890
9203
  OrgIdentity: OrgIdentity,
8891
- DescribeOrganizationMembersRequest: DescribeOrganizationMembersRequest,
9204
+ DescribeIdentityCenterRequest: DescribeIdentityCenterRequest,
8892
9205
  UserInfo: UserInfo,
8893
9206
  JoinedGroups: JoinedGroups,
8894
9207
  TaskInfo: TaskInfo,
@@ -8933,6 +9246,7 @@ module.exports = {
8933
9246
  ListRoleConfigurationsResponse: ListRoleConfigurationsResponse,
8934
9247
  UpdateUserSyncProvisioningResponse: UpdateUserSyncProvisioningResponse,
8935
9248
  CreateOrganizationMemberRequest: CreateOrganizationMemberRequest,
9249
+ AuthRelationFile: AuthRelationFile,
8936
9250
  PolicyDetail: PolicyDetail,
8937
9251
  OrgMemberAuthIdentity: OrgMemberAuthIdentity,
8938
9252
  AddExternalSAMLIdPCertificateRequest: AddExternalSAMLIdPCertificateRequest,
@@ -8951,9 +9265,10 @@ module.exports = {
8951
9265
  GetRoleConfigurationRequest: GetRoleConfigurationRequest,
8952
9266
  AddUserToGroupRequest: AddUserToGroupRequest,
8953
9267
  RemoveUserFromGroupResponse: RemoveUserFromGroupResponse,
8954
- DescribeIdentityCenterRequest: DescribeIdentityCenterRequest,
9268
+ DescribeOrganizationMembersRequest: DescribeOrganizationMembersRequest,
8955
9269
  ZoneStatistics: ZoneStatistics,
8956
9270
  DescribeOrganizationNodesRequest: DescribeOrganizationNodesRequest,
9271
+ InviteOrganizationMemberResponse: InviteOrganizationMemberResponse,
8957
9272
  AddExternalSAMLIdPCertificateResponse: AddExternalSAMLIdPCertificateResponse,
8958
9273
  SAMLServiceProvider: SAMLServiceProvider,
8959
9274
  CreateUserResponse: CreateUserResponse,
@@ -56,6 +56,7 @@ const OrgMemberAuthAccount = models.OrgMemberAuthAccount;
56
56
  const MemberMainInfo = models.MemberMainInfo;
57
57
  const CreateRoleAssignmentRequest = models.CreateRoleAssignmentRequest;
58
58
  const GetTaskStatusResponse = models.GetTaskStatusResponse;
59
+ const Tag = models.Tag;
59
60
  const ListRoleAssignmentsResponse = models.ListRoleAssignmentsResponse;
60
61
  const UpdateUserResponse = models.UpdateUserResponse;
61
62
  const RemoveUserFromGroupRequest = models.RemoveUserFromGroupRequest;
@@ -85,6 +86,7 @@ const RoleAssignments = models.RoleAssignments;
85
86
  const GetZoneStatisticsRequest = models.GetZoneStatisticsRequest;
86
87
  const NodeMainInfo = models.NodeMainInfo;
87
88
  const RemovePermissionPolicyFromRoleConfigurationRequest = models.RemovePermissionPolicyFromRoleConfigurationRequest;
89
+ const InviteOrganizationMemberRequest = models.InviteOrganizationMemberRequest;
88
90
  const ListTasksResponse = models.ListTasksResponse;
89
91
  const AddOrganizationNodeRequest = models.AddOrganizationNodeRequest;
90
92
  const OrgNode = models.OrgNode;
@@ -95,7 +97,7 @@ const DescribeOrganizationMemberAuthAccountsResponse = models.DescribeOrganizati
95
97
  const RoleAssignmentInfo = models.RoleAssignmentInfo;
96
98
  const ListRoleConfigurationProvisioningsRequest = models.ListRoleConfigurationProvisioningsRequest;
97
99
  const OrgIdentity = models.OrgIdentity;
98
- const DescribeOrganizationMembersRequest = models.DescribeOrganizationMembersRequest;
100
+ const DescribeIdentityCenterRequest = models.DescribeIdentityCenterRequest;
99
101
  const UserInfo = models.UserInfo;
100
102
  const JoinedGroups = models.JoinedGroups;
101
103
  const TaskInfo = models.TaskInfo;
@@ -140,6 +142,7 @@ const RemovePermissionPolicyFromRoleConfigurationResponse = models.RemovePermiss
140
142
  const ListRoleConfigurationsResponse = models.ListRoleConfigurationsResponse;
141
143
  const UpdateUserSyncProvisioningResponse = models.UpdateUserSyncProvisioningResponse;
142
144
  const CreateOrganizationMemberRequest = models.CreateOrganizationMemberRequest;
145
+ const AuthRelationFile = models.AuthRelationFile;
143
146
  const PolicyDetail = models.PolicyDetail;
144
147
  const OrgMemberAuthIdentity = models.OrgMemberAuthIdentity;
145
148
  const AddExternalSAMLIdPCertificateRequest = models.AddExternalSAMLIdPCertificateRequest;
@@ -158,9 +161,10 @@ const CreateRoleConfigurationRequest = models.CreateRoleConfigurationRequest;
158
161
  const GetRoleConfigurationRequest = models.GetRoleConfigurationRequest;
159
162
  const AddUserToGroupRequest = models.AddUserToGroupRequest;
160
163
  const RemoveUserFromGroupResponse = models.RemoveUserFromGroupResponse;
161
- const DescribeIdentityCenterRequest = models.DescribeIdentityCenterRequest;
164
+ const DescribeOrganizationMembersRequest = models.DescribeOrganizationMembersRequest;
162
165
  const ZoneStatistics = models.ZoneStatistics;
163
166
  const DescribeOrganizationNodesRequest = models.DescribeOrganizationNodesRequest;
167
+ const InviteOrganizationMemberResponse = models.InviteOrganizationMemberResponse;
164
168
  const AddExternalSAMLIdPCertificateResponse = models.AddExternalSAMLIdPCertificateResponse;
165
169
  const SAMLServiceProvider = models.SAMLServiceProvider;
166
170
  const CreateUserResponse = models.CreateUserResponse;
@@ -582,6 +586,17 @@ class OrganizationClient extends AbstractClient {
582
586
  this.request("GetGroup", req, resp, cb);
583
587
  }
584
588
 
589
+ /**
590
+ * This API is used to invite a member.
591
+ * @param {InviteOrganizationMemberRequest} req
592
+ * @param {function(string, InviteOrganizationMemberResponse):void} cb
593
+ * @public
594
+ */
595
+ InviteOrganizationMember(req, cb) {
596
+ let resp = new InviteOrganizationMemberResponse();
597
+ this.request("InviteOrganizationMember", req, resp, cb);
598
+ }
599
+
585
600
  /**
586
601
  * This API is used to modify user information.
587
602
  * @param {UpdateUserRequest} req