Skip to content

Commit 183b46d

Browse files
authored
feat(clients): export folder from index.ts (#2912)
1 parent cdccc0d commit 183b46d

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
Lines changed: 28 additions & 0 deletions
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";
Lines changed: 3 additions & 38 deletions
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";
Lines changed: 9 additions & 0 deletions
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";
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
export * from "./DeleteAlternateContactCommand";
2+
export * from "./GetAlternateContactCommand";
3+
export * from "./PutAlternateContactCommand";
Lines changed: 2 additions & 4 deletions
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";
Lines changed: 23 additions & 0 deletions
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";
Lines changed: 4 additions & 31 deletions
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";
Lines changed: 4 additions & 0 deletions
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";
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
export * from "./waitForAuditReportCreated";
2+
export * from "./waitForCertificateAuthorityCSRCreated";
3+
export * from "./waitForCertificateIssued";
Lines changed: 15 additions & 0 deletions
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";

0 commit comments

Comments
 (0)