tencentcloud-sdk-nodejs-intl-en 3.0.1337 → 3.0.1339
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 +1 -1
- package/tencentcloud/billing/v20180709/models.js +92 -25
- package/tencentcloud/ciam/index.js +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/dbbrain/index.js +1 -1
- package/tencentcloud/dts/index.js +1 -1
- package/tencentcloud/hunyuan/v20230901/hunyuan_client.js +28 -2
- package/tencentcloud/hunyuan/v20230901/models.js +222 -42
- package/tencentcloud/intlpartnersmgt/v20220928/intlpartnersmgt_client.js +24 -9
- package/tencentcloud/intlpartnersmgt/v20220928/models.js +325 -62
- package/tencentcloud/organization/v20210331/models.js +319 -140
- package/tencentcloud/organization/v20210331/organization_client.js +18 -4
- package/tencentcloud/redis/v20180412/models.js +1145 -1022
- package/tencentcloud/redis/v20180412/redis_client.js +15 -1
- package/tencentcloud/teo/v20220901/models.js +1755 -461
- package/tencentcloud/teo/v20220901/teo_client.js +38 -15
- package/tencentcloud/tke/index.js +1 -1
- package/tencentcloud/vod/index.js +1 -1
- package/tencentcloud/wedata/index.js +1 -1
|
@@ -578,6 +578,84 @@ class DescribeShareUnitResourcesResponse extends AbstractModel {
|
|
|
578
578
|
}
|
|
579
579
|
}
|
|
580
580
|
|
|
581
|
+
/**
|
|
582
|
+
* CIC permission configuration.
|
|
583
|
+
* @class
|
|
584
|
+
*/
|
|
585
|
+
class RoleConfiguration extends AbstractModel {
|
|
586
|
+
constructor(){
|
|
587
|
+
super();
|
|
588
|
+
|
|
589
|
+
/**
|
|
590
|
+
* Permission configuration ID.
|
|
591
|
+
* @type {string || null}
|
|
592
|
+
*/
|
|
593
|
+
this.RoleConfigurationId = null;
|
|
594
|
+
|
|
595
|
+
/**
|
|
596
|
+
* Permission configuration name.
|
|
597
|
+
* @type {string || null}
|
|
598
|
+
*/
|
|
599
|
+
this.RoleConfigurationName = null;
|
|
600
|
+
|
|
601
|
+
/**
|
|
602
|
+
* Permission configuration description.
|
|
603
|
+
* @type {string || null}
|
|
604
|
+
*/
|
|
605
|
+
this.Description = null;
|
|
606
|
+
|
|
607
|
+
/**
|
|
608
|
+
* Session duration. It indicates the maximum session duration when CIC users use the access configuration to access member accounts.
|
|
609
|
+
Unit: seconds.
|
|
610
|
+
* @type {number || null}
|
|
611
|
+
*/
|
|
612
|
+
this.SessionDuration = null;
|
|
613
|
+
|
|
614
|
+
/**
|
|
615
|
+
* Initial access page. It indicates the initial access page URL when CIC users use the access configuration to access member accounts.
|
|
616
|
+
* @type {string || null}
|
|
617
|
+
*/
|
|
618
|
+
this.RelayState = null;
|
|
619
|
+
|
|
620
|
+
/**
|
|
621
|
+
* Creation time of the permission configuration.
|
|
622
|
+
* @type {string || null}
|
|
623
|
+
*/
|
|
624
|
+
this.CreateTime = null;
|
|
625
|
+
|
|
626
|
+
/**
|
|
627
|
+
* Update time of the permission configuration.
|
|
628
|
+
* @type {string || null}
|
|
629
|
+
*/
|
|
630
|
+
this.UpdateTime = null;
|
|
631
|
+
|
|
632
|
+
/**
|
|
633
|
+
* If the input parameter FilterTargets is provided, check whether the member account has been configured with permissions. If configured, return true; otherwise, return false.
|
|
634
|
+
* @type {boolean || null}
|
|
635
|
+
*/
|
|
636
|
+
this.IsSelected = null;
|
|
637
|
+
|
|
638
|
+
}
|
|
639
|
+
|
|
640
|
+
/**
|
|
641
|
+
* @private
|
|
642
|
+
*/
|
|
643
|
+
deserialize(params) {
|
|
644
|
+
if (!params) {
|
|
645
|
+
return;
|
|
646
|
+
}
|
|
647
|
+
this.RoleConfigurationId = 'RoleConfigurationId' in params ? params.RoleConfigurationId : null;
|
|
648
|
+
this.RoleConfigurationName = 'RoleConfigurationName' in params ? params.RoleConfigurationName : null;
|
|
649
|
+
this.Description = 'Description' in params ? params.Description : null;
|
|
650
|
+
this.SessionDuration = 'SessionDuration' in params ? params.SessionDuration : null;
|
|
651
|
+
this.RelayState = 'RelayState' in params ? params.RelayState : null;
|
|
652
|
+
this.CreateTime = 'CreateTime' in params ? params.CreateTime : null;
|
|
653
|
+
this.UpdateTime = 'UpdateTime' in params ? params.UpdateTime : null;
|
|
654
|
+
this.IsSelected = 'IsSelected' in params ? params.IsSelected : null;
|
|
655
|
+
|
|
656
|
+
}
|
|
657
|
+
}
|
|
658
|
+
|
|
581
659
|
/**
|
|
582
660
|
* DescribeOrganizationMemberEmailBind response structure.
|
|
583
661
|
* @class
|
|
@@ -3869,6 +3947,56 @@ class OrgPermission extends AbstractModel {
|
|
|
3869
3947
|
}
|
|
3870
3948
|
}
|
|
3871
3949
|
|
|
3950
|
+
/**
|
|
3951
|
+
* ListPolicies response structure.
|
|
3952
|
+
* @class
|
|
3953
|
+
*/
|
|
3954
|
+
class ListPoliciesResponse extends AbstractModel {
|
|
3955
|
+
constructor(){
|
|
3956
|
+
super();
|
|
3957
|
+
|
|
3958
|
+
/**
|
|
3959
|
+
* Total number of policies
|
|
3960
|
+
* @type {number || null}
|
|
3961
|
+
*/
|
|
3962
|
+
this.TotalNum = null;
|
|
3963
|
+
|
|
3964
|
+
/**
|
|
3965
|
+
* Policy list data.
|
|
3966
|
+
* @type {Array.<ListPolicyNode> || null}
|
|
3967
|
+
*/
|
|
3968
|
+
this.List = null;
|
|
3969
|
+
|
|
3970
|
+
/**
|
|
3971
|
+
* 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.
|
|
3972
|
+
* @type {string || null}
|
|
3973
|
+
*/
|
|
3974
|
+
this.RequestId = null;
|
|
3975
|
+
|
|
3976
|
+
}
|
|
3977
|
+
|
|
3978
|
+
/**
|
|
3979
|
+
* @private
|
|
3980
|
+
*/
|
|
3981
|
+
deserialize(params) {
|
|
3982
|
+
if (!params) {
|
|
3983
|
+
return;
|
|
3984
|
+
}
|
|
3985
|
+
this.TotalNum = 'TotalNum' in params ? params.TotalNum : null;
|
|
3986
|
+
|
|
3987
|
+
if (params.List) {
|
|
3988
|
+
this.List = new Array();
|
|
3989
|
+
for (let z in params.List) {
|
|
3990
|
+
let obj = new ListPolicyNode();
|
|
3991
|
+
obj.deserialize(params.List[z]);
|
|
3992
|
+
this.List.push(obj);
|
|
3993
|
+
}
|
|
3994
|
+
}
|
|
3995
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
3996
|
+
|
|
3997
|
+
}
|
|
3998
|
+
}
|
|
3999
|
+
|
|
3872
4000
|
/**
|
|
3873
4001
|
* BindOrganizationMemberAuthAccount request structure.
|
|
3874
4002
|
* @class
|
|
@@ -8992,60 +9120,54 @@ class GetProvisioningTaskStatusResponse extends AbstractModel {
|
|
|
8992
9120
|
}
|
|
8993
9121
|
|
|
8994
9122
|
/**
|
|
8995
|
-
*
|
|
9123
|
+
* Enterprise organization policy list.
|
|
8996
9124
|
* @class
|
|
8997
9125
|
*/
|
|
8998
|
-
class
|
|
9126
|
+
class ListPolicyNode extends AbstractModel {
|
|
8999
9127
|
constructor(){
|
|
9000
9128
|
super();
|
|
9001
9129
|
|
|
9002
9130
|
/**
|
|
9003
|
-
* Policy
|
|
9004
|
-
* @type {number || null}
|
|
9005
|
-
*/
|
|
9006
|
-
this.PolicyId = null;
|
|
9007
|
-
|
|
9008
|
-
/**
|
|
9009
|
-
* Policy name.
|
|
9131
|
+
* Policy creation time.
|
|
9010
9132
|
* @type {string || null}
|
|
9011
9133
|
*/
|
|
9012
|
-
this.
|
|
9134
|
+
this.AddTime = null;
|
|
9013
9135
|
|
|
9014
9136
|
/**
|
|
9015
|
-
*
|
|
9137
|
+
* Policy binding count.
|
|
9016
9138
|
* @type {number || null}
|
|
9017
9139
|
*/
|
|
9018
|
-
this.
|
|
9140
|
+
this.AttachedTimes = null;
|
|
9019
9141
|
|
|
9020
9142
|
/**
|
|
9021
|
-
*
|
|
9143
|
+
* Policy description information.
|
|
9022
9144
|
* @type {string || null}
|
|
9023
9145
|
*/
|
|
9024
|
-
this.
|
|
9146
|
+
this.Description = null;
|
|
9025
9147
|
|
|
9026
9148
|
/**
|
|
9027
|
-
*
|
|
9149
|
+
* Policy name.
|
|
9028
9150
|
* @type {string || null}
|
|
9029
9151
|
*/
|
|
9030
|
-
this.
|
|
9152
|
+
this.PolicyName = null;
|
|
9031
9153
|
|
|
9032
9154
|
/**
|
|
9033
|
-
*
|
|
9034
|
-
* @type {
|
|
9155
|
+
* Policy ID
|
|
9156
|
+
* @type {number || null}
|
|
9035
9157
|
*/
|
|
9036
|
-
this.
|
|
9158
|
+
this.PolicyId = null;
|
|
9037
9159
|
|
|
9038
9160
|
/**
|
|
9039
|
-
*
|
|
9161
|
+
* Policy update time
|
|
9040
9162
|
* @type {string || null}
|
|
9041
9163
|
*/
|
|
9042
|
-
this.
|
|
9164
|
+
this.UpdateTime = null;
|
|
9043
9165
|
|
|
9044
9166
|
/**
|
|
9045
|
-
*
|
|
9046
|
-
* @type {
|
|
9167
|
+
* Policy type. 1: custom; 2: preset.
|
|
9168
|
+
* @type {number || null}
|
|
9047
9169
|
*/
|
|
9048
|
-
this.
|
|
9170
|
+
this.Type = null;
|
|
9049
9171
|
|
|
9050
9172
|
}
|
|
9051
9173
|
|
|
@@ -9056,14 +9178,13 @@ class OrgMemberPolicy extends AbstractModel {
|
|
|
9056
9178
|
if (!params) {
|
|
9057
9179
|
return;
|
|
9058
9180
|
}
|
|
9059
|
-
this.
|
|
9060
|
-
this.
|
|
9061
|
-
this.IdentityId = 'IdentityId' in params ? params.IdentityId : null;
|
|
9062
|
-
this.IdentityRoleName = 'IdentityRoleName' in params ? params.IdentityRoleName : null;
|
|
9063
|
-
this.IdentityRoleAliasName = 'IdentityRoleAliasName' in params ? params.IdentityRoleAliasName : null;
|
|
9181
|
+
this.AddTime = 'AddTime' in params ? params.AddTime : null;
|
|
9182
|
+
this.AttachedTimes = 'AttachedTimes' in params ? params.AttachedTimes : null;
|
|
9064
9183
|
this.Description = 'Description' in params ? params.Description : null;
|
|
9065
|
-
this.
|
|
9184
|
+
this.PolicyName = 'PolicyName' in params ? params.PolicyName : null;
|
|
9185
|
+
this.PolicyId = 'PolicyId' in params ? params.PolicyId : null;
|
|
9066
9186
|
this.UpdateTime = 'UpdateTime' in params ? params.UpdateTime : null;
|
|
9187
|
+
this.Type = 'Type' in params ? params.Type : null;
|
|
9067
9188
|
|
|
9068
9189
|
}
|
|
9069
9190
|
}
|
|
@@ -9765,61 +9886,60 @@ class CreateRoleAssignmentResponse extends AbstractModel {
|
|
|
9765
9886
|
}
|
|
9766
9887
|
|
|
9767
9888
|
/**
|
|
9768
|
-
*
|
|
9889
|
+
* Authorized policy of the organization member
|
|
9769
9890
|
* @class
|
|
9770
9891
|
*/
|
|
9771
|
-
class
|
|
9892
|
+
class OrgMemberPolicy extends AbstractModel {
|
|
9772
9893
|
constructor(){
|
|
9773
9894
|
super();
|
|
9774
9895
|
|
|
9775
9896
|
/**
|
|
9776
|
-
*
|
|
9777
|
-
* @type {
|
|
9897
|
+
* Policy ID.
|
|
9898
|
+
* @type {number || null}
|
|
9778
9899
|
*/
|
|
9779
|
-
this.
|
|
9900
|
+
this.PolicyId = null;
|
|
9780
9901
|
|
|
9781
9902
|
/**
|
|
9782
|
-
*
|
|
9903
|
+
* Policy name.
|
|
9783
9904
|
* @type {string || null}
|
|
9784
9905
|
*/
|
|
9785
|
-
this.
|
|
9906
|
+
this.PolicyName = null;
|
|
9786
9907
|
|
|
9787
9908
|
/**
|
|
9788
|
-
*
|
|
9789
|
-
* @type {
|
|
9909
|
+
* Identity ID.
|
|
9910
|
+
* @type {number || null}
|
|
9790
9911
|
*/
|
|
9791
|
-
this.
|
|
9912
|
+
this.IdentityId = null;
|
|
9792
9913
|
|
|
9793
9914
|
/**
|
|
9794
|
-
*
|
|
9795
|
-
|
|
9796
|
-
* @type {number || null}
|
|
9915
|
+
* Identity role name.
|
|
9916
|
+
* @type {string || null}
|
|
9797
9917
|
*/
|
|
9798
|
-
this.
|
|
9918
|
+
this.IdentityRoleName = null;
|
|
9799
9919
|
|
|
9800
9920
|
/**
|
|
9801
|
-
*
|
|
9921
|
+
* Role alias of an identity.
|
|
9802
9922
|
* @type {string || null}
|
|
9803
9923
|
*/
|
|
9804
|
-
this.
|
|
9924
|
+
this.IdentityRoleAliasName = null;
|
|
9805
9925
|
|
|
9806
9926
|
/**
|
|
9807
|
-
*
|
|
9927
|
+
* Description.
|
|
9808
9928
|
* @type {string || null}
|
|
9809
9929
|
*/
|
|
9810
|
-
this.
|
|
9930
|
+
this.Description = null;
|
|
9811
9931
|
|
|
9812
9932
|
/**
|
|
9813
|
-
*
|
|
9933
|
+
* Creation time.
|
|
9814
9934
|
* @type {string || null}
|
|
9815
9935
|
*/
|
|
9816
|
-
this.
|
|
9936
|
+
this.CreateTime = null;
|
|
9817
9937
|
|
|
9818
9938
|
/**
|
|
9819
|
-
*
|
|
9820
|
-
* @type {
|
|
9939
|
+
* Update time.
|
|
9940
|
+
* @type {string || null}
|
|
9821
9941
|
*/
|
|
9822
|
-
this.
|
|
9942
|
+
this.UpdateTime = null;
|
|
9823
9943
|
|
|
9824
9944
|
}
|
|
9825
9945
|
|
|
@@ -9830,14 +9950,14 @@ Unit: seconds.
|
|
|
9830
9950
|
if (!params) {
|
|
9831
9951
|
return;
|
|
9832
9952
|
}
|
|
9833
|
-
this.
|
|
9834
|
-
this.
|
|
9953
|
+
this.PolicyId = 'PolicyId' in params ? params.PolicyId : null;
|
|
9954
|
+
this.PolicyName = 'PolicyName' in params ? params.PolicyName : null;
|
|
9955
|
+
this.IdentityId = 'IdentityId' in params ? params.IdentityId : null;
|
|
9956
|
+
this.IdentityRoleName = 'IdentityRoleName' in params ? params.IdentityRoleName : null;
|
|
9957
|
+
this.IdentityRoleAliasName = 'IdentityRoleAliasName' in params ? params.IdentityRoleAliasName : null;
|
|
9835
9958
|
this.Description = 'Description' in params ? params.Description : null;
|
|
9836
|
-
this.SessionDuration = 'SessionDuration' in params ? params.SessionDuration : null;
|
|
9837
|
-
this.RelayState = 'RelayState' in params ? params.RelayState : null;
|
|
9838
9959
|
this.CreateTime = 'CreateTime' in params ? params.CreateTime : null;
|
|
9839
9960
|
this.UpdateTime = 'UpdateTime' in params ? params.UpdateTime : null;
|
|
9840
|
-
this.IsSelected = 'IsSelected' in params ? params.IsSelected : null;
|
|
9841
9961
|
|
|
9842
9962
|
}
|
|
9843
9963
|
}
|
|
@@ -10222,48 +10342,42 @@ class RemovePermissionPolicyFromRoleConfigurationResponse extends AbstractModel
|
|
|
10222
10342
|
}
|
|
10223
10343
|
|
|
10224
10344
|
/**
|
|
10225
|
-
*
|
|
10345
|
+
* ListPolicies request structure.
|
|
10226
10346
|
* @class
|
|
10227
10347
|
*/
|
|
10228
|
-
class
|
|
10348
|
+
class ListPoliciesRequest extends AbstractModel {
|
|
10229
10349
|
constructor(){
|
|
10230
10350
|
super();
|
|
10231
10351
|
|
|
10232
10352
|
/**
|
|
10233
|
-
*
|
|
10353
|
+
* Items per page, which should be greater than 0 and less than or equal to 200. The default value is 20.
|
|
10234
10354
|
* @type {number || null}
|
|
10235
10355
|
*/
|
|
10236
|
-
this.
|
|
10356
|
+
this.Rp = null;
|
|
10237
10357
|
|
|
10238
10358
|
/**
|
|
10239
|
-
*
|
|
10359
|
+
* Page number, which starts from 1 and cannot exceed 200. The default value is 1.
|
|
10240
10360
|
* @type {number || null}
|
|
10241
10361
|
*/
|
|
10242
|
-
this.
|
|
10243
|
-
|
|
10244
|
-
/**
|
|
10245
|
-
* Whether the returned result is truncated. Valid values: true: truncated; false: not truncated.
|
|
10246
|
-
* @type {boolean || null}
|
|
10247
|
-
*/
|
|
10248
|
-
this.IsTruncated = null;
|
|
10362
|
+
this.Page = null;
|
|
10249
10363
|
|
|
10250
10364
|
/**
|
|
10251
|
-
*
|
|
10365
|
+
* Query range. Valid values: All: all policies; QCS; only preset policies; Local: only custom policies. The default value is All.
|
|
10252
10366
|
* @type {string || null}
|
|
10253
10367
|
*/
|
|
10254
|
-
this.
|
|
10368
|
+
this.Scope = null;
|
|
10255
10369
|
|
|
10256
10370
|
/**
|
|
10257
|
-
*
|
|
10258
|
-
* @type {
|
|
10371
|
+
* Search keyword. Searches can be performed by policy name.
|
|
10372
|
+
* @type {string || null}
|
|
10259
10373
|
*/
|
|
10260
|
-
this.
|
|
10374
|
+
this.Keyword = null;
|
|
10261
10375
|
|
|
10262
10376
|
/**
|
|
10263
|
-
*
|
|
10377
|
+
* Policy type. Valid values: SERVICE_CONTROL_POLICY: service control policy; TAG_POLICY: tag policy. The default value is SERVICE_CONTROL_POLICY.
|
|
10264
10378
|
* @type {string || null}
|
|
10265
10379
|
*/
|
|
10266
|
-
this.
|
|
10380
|
+
this.PolicyType = null;
|
|
10267
10381
|
|
|
10268
10382
|
}
|
|
10269
10383
|
|
|
@@ -10274,20 +10388,11 @@ class ListRoleConfigurationsResponse extends AbstractModel {
|
|
|
10274
10388
|
if (!params) {
|
|
10275
10389
|
return;
|
|
10276
10390
|
}
|
|
10277
|
-
this.
|
|
10278
|
-
this.
|
|
10279
|
-
this.
|
|
10280
|
-
this.
|
|
10281
|
-
|
|
10282
|
-
if (params.RoleConfigurations) {
|
|
10283
|
-
this.RoleConfigurations = new Array();
|
|
10284
|
-
for (let z in params.RoleConfigurations) {
|
|
10285
|
-
let obj = new RoleConfiguration();
|
|
10286
|
-
obj.deserialize(params.RoleConfigurations[z]);
|
|
10287
|
-
this.RoleConfigurations.push(obj);
|
|
10288
|
-
}
|
|
10289
|
-
}
|
|
10290
|
-
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
10391
|
+
this.Rp = 'Rp' in params ? params.Rp : null;
|
|
10392
|
+
this.Page = 'Page' in params ? params.Page : null;
|
|
10393
|
+
this.Scope = 'Scope' in params ? params.Scope : null;
|
|
10394
|
+
this.Keyword = 'Keyword' in params ? params.Keyword : null;
|
|
10395
|
+
this.PolicyType = 'PolicyType' in params ? params.PolicyType : null;
|
|
10291
10396
|
|
|
10292
10397
|
}
|
|
10293
10398
|
}
|
|
@@ -12386,66 +12491,48 @@ class GetZoneSAMLServiceProviderInfoRequest extends AbstractModel {
|
|
|
12386
12491
|
}
|
|
12387
12492
|
|
|
12388
12493
|
/**
|
|
12389
|
-
*
|
|
12494
|
+
* ListRoleConfigurations response structure.
|
|
12390
12495
|
* @class
|
|
12391
12496
|
*/
|
|
12392
|
-
class
|
|
12497
|
+
class ListRoleConfigurationsResponse extends AbstractModel {
|
|
12393
12498
|
constructor(){
|
|
12394
12499
|
super();
|
|
12395
12500
|
|
|
12396
12501
|
/**
|
|
12397
|
-
*
|
|
12398
|
-
* @type {number || null}
|
|
12399
|
-
*/
|
|
12400
|
-
this.UserQuota = null;
|
|
12401
|
-
|
|
12402
|
-
/**
|
|
12403
|
-
* User group quota.
|
|
12404
|
-
* @type {number || null}
|
|
12405
|
-
*/
|
|
12406
|
-
this.GroupQuota = null;
|
|
12407
|
-
|
|
12408
|
-
/**
|
|
12409
|
-
* Permission configuration quota.
|
|
12410
|
-
* @type {number || null}
|
|
12411
|
-
*/
|
|
12412
|
-
this.RoleConfigurationQuota = null;
|
|
12413
|
-
|
|
12414
|
-
/**
|
|
12415
|
-
* System policy quota bound to the permission configuration.
|
|
12502
|
+
* Total number of data entries that meet the request parameter conditions.
|
|
12416
12503
|
* @type {number || null}
|
|
12417
12504
|
*/
|
|
12418
|
-
this.
|
|
12505
|
+
this.TotalCounts = null;
|
|
12419
12506
|
|
|
12420
12507
|
/**
|
|
12421
|
-
*
|
|
12508
|
+
* Maximum number of data entries per page.
|
|
12422
12509
|
* @type {number || null}
|
|
12423
12510
|
*/
|
|
12424
|
-
this.
|
|
12511
|
+
this.MaxResults = null;
|
|
12425
12512
|
|
|
12426
12513
|
/**
|
|
12427
|
-
*
|
|
12428
|
-
* @type {
|
|
12514
|
+
* Whether the returned result is truncated. Valid values: true: truncated; false: not truncated.
|
|
12515
|
+
* @type {boolean || null}
|
|
12429
12516
|
*/
|
|
12430
|
-
this.
|
|
12517
|
+
this.IsTruncated = null;
|
|
12431
12518
|
|
|
12432
12519
|
/**
|
|
12433
|
-
*
|
|
12434
|
-
* @type {
|
|
12520
|
+
* Token for querying the next page of returned results. Note: This parameter is displayed only when IsTruncated is true.
|
|
12521
|
+
* @type {string || null}
|
|
12435
12522
|
*/
|
|
12436
|
-
this.
|
|
12523
|
+
this.NextToken = null;
|
|
12437
12524
|
|
|
12438
12525
|
/**
|
|
12439
|
-
*
|
|
12440
|
-
* @type {
|
|
12526
|
+
* Permission configuration list.
|
|
12527
|
+
* @type {Array.<RoleConfiguration> || null}
|
|
12441
12528
|
*/
|
|
12442
|
-
this.
|
|
12529
|
+
this.RoleConfigurations = null;
|
|
12443
12530
|
|
|
12444
12531
|
/**
|
|
12445
|
-
*
|
|
12446
|
-
* @type {
|
|
12532
|
+
* 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.
|
|
12533
|
+
* @type {string || null}
|
|
12447
12534
|
*/
|
|
12448
|
-
this.
|
|
12535
|
+
this.RequestId = null;
|
|
12449
12536
|
|
|
12450
12537
|
}
|
|
12451
12538
|
|
|
@@ -12456,15 +12543,20 @@ class ZoneStatistics extends AbstractModel {
|
|
|
12456
12543
|
if (!params) {
|
|
12457
12544
|
return;
|
|
12458
12545
|
}
|
|
12459
|
-
this.
|
|
12460
|
-
this.
|
|
12461
|
-
this.
|
|
12462
|
-
this.
|
|
12463
|
-
|
|
12464
|
-
|
|
12465
|
-
|
|
12466
|
-
|
|
12467
|
-
|
|
12546
|
+
this.TotalCounts = 'TotalCounts' in params ? params.TotalCounts : null;
|
|
12547
|
+
this.MaxResults = 'MaxResults' in params ? params.MaxResults : null;
|
|
12548
|
+
this.IsTruncated = 'IsTruncated' in params ? params.IsTruncated : null;
|
|
12549
|
+
this.NextToken = 'NextToken' in params ? params.NextToken : null;
|
|
12550
|
+
|
|
12551
|
+
if (params.RoleConfigurations) {
|
|
12552
|
+
this.RoleConfigurations = new Array();
|
|
12553
|
+
for (let z in params.RoleConfigurations) {
|
|
12554
|
+
let obj = new RoleConfiguration();
|
|
12555
|
+
obj.deserialize(params.RoleConfigurations[z]);
|
|
12556
|
+
this.RoleConfigurations.push(obj);
|
|
12557
|
+
}
|
|
12558
|
+
}
|
|
12559
|
+
this.RequestId = 'RequestId' in params ? params.RequestId : null;
|
|
12468
12560
|
|
|
12469
12561
|
}
|
|
12470
12562
|
}
|
|
@@ -13708,6 +13800,90 @@ class ShareUnitNode extends AbstractModel {
|
|
|
13708
13800
|
}
|
|
13709
13801
|
}
|
|
13710
13802
|
|
|
13803
|
+
/**
|
|
13804
|
+
* CIC space statistics.
|
|
13805
|
+
* @class
|
|
13806
|
+
*/
|
|
13807
|
+
class ZoneStatistics extends AbstractModel {
|
|
13808
|
+
constructor(){
|
|
13809
|
+
super();
|
|
13810
|
+
|
|
13811
|
+
/**
|
|
13812
|
+
* User quota.
|
|
13813
|
+
* @type {number || null}
|
|
13814
|
+
*/
|
|
13815
|
+
this.UserQuota = null;
|
|
13816
|
+
|
|
13817
|
+
/**
|
|
13818
|
+
* User group quota.
|
|
13819
|
+
* @type {number || null}
|
|
13820
|
+
*/
|
|
13821
|
+
this.GroupQuota = null;
|
|
13822
|
+
|
|
13823
|
+
/**
|
|
13824
|
+
* Permission configuration quota.
|
|
13825
|
+
* @type {number || null}
|
|
13826
|
+
*/
|
|
13827
|
+
this.RoleConfigurationQuota = null;
|
|
13828
|
+
|
|
13829
|
+
/**
|
|
13830
|
+
* System policy quota bound to the permission configuration.
|
|
13831
|
+
* @type {number || null}
|
|
13832
|
+
*/
|
|
13833
|
+
this.SystemPolicyPerRoleConfigurationQuota = null;
|
|
13834
|
+
|
|
13835
|
+
/**
|
|
13836
|
+
* Number of users.
|
|
13837
|
+
* @type {number || null}
|
|
13838
|
+
*/
|
|
13839
|
+
this.UserCount = null;
|
|
13840
|
+
|
|
13841
|
+
/**
|
|
13842
|
+
* Number of user groups.
|
|
13843
|
+
* @type {number || null}
|
|
13844
|
+
*/
|
|
13845
|
+
this.GroupCount = null;
|
|
13846
|
+
|
|
13847
|
+
/**
|
|
13848
|
+
* Number of permission configurations.
|
|
13849
|
+
* @type {number || null}
|
|
13850
|
+
*/
|
|
13851
|
+
this.RoleConfigurationCount = null;
|
|
13852
|
+
|
|
13853
|
+
/**
|
|
13854
|
+
* Number of synchronized users.
|
|
13855
|
+
* @type {number || null}
|
|
13856
|
+
*/
|
|
13857
|
+
this.UserProvisioningCount = null;
|
|
13858
|
+
|
|
13859
|
+
/**
|
|
13860
|
+
* Number of synchronized roles.
|
|
13861
|
+
* @type {number || null}
|
|
13862
|
+
*/
|
|
13863
|
+
this.RoleConfigurationSyncCount = null;
|
|
13864
|
+
|
|
13865
|
+
}
|
|
13866
|
+
|
|
13867
|
+
/**
|
|
13868
|
+
* @private
|
|
13869
|
+
*/
|
|
13870
|
+
deserialize(params) {
|
|
13871
|
+
if (!params) {
|
|
13872
|
+
return;
|
|
13873
|
+
}
|
|
13874
|
+
this.UserQuota = 'UserQuota' in params ? params.UserQuota : null;
|
|
13875
|
+
this.GroupQuota = 'GroupQuota' in params ? params.GroupQuota : null;
|
|
13876
|
+
this.RoleConfigurationQuota = 'RoleConfigurationQuota' in params ? params.RoleConfigurationQuota : null;
|
|
13877
|
+
this.SystemPolicyPerRoleConfigurationQuota = 'SystemPolicyPerRoleConfigurationQuota' in params ? params.SystemPolicyPerRoleConfigurationQuota : null;
|
|
13878
|
+
this.UserCount = 'UserCount' in params ? params.UserCount : null;
|
|
13879
|
+
this.GroupCount = 'GroupCount' in params ? params.GroupCount : null;
|
|
13880
|
+
this.RoleConfigurationCount = 'RoleConfigurationCount' in params ? params.RoleConfigurationCount : null;
|
|
13881
|
+
this.UserProvisioningCount = 'UserProvisioningCount' in params ? params.UserProvisioningCount : null;
|
|
13882
|
+
this.RoleConfigurationSyncCount = 'RoleConfigurationSyncCount' in params ? params.RoleConfigurationSyncCount : null;
|
|
13883
|
+
|
|
13884
|
+
}
|
|
13885
|
+
}
|
|
13886
|
+
|
|
13711
13887
|
/**
|
|
13712
13888
|
* DeleteOrganizationNodes response structure.
|
|
13713
13889
|
* @class
|
|
@@ -14478,6 +14654,7 @@ module.exports = {
|
|
|
14478
14654
|
RoleConfigurationProvisionings: RoleConfigurationProvisionings,
|
|
14479
14655
|
UpdatePolicyRequest: UpdatePolicyRequest,
|
|
14480
14656
|
DescribeShareUnitResourcesResponse: DescribeShareUnitResourcesResponse,
|
|
14657
|
+
RoleConfiguration: RoleConfiguration,
|
|
14481
14658
|
DescribeOrganizationMemberEmailBindResponse: DescribeOrganizationMemberEmailBindResponse,
|
|
14482
14659
|
EnablePolicyTypeResponse: EnablePolicyTypeResponse,
|
|
14483
14660
|
ListTargetsForPolicyResponse: ListTargetsForPolicyResponse,
|
|
@@ -14549,6 +14726,7 @@ module.exports = {
|
|
|
14549
14726
|
RemoveUserFromGroupRequest: RemoveUserFromGroupRequest,
|
|
14550
14727
|
AddPermissionPolicyToRoleConfigurationRequest: AddPermissionPolicyToRoleConfigurationRequest,
|
|
14551
14728
|
OrgPermission: OrgPermission,
|
|
14729
|
+
ListPoliciesResponse: ListPoliciesResponse,
|
|
14552
14730
|
BindOrganizationMemberAuthAccountRequest: BindOrganizationMemberAuthAccountRequest,
|
|
14553
14731
|
DescribeShareUnitsResponse: DescribeShareUnitsResponse,
|
|
14554
14732
|
SAMLIdentityProviderConfiguration: SAMLIdentityProviderConfiguration,
|
|
@@ -14658,7 +14836,7 @@ module.exports = {
|
|
|
14658
14836
|
RemoveUserFromGroupResponse: RemoveUserFromGroupResponse,
|
|
14659
14837
|
GetGroupResponse: GetGroupResponse,
|
|
14660
14838
|
GetProvisioningTaskStatusResponse: GetProvisioningTaskStatusResponse,
|
|
14661
|
-
|
|
14839
|
+
ListPolicyNode: ListPolicyNode,
|
|
14662
14840
|
ResourceTagMapping: ResourceTagMapping,
|
|
14663
14841
|
CreateOrganizationMemberPolicyResponse: CreateOrganizationMemberPolicyResponse,
|
|
14664
14842
|
UpdateSCIMSynchronizationStatusRequest: UpdateSCIMSynchronizationStatusRequest,
|
|
@@ -14675,7 +14853,7 @@ module.exports = {
|
|
|
14675
14853
|
ListUsersRequest: ListUsersRequest,
|
|
14676
14854
|
DescribeOrganizationMemberAuthIdentitiesResponse: DescribeOrganizationMemberAuthIdentitiesResponse,
|
|
14677
14855
|
CreateRoleAssignmentResponse: CreateRoleAssignmentResponse,
|
|
14678
|
-
|
|
14856
|
+
OrgMemberPolicy: OrgMemberPolicy,
|
|
14679
14857
|
CreateUserRequest: CreateUserRequest,
|
|
14680
14858
|
QuitOrganizationResponse: QuitOrganizationResponse,
|
|
14681
14859
|
DescribeResourceToShareMemberResponse: DescribeResourceToShareMemberResponse,
|
|
@@ -14686,7 +14864,7 @@ module.exports = {
|
|
|
14686
14864
|
DeleteOrganizationIdentityResponse: DeleteOrganizationIdentityResponse,
|
|
14687
14865
|
DescribeOrganizationMemberEmailBindRequest: DescribeOrganizationMemberEmailBindRequest,
|
|
14688
14866
|
RemovePermissionPolicyFromRoleConfigurationResponse: RemovePermissionPolicyFromRoleConfigurationResponse,
|
|
14689
|
-
|
|
14867
|
+
ListPoliciesRequest: ListPoliciesRequest,
|
|
14690
14868
|
BindOrganizationPolicySubAccountRequest: BindOrganizationPolicySubAccountRequest,
|
|
14691
14869
|
OrgMemberAuthAccount: OrgMemberAuthAccount,
|
|
14692
14870
|
UpdateOrganizationMembersPolicyRequest: UpdateOrganizationMembersPolicyRequest,
|
|
@@ -14724,7 +14902,7 @@ module.exports = {
|
|
|
14724
14902
|
CreateOrganizationIdentityResponse: CreateOrganizationIdentityResponse,
|
|
14725
14903
|
DescribeOrganizationMembersRequest: DescribeOrganizationMembersRequest,
|
|
14726
14904
|
GetZoneSAMLServiceProviderInfoRequest: GetZoneSAMLServiceProviderInfoRequest,
|
|
14727
|
-
|
|
14905
|
+
ListRoleConfigurationsResponse: ListRoleConfigurationsResponse,
|
|
14728
14906
|
ListSCIMCredentialsResponse: ListSCIMCredentialsResponse,
|
|
14729
14907
|
DescribeOrganizationNodesRequest: DescribeOrganizationNodesRequest,
|
|
14730
14908
|
ShareResourceToMember: ShareResourceToMember,
|
|
@@ -14754,6 +14932,7 @@ module.exports = {
|
|
|
14754
14932
|
DeleteOrganizationIdentityRequest: DeleteOrganizationIdentityRequest,
|
|
14755
14933
|
UpdateOrganizationNodeRequest: UpdateOrganizationNodeRequest,
|
|
14756
14934
|
ShareUnitNode: ShareUnitNode,
|
|
14935
|
+
ZoneStatistics: ZoneStatistics,
|
|
14757
14936
|
DeleteOrganizationNodesResponse: DeleteOrganizationNodesResponse,
|
|
14758
14937
|
AddUserToGroupResponse: AddUserToGroupResponse,
|
|
14759
14938
|
ProductResource: ProductResource,
|