@@ -218,11 +218,31 @@ import {
218
218
DetachUserPolicyCommandInput ,
219
219
DetachUserPolicyCommandOutput ,
220
220
} from "./commands/DetachUserPolicyCommand" ;
221
+ import {
222
+ DisableOrganizationsRootCredentialsManagementCommand ,
223
+ DisableOrganizationsRootCredentialsManagementCommandInput ,
224
+ DisableOrganizationsRootCredentialsManagementCommandOutput ,
225
+ } from "./commands/DisableOrganizationsRootCredentialsManagementCommand" ;
226
+ import {
227
+ DisableOrganizationsRootSessionsCommand ,
228
+ DisableOrganizationsRootSessionsCommandInput ,
229
+ DisableOrganizationsRootSessionsCommandOutput ,
230
+ } from "./commands/DisableOrganizationsRootSessionsCommand" ;
221
231
import {
222
232
EnableMFADeviceCommand ,
223
233
EnableMFADeviceCommandInput ,
224
234
EnableMFADeviceCommandOutput ,
225
235
} from "./commands/EnableMFADeviceCommand" ;
236
+ import {
237
+ EnableOrganizationsRootCredentialsManagementCommand ,
238
+ EnableOrganizationsRootCredentialsManagementCommandInput ,
239
+ EnableOrganizationsRootCredentialsManagementCommandOutput ,
240
+ } from "./commands/EnableOrganizationsRootCredentialsManagementCommand" ;
241
+ import {
242
+ EnableOrganizationsRootSessionsCommand ,
243
+ EnableOrganizationsRootSessionsCommandInput ,
244
+ EnableOrganizationsRootSessionsCommandOutput ,
245
+ } from "./commands/EnableOrganizationsRootSessionsCommand" ;
226
246
import {
227
247
GenerateCredentialReportCommand ,
228
248
GenerateCredentialReportCommandInput ,
@@ -428,6 +448,11 @@ import {
428
448
ListOpenIDConnectProviderTagsCommandInput ,
429
449
ListOpenIDConnectProviderTagsCommandOutput ,
430
450
} from "./commands/ListOpenIDConnectProviderTagsCommand" ;
451
+ import {
452
+ ListOrganizationsFeaturesCommand ,
453
+ ListOrganizationsFeaturesCommandInput ,
454
+ ListOrganizationsFeaturesCommandOutput ,
455
+ } from "./commands/ListOrganizationsFeaturesCommand" ;
431
456
import {
432
457
ListPoliciesCommand ,
433
458
ListPoliciesCommandInput ,
@@ -760,7 +785,11 @@ const commands = {
760
785
DetachGroupPolicyCommand,
761
786
DetachRolePolicyCommand,
762
787
DetachUserPolicyCommand,
788
+ DisableOrganizationsRootCredentialsManagementCommand,
789
+ DisableOrganizationsRootSessionsCommand,
763
790
EnableMFADeviceCommand,
791
+ EnableOrganizationsRootCredentialsManagementCommand,
792
+ EnableOrganizationsRootSessionsCommand,
764
793
GenerateCredentialReportCommand,
765
794
GenerateOrganizationsAccessReportCommand,
766
795
GenerateServiceLastAccessedDetailsCommand,
@@ -806,6 +835,7 @@ const commands = {
806
835
ListMFADeviceTagsCommand,
807
836
ListOpenIDConnectProvidersCommand,
808
837
ListOpenIDConnectProviderTagsCommand,
838
+ ListOrganizationsFeaturesCommand,
809
839
ListPoliciesCommand,
810
840
ListPoliciesGrantingServiceAccessCommand,
811
841
ListPolicyTagsCommand,
@@ -1050,6 +1080,7 @@ export interface IAM {
1050
1080
/**
1051
1081
* @see {@link CreateLoginProfileCommand }
1052
1082
*/
1083
+ createLoginProfile ( ) : Promise < CreateLoginProfileCommandOutput > ;
1053
1084
createLoginProfile (
1054
1085
args : CreateLoginProfileCommandInput ,
1055
1086
options ?: __HttpHandlerOptions
@@ -1313,6 +1344,7 @@ export interface IAM {
1313
1344
/**
1314
1345
* @see {@link DeleteLoginProfileCommand }
1315
1346
*/
1347
+ deleteLoginProfile ( ) : Promise < DeleteLoginProfileCommandOutput > ;
1316
1348
deleteLoginProfile (
1317
1349
args : DeleteLoginProfileCommandInput ,
1318
1350
options ?: __HttpHandlerOptions
@@ -1632,6 +1664,42 @@ export interface IAM {
1632
1664
cb : ( err : any , data ?: DetachUserPolicyCommandOutput ) => void
1633
1665
) : void ;
1634
1666
1667
+ /**
1668
+ * @see {@link DisableOrganizationsRootCredentialsManagementCommand }
1669
+ */
1670
+ disableOrganizationsRootCredentialsManagement ( ) : Promise < DisableOrganizationsRootCredentialsManagementCommandOutput > ;
1671
+ disableOrganizationsRootCredentialsManagement (
1672
+ args : DisableOrganizationsRootCredentialsManagementCommandInput ,
1673
+ options ?: __HttpHandlerOptions
1674
+ ) : Promise < DisableOrganizationsRootCredentialsManagementCommandOutput > ;
1675
+ disableOrganizationsRootCredentialsManagement (
1676
+ args : DisableOrganizationsRootCredentialsManagementCommandInput ,
1677
+ cb : ( err : any , data ?: DisableOrganizationsRootCredentialsManagementCommandOutput ) => void
1678
+ ) : void ;
1679
+ disableOrganizationsRootCredentialsManagement (
1680
+ args : DisableOrganizationsRootCredentialsManagementCommandInput ,
1681
+ options : __HttpHandlerOptions ,
1682
+ cb : ( err : any , data ?: DisableOrganizationsRootCredentialsManagementCommandOutput ) => void
1683
+ ) : void ;
1684
+
1685
+ /**
1686
+ * @see {@link DisableOrganizationsRootSessionsCommand }
1687
+ */
1688
+ disableOrganizationsRootSessions ( ) : Promise < DisableOrganizationsRootSessionsCommandOutput > ;
1689
+ disableOrganizationsRootSessions (
1690
+ args : DisableOrganizationsRootSessionsCommandInput ,
1691
+ options ?: __HttpHandlerOptions
1692
+ ) : Promise < DisableOrganizationsRootSessionsCommandOutput > ;
1693
+ disableOrganizationsRootSessions (
1694
+ args : DisableOrganizationsRootSessionsCommandInput ,
1695
+ cb : ( err : any , data ?: DisableOrganizationsRootSessionsCommandOutput ) => void
1696
+ ) : void ;
1697
+ disableOrganizationsRootSessions (
1698
+ args : DisableOrganizationsRootSessionsCommandInput ,
1699
+ options : __HttpHandlerOptions ,
1700
+ cb : ( err : any , data ?: DisableOrganizationsRootSessionsCommandOutput ) => void
1701
+ ) : void ;
1702
+
1635
1703
/**
1636
1704
* @see {@link EnableMFADeviceCommand }
1637
1705
*/
@@ -1646,6 +1714,42 @@ export interface IAM {
1646
1714
cb : ( err : any , data ?: EnableMFADeviceCommandOutput ) => void
1647
1715
) : void ;
1648
1716
1717
+ /**
1718
+ * @see {@link EnableOrganizationsRootCredentialsManagementCommand }
1719
+ */
1720
+ enableOrganizationsRootCredentialsManagement ( ) : Promise < EnableOrganizationsRootCredentialsManagementCommandOutput > ;
1721
+ enableOrganizationsRootCredentialsManagement (
1722
+ args : EnableOrganizationsRootCredentialsManagementCommandInput ,
1723
+ options ?: __HttpHandlerOptions
1724
+ ) : Promise < EnableOrganizationsRootCredentialsManagementCommandOutput > ;
1725
+ enableOrganizationsRootCredentialsManagement (
1726
+ args : EnableOrganizationsRootCredentialsManagementCommandInput ,
1727
+ cb : ( err : any , data ?: EnableOrganizationsRootCredentialsManagementCommandOutput ) => void
1728
+ ) : void ;
1729
+ enableOrganizationsRootCredentialsManagement (
1730
+ args : EnableOrganizationsRootCredentialsManagementCommandInput ,
1731
+ options : __HttpHandlerOptions ,
1732
+ cb : ( err : any , data ?: EnableOrganizationsRootCredentialsManagementCommandOutput ) => void
1733
+ ) : void ;
1734
+
1735
+ /**
1736
+ * @see {@link EnableOrganizationsRootSessionsCommand }
1737
+ */
1738
+ enableOrganizationsRootSessions ( ) : Promise < EnableOrganizationsRootSessionsCommandOutput > ;
1739
+ enableOrganizationsRootSessions (
1740
+ args : EnableOrganizationsRootSessionsCommandInput ,
1741
+ options ?: __HttpHandlerOptions
1742
+ ) : Promise < EnableOrganizationsRootSessionsCommandOutput > ;
1743
+ enableOrganizationsRootSessions (
1744
+ args : EnableOrganizationsRootSessionsCommandInput ,
1745
+ cb : ( err : any , data ?: EnableOrganizationsRootSessionsCommandOutput ) => void
1746
+ ) : void ;
1747
+ enableOrganizationsRootSessions (
1748
+ args : EnableOrganizationsRootSessionsCommandInput ,
1749
+ options : __HttpHandlerOptions ,
1750
+ cb : ( err : any , data ?: EnableOrganizationsRootSessionsCommandOutput ) => void
1751
+ ) : void ;
1752
+
1649
1753
/**
1650
1754
* @see {@link GenerateCredentialReportCommand }
1651
1755
*/
@@ -1866,6 +1970,7 @@ export interface IAM {
1866
1970
/**
1867
1971
* @see {@link GetLoginProfileCommand }
1868
1972
*/
1973
+ getLoginProfile ( ) : Promise < GetLoginProfileCommandOutput > ;
1869
1974
getLoginProfile (
1870
1975
args : GetLoginProfileCommandInput ,
1871
1976
options ?: __HttpHandlerOptions
@@ -2357,6 +2462,24 @@ export interface IAM {
2357
2462
cb : ( err : any , data ?: ListOpenIDConnectProviderTagsCommandOutput ) => void
2358
2463
) : void ;
2359
2464
2465
+ /**
2466
+ * @see {@link ListOrganizationsFeaturesCommand }
2467
+ */
2468
+ listOrganizationsFeatures ( ) : Promise < ListOrganizationsFeaturesCommandOutput > ;
2469
+ listOrganizationsFeatures (
2470
+ args : ListOrganizationsFeaturesCommandInput ,
2471
+ options ?: __HttpHandlerOptions
2472
+ ) : Promise < ListOrganizationsFeaturesCommandOutput > ;
2473
+ listOrganizationsFeatures (
2474
+ args : ListOrganizationsFeaturesCommandInput ,
2475
+ cb : ( err : any , data ?: ListOrganizationsFeaturesCommandOutput ) => void
2476
+ ) : void ;
2477
+ listOrganizationsFeatures (
2478
+ args : ListOrganizationsFeaturesCommandInput ,
2479
+ options : __HttpHandlerOptions ,
2480
+ cb : ( err : any , data ?: ListOrganizationsFeaturesCommandOutput ) => void
2481
+ ) : void ;
2482
+
2360
2483
/**
2361
2484
* @see {@link ListPoliciesCommand }
2362
2485
*/
0 commit comments