Skip to content

Commit 08e1b57

Browse files
committed
feat(clients): export folder from index.ts
1 parent 0a75f12 commit 08e1b57

File tree

844 files changed

+13514
-12959
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

844 files changed

+13514
-12959
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
export * from "./ApplyArchiveRuleCommand";
2+
export * from "./CancelPolicyGenerationCommand";
3+
export * from "./CreateAccessPreviewCommand";
4+
export * from "./CreateAnalyzerCommand";
5+
export * from "./CreateArchiveRuleCommand";
6+
export * from "./DeleteAnalyzerCommand";
7+
export * from "./DeleteArchiveRuleCommand";
8+
export * from "./GetAccessPreviewCommand";
9+
export * from "./GetAnalyzedResourceCommand";
10+
export * from "./GetAnalyzerCommand";
11+
export * from "./GetArchiveRuleCommand";
12+
export * from "./GetFindingCommand";
13+
export * from "./GetGeneratedPolicyCommand";
14+
export * from "./ListAccessPreviewFindingsCommand";
15+
export * from "./ListAccessPreviewsCommand";
16+
export * from "./ListAnalyzedResourcesCommand";
17+
export * from "./ListAnalyzersCommand";
18+
export * from "./ListArchiveRulesCommand";
19+
export * from "./ListFindingsCommand";
20+
export * from "./ListPolicyGenerationsCommand";
21+
export * from "./ListTagsForResourceCommand";
22+
export * from "./StartPolicyGenerationCommand";
23+
export * from "./StartResourceScanCommand";
24+
export * from "./TagResourceCommand";
25+
export * from "./UntagResourceCommand";
26+
export * from "./UpdateArchiveRuleCommand";
27+
export * from "./UpdateFindingsCommand";
28+
export * from "./ValidatePolicyCommand";
+3-38
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,5 @@
11
export * from "./AccessAnalyzer";
22
export * from "./AccessAnalyzerClient";
3-
export * from "./commands/ApplyArchiveRuleCommand";
4-
export * from "./commands/CancelPolicyGenerationCommand";
5-
export * from "./commands/CreateAccessPreviewCommand";
6-
export * from "./commands/CreateAnalyzerCommand";
7-
export * from "./commands/CreateArchiveRuleCommand";
8-
export * from "./commands/DeleteAnalyzerCommand";
9-
export * from "./commands/DeleteArchiveRuleCommand";
10-
export * from "./commands/GetAccessPreviewCommand";
11-
export * from "./commands/GetAnalyzedResourceCommand";
12-
export * from "./commands/GetAnalyzerCommand";
13-
export * from "./commands/GetArchiveRuleCommand";
14-
export * from "./commands/GetFindingCommand";
15-
export * from "./commands/GetGeneratedPolicyCommand";
16-
export * from "./commands/ListAccessPreviewFindingsCommand";
17-
export * from "./commands/ListAccessPreviewsCommand";
18-
export * from "./commands/ListAnalyzedResourcesCommand";
19-
export * from "./commands/ListAnalyzersCommand";
20-
export * from "./commands/ListArchiveRulesCommand";
21-
export * from "./commands/ListFindingsCommand";
22-
export * from "./commands/ListPolicyGenerationsCommand";
23-
export * from "./commands/ListTagsForResourceCommand";
24-
export * from "./commands/StartPolicyGenerationCommand";
25-
export * from "./commands/StartResourceScanCommand";
26-
export * from "./commands/TagResourceCommand";
27-
export * from "./pagination/ListAccessPreviewFindingsPaginator";
28-
export * from "./commands/UntagResourceCommand";
29-
export * from "./pagination/ListAccessPreviewsPaginator";
30-
export * from "./commands/UpdateArchiveRuleCommand";
31-
export * from "./pagination/ListAnalyzedResourcesPaginator";
32-
export * from "./commands/UpdateFindingsCommand";
33-
export * from "./pagination/ListAnalyzersPaginator";
34-
export * from "./commands/ValidatePolicyCommand";
35-
export * from "./pagination/ListArchiveRulesPaginator";
36-
export * from "./models/index";
37-
export * from "./pagination/ListFindingsPaginator";
38-
export * from "./pagination/Interfaces";
39-
export * from "./pagination/ListPolicyGenerationsPaginator";
40-
export * from "./pagination/ValidatePolicyPaginator";
3+
export * from "./commands";
4+
export * from "./models";
5+
export * from "./pagination";
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
export * from "./Interfaces";
2+
export * from "./ListAccessPreviewFindingsPaginator";
3+
export * from "./ListAccessPreviewsPaginator";
4+
export * from "./ListAnalyzedResourcesPaginator";
5+
export * from "./ListAnalyzersPaginator";
6+
export * from "./ListArchiveRulesPaginator";
7+
export * from "./ListFindingsPaginator";
8+
export * from "./ListPolicyGenerationsPaginator";
9+
export * from "./ValidatePolicyPaginator";
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
export * from "./DeleteAlternateContactCommand";
2+
export * from "./GetAlternateContactCommand";
3+
export * from "./PutAlternateContactCommand";

clients/client-account/src/index.ts

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
export * from "./Account";
22
export * from "./AccountClient";
3-
export * from "./commands/DeleteAlternateContactCommand";
4-
export * from "./commands/GetAlternateContactCommand";
5-
export * from "./commands/PutAlternateContactCommand";
6-
export * from "./models/index";
3+
export * from "./commands";
4+
export * from "./models";
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
export * from "./CreateCertificateAuthorityAuditReportCommand";
2+
export * from "./CreateCertificateAuthorityCommand";
3+
export * from "./CreatePermissionCommand";
4+
export * from "./DeleteCertificateAuthorityCommand";
5+
export * from "./DeletePermissionCommand";
6+
export * from "./DeletePolicyCommand";
7+
export * from "./DescribeCertificateAuthorityAuditReportCommand";
8+
export * from "./DescribeCertificateAuthorityCommand";
9+
export * from "./GetCertificateAuthorityCertificateCommand";
10+
export * from "./GetCertificateAuthorityCsrCommand";
11+
export * from "./GetCertificateCommand";
12+
export * from "./GetPolicyCommand";
13+
export * from "./ImportCertificateAuthorityCertificateCommand";
14+
export * from "./IssueCertificateCommand";
15+
export * from "./ListCertificateAuthoritiesCommand";
16+
export * from "./ListPermissionsCommand";
17+
export * from "./ListTagsCommand";
18+
export * from "./PutPolicyCommand";
19+
export * from "./RestoreCertificateAuthorityCommand";
20+
export * from "./RevokeCertificateCommand";
21+
export * from "./TagCertificateAuthorityCommand";
22+
export * from "./UntagCertificateAuthorityCommand";
23+
export * from "./UpdateCertificateAuthorityCommand";

clients/client-acm-pca/src/index.ts

+4-31
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,6 @@
11
export * from "./ACMPCA";
22
export * from "./ACMPCAClient";
3-
export * from "./commands/CreateCertificateAuthorityAuditReportCommand";
4-
export * from "./commands/CreateCertificateAuthorityCommand";
5-
export * from "./commands/CreatePermissionCommand";
6-
export * from "./commands/DeleteCertificateAuthorityCommand";
7-
export * from "./commands/DeletePermissionCommand";
8-
export * from "./commands/DeletePolicyCommand";
9-
export * from "./commands/DescribeCertificateAuthorityAuditReportCommand";
10-
export * from "./commands/DescribeCertificateAuthorityCommand";
11-
export * from "./commands/GetCertificateAuthorityCertificateCommand";
12-
export * from "./commands/GetCertificateAuthorityCsrCommand";
13-
export * from "./commands/GetCertificateCommand";
14-
export * from "./commands/GetPolicyCommand";
15-
export * from "./commands/ImportCertificateAuthorityCertificateCommand";
16-
export * from "./commands/IssueCertificateCommand";
17-
export * from "./commands/ListCertificateAuthoritiesCommand";
18-
export * from "./commands/ListPermissionsCommand";
19-
export * from "./commands/ListTagsCommand";
20-
export * from "./commands/PutPolicyCommand";
21-
export * from "./waiters/waitForAuditReportCreated";
22-
export * from "./commands/RestoreCertificateAuthorityCommand";
23-
export * from "./waiters/waitForCertificateIssued";
24-
export * from "./commands/RevokeCertificateCommand";
25-
export * from "./commands/TagCertificateAuthorityCommand";
26-
export * from "./waiters/waitForCertificateAuthorityCSRCreated";
27-
export * from "./commands/UntagCertificateAuthorityCommand";
28-
export * from "./commands/UpdateCertificateAuthorityCommand";
29-
export * from "./models/index";
30-
export * from "./pagination/Interfaces";
31-
export * from "./pagination/ListCertificateAuthoritiesPaginator";
32-
export * from "./pagination/ListPermissionsPaginator";
33-
export * from "./pagination/ListTagsPaginator";
3+
export * from "./commands";
4+
export * from "./models";
5+
export * from "./pagination";
6+
export * from "./waiters";
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
export * from "./Interfaces";
2+
export * from "./ListCertificateAuthoritiesPaginator";
3+
export * from "./ListPermissionsPaginator";
4+
export * from "./ListTagsPaginator";
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
export * from "./waitForAuditReportCreated";
2+
export * from "./waitForCertificateAuthorityCSRCreated";
3+
export * from "./waitForCertificateIssued";
+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
export * from "./AddTagsToCertificateCommand";
2+
export * from "./DeleteCertificateCommand";
3+
export * from "./DescribeCertificateCommand";
4+
export * from "./ExportCertificateCommand";
5+
export * from "./GetAccountConfigurationCommand";
6+
export * from "./GetCertificateCommand";
7+
export * from "./ImportCertificateCommand";
8+
export * from "./ListCertificatesCommand";
9+
export * from "./ListTagsForCertificateCommand";
10+
export * from "./PutAccountConfigurationCommand";
11+
export * from "./RemoveTagsFromCertificateCommand";
12+
export * from "./RenewCertificateCommand";
13+
export * from "./RequestCertificateCommand";
14+
export * from "./ResendValidationEmailCommand";
15+
export * from "./UpdateCertificateOptionsCommand";

clients/client-acm/src/index.ts

+4-19
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,6 @@
11
export * from "./ACM";
22
export * from "./ACMClient";
3-
export * from "./commands/AddTagsToCertificateCommand";
4-
export * from "./commands/DeleteCertificateCommand";
5-
export * from "./commands/DescribeCertificateCommand";
6-
export * from "./commands/ExportCertificateCommand";
7-
export * from "./commands/GetAccountConfigurationCommand";
8-
export * from "./commands/GetCertificateCommand";
9-
export * from "./commands/ImportCertificateCommand";
10-
export * from "./commands/ListCertificatesCommand";
11-
export * from "./commands/ListTagsForCertificateCommand";
12-
export * from "./commands/PutAccountConfigurationCommand";
13-
export * from "./commands/RemoveTagsFromCertificateCommand";
14-
export * from "./commands/RenewCertificateCommand";
15-
export * from "./commands/RequestCertificateCommand";
16-
export * from "./waiters/waitForCertificateValidated";
17-
export * from "./commands/ResendValidationEmailCommand";
18-
export * from "./commands/UpdateCertificateOptionsCommand";
19-
export * from "./models/index";
20-
export * from "./pagination/Interfaces";
21-
export * from "./pagination/ListCertificatesPaginator";
3+
export * from "./commands";
4+
export * from "./models";
5+
export * from "./pagination";
6+
export * from "./waiters";
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
export * from "./Interfaces";
2+
export * from "./ListCertificatesPaginator";
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from "./waitForCertificateValidated";
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
export * from "./ApproveSkillCommand";
2+
export * from "./AssociateContactWithAddressBookCommand";
3+
export * from "./AssociateDeviceWithNetworkProfileCommand";
4+
export * from "./AssociateDeviceWithRoomCommand";
5+
export * from "./AssociateSkillGroupWithRoomCommand";
6+
export * from "./AssociateSkillWithSkillGroupCommand";
7+
export * from "./AssociateSkillWithUsersCommand";
8+
export * from "./CreateAddressBookCommand";
9+
export * from "./CreateBusinessReportScheduleCommand";
10+
export * from "./CreateConferenceProviderCommand";
11+
export * from "./CreateContactCommand";
12+
export * from "./CreateGatewayGroupCommand";
13+
export * from "./CreateNetworkProfileCommand";
14+
export * from "./CreateProfileCommand";
15+
export * from "./CreateRoomCommand";
16+
export * from "./CreateSkillGroupCommand";
17+
export * from "./CreateUserCommand";
18+
export * from "./DeleteAddressBookCommand";
19+
export * from "./DeleteBusinessReportScheduleCommand";
20+
export * from "./DeleteConferenceProviderCommand";
21+
export * from "./DeleteContactCommand";
22+
export * from "./DeleteDeviceCommand";
23+
export * from "./DeleteDeviceUsageDataCommand";
24+
export * from "./DeleteGatewayGroupCommand";
25+
export * from "./DeleteNetworkProfileCommand";
26+
export * from "./DeleteProfileCommand";
27+
export * from "./DeleteRoomCommand";
28+
export * from "./DeleteRoomSkillParameterCommand";
29+
export * from "./DeleteSkillAuthorizationCommand";
30+
export * from "./DeleteSkillGroupCommand";
31+
export * from "./DeleteUserCommand";
32+
export * from "./DisassociateContactFromAddressBookCommand";
33+
export * from "./DisassociateDeviceFromRoomCommand";
34+
export * from "./DisassociateSkillFromSkillGroupCommand";
35+
export * from "./DisassociateSkillFromUsersCommand";
36+
export * from "./DisassociateSkillGroupFromRoomCommand";
37+
export * from "./ForgetSmartHomeAppliancesCommand";
38+
export * from "./GetAddressBookCommand";
39+
export * from "./GetConferencePreferenceCommand";
40+
export * from "./GetConferenceProviderCommand";
41+
export * from "./GetContactCommand";
42+
export * from "./GetDeviceCommand";
43+
export * from "./GetGatewayCommand";
44+
export * from "./GetGatewayGroupCommand";
45+
export * from "./GetInvitationConfigurationCommand";
46+
export * from "./GetNetworkProfileCommand";
47+
export * from "./GetProfileCommand";
48+
export * from "./GetRoomCommand";
49+
export * from "./GetRoomSkillParameterCommand";
50+
export * from "./GetSkillGroupCommand";
51+
export * from "./ListBusinessReportSchedulesCommand";
52+
export * from "./ListConferenceProvidersCommand";
53+
export * from "./ListDeviceEventsCommand";
54+
export * from "./ListGatewayGroupsCommand";
55+
export * from "./ListGatewaysCommand";
56+
export * from "./ListSkillsCommand";
57+
export * from "./ListSkillsStoreCategoriesCommand";
58+
export * from "./ListSkillsStoreSkillsByCategoryCommand";
59+
export * from "./ListSmartHomeAppliancesCommand";
60+
export * from "./ListTagsCommand";
61+
export * from "./PutConferencePreferenceCommand";
62+
export * from "./PutInvitationConfigurationCommand";
63+
export * from "./PutRoomSkillParameterCommand";
64+
export * from "./PutSkillAuthorizationCommand";
65+
export * from "./RegisterAVSDeviceCommand";
66+
export * from "./RejectSkillCommand";
67+
export * from "./ResolveRoomCommand";
68+
export * from "./RevokeInvitationCommand";
69+
export * from "./SearchAddressBooksCommand";
70+
export * from "./SearchContactsCommand";
71+
export * from "./SearchDevicesCommand";
72+
export * from "./SearchNetworkProfilesCommand";
73+
export * from "./SearchProfilesCommand";
74+
export * from "./SearchRoomsCommand";
75+
export * from "./SearchSkillGroupsCommand";
76+
export * from "./SearchUsersCommand";
77+
export * from "./SendAnnouncementCommand";
78+
export * from "./SendInvitationCommand";
79+
export * from "./StartDeviceSyncCommand";
80+
export * from "./StartSmartHomeApplianceDiscoveryCommand";
81+
export * from "./TagResourceCommand";
82+
export * from "./UntagResourceCommand";
83+
export * from "./UpdateAddressBookCommand";
84+
export * from "./UpdateBusinessReportScheduleCommand";
85+
export * from "./UpdateConferenceProviderCommand";
86+
export * from "./UpdateContactCommand";
87+
export * from "./UpdateDeviceCommand";
88+
export * from "./UpdateGatewayCommand";
89+
export * from "./UpdateGatewayGroupCommand";
90+
export * from "./UpdateNetworkProfileCommand";
91+
export * from "./UpdateProfileCommand";
92+
export * from "./UpdateRoomCommand";
93+
export * from "./UpdateSkillGroupCommand";

0 commit comments

Comments
 (0)