Skip to content

Commit

Permalink
feat(clients): export folder from index.ts (#2912)
Browse files Browse the repository at this point in the history
  • Loading branch information
trivikr committed Oct 20, 2021
1 parent cdccc0d commit 183b46d
Show file tree
Hide file tree
Showing 844 changed files with 13,514 additions and 12,959 deletions.
28 changes: 28 additions & 0 deletions clients/client-accessanalyzer/src/commands/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
export * from "./ApplyArchiveRuleCommand";
export * from "./CancelPolicyGenerationCommand";
export * from "./CreateAccessPreviewCommand";
export * from "./CreateAnalyzerCommand";
export * from "./CreateArchiveRuleCommand";
export * from "./DeleteAnalyzerCommand";
export * from "./DeleteArchiveRuleCommand";
export * from "./GetAccessPreviewCommand";
export * from "./GetAnalyzedResourceCommand";
export * from "./GetAnalyzerCommand";
export * from "./GetArchiveRuleCommand";
export * from "./GetFindingCommand";
export * from "./GetGeneratedPolicyCommand";
export * from "./ListAccessPreviewFindingsCommand";
export * from "./ListAccessPreviewsCommand";
export * from "./ListAnalyzedResourcesCommand";
export * from "./ListAnalyzersCommand";
export * from "./ListArchiveRulesCommand";
export * from "./ListFindingsCommand";
export * from "./ListPolicyGenerationsCommand";
export * from "./ListTagsForResourceCommand";
export * from "./StartPolicyGenerationCommand";
export * from "./StartResourceScanCommand";
export * from "./TagResourceCommand";
export * from "./UntagResourceCommand";
export * from "./UpdateArchiveRuleCommand";
export * from "./UpdateFindingsCommand";
export * from "./ValidatePolicyCommand";
41 changes: 3 additions & 38 deletions clients/client-accessanalyzer/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,40 +1,5 @@
export * from "./AccessAnalyzer";
export * from "./AccessAnalyzerClient";
export * from "./commands/ApplyArchiveRuleCommand";
export * from "./commands/CancelPolicyGenerationCommand";
export * from "./commands/CreateAccessPreviewCommand";
export * from "./commands/CreateAnalyzerCommand";
export * from "./commands/CreateArchiveRuleCommand";
export * from "./commands/DeleteAnalyzerCommand";
export * from "./commands/DeleteArchiveRuleCommand";
export * from "./commands/GetAccessPreviewCommand";
export * from "./commands/GetAnalyzedResourceCommand";
export * from "./commands/GetAnalyzerCommand";
export * from "./commands/GetArchiveRuleCommand";
export * from "./commands/GetFindingCommand";
export * from "./commands/GetGeneratedPolicyCommand";
export * from "./commands/ListAccessPreviewFindingsCommand";
export * from "./commands/ListAccessPreviewsCommand";
export * from "./commands/ListAnalyzedResourcesCommand";
export * from "./commands/ListAnalyzersCommand";
export * from "./commands/ListArchiveRulesCommand";
export * from "./commands/ListFindingsCommand";
export * from "./commands/ListPolicyGenerationsCommand";
export * from "./commands/ListTagsForResourceCommand";
export * from "./commands/StartPolicyGenerationCommand";
export * from "./commands/StartResourceScanCommand";
export * from "./commands/TagResourceCommand";
export * from "./pagination/ListAccessPreviewFindingsPaginator";
export * from "./commands/UntagResourceCommand";
export * from "./pagination/ListAccessPreviewsPaginator";
export * from "./commands/UpdateArchiveRuleCommand";
export * from "./pagination/ListAnalyzedResourcesPaginator";
export * from "./commands/UpdateFindingsCommand";
export * from "./pagination/ListAnalyzersPaginator";
export * from "./commands/ValidatePolicyCommand";
export * from "./pagination/ListArchiveRulesPaginator";
export * from "./models/index";
export * from "./pagination/ListFindingsPaginator";
export * from "./pagination/Interfaces";
export * from "./pagination/ListPolicyGenerationsPaginator";
export * from "./pagination/ValidatePolicyPaginator";
export * from "./commands";
export * from "./models";
export * from "./pagination";
9 changes: 9 additions & 0 deletions clients/client-accessanalyzer/src/pagination/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
export * from "./Interfaces";
export * from "./ListAccessPreviewFindingsPaginator";
export * from "./ListAccessPreviewsPaginator";
export * from "./ListAnalyzedResourcesPaginator";
export * from "./ListAnalyzersPaginator";
export * from "./ListArchiveRulesPaginator";
export * from "./ListFindingsPaginator";
export * from "./ListPolicyGenerationsPaginator";
export * from "./ValidatePolicyPaginator";
3 changes: 3 additions & 0 deletions clients/client-account/src/commands/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export * from "./DeleteAlternateContactCommand";
export * from "./GetAlternateContactCommand";
export * from "./PutAlternateContactCommand";
6 changes: 2 additions & 4 deletions clients/client-account/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
export * from "./Account";
export * from "./AccountClient";
export * from "./commands/DeleteAlternateContactCommand";
export * from "./commands/GetAlternateContactCommand";
export * from "./commands/PutAlternateContactCommand";
export * from "./models/index";
export * from "./commands";
export * from "./models";
23 changes: 23 additions & 0 deletions clients/client-acm-pca/src/commands/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
export * from "./CreateCertificateAuthorityAuditReportCommand";
export * from "./CreateCertificateAuthorityCommand";
export * from "./CreatePermissionCommand";
export * from "./DeleteCertificateAuthorityCommand";
export * from "./DeletePermissionCommand";
export * from "./DeletePolicyCommand";
export * from "./DescribeCertificateAuthorityAuditReportCommand";
export * from "./DescribeCertificateAuthorityCommand";
export * from "./GetCertificateAuthorityCertificateCommand";
export * from "./GetCertificateAuthorityCsrCommand";
export * from "./GetCertificateCommand";
export * from "./GetPolicyCommand";
export * from "./ImportCertificateAuthorityCertificateCommand";
export * from "./IssueCertificateCommand";
export * from "./ListCertificateAuthoritiesCommand";
export * from "./ListPermissionsCommand";
export * from "./ListTagsCommand";
export * from "./PutPolicyCommand";
export * from "./RestoreCertificateAuthorityCommand";
export * from "./RevokeCertificateCommand";
export * from "./TagCertificateAuthorityCommand";
export * from "./UntagCertificateAuthorityCommand";
export * from "./UpdateCertificateAuthorityCommand";
35 changes: 4 additions & 31 deletions clients/client-acm-pca/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,33 +1,6 @@
export * from "./ACMPCA";
export * from "./ACMPCAClient";
export * from "./commands/CreateCertificateAuthorityAuditReportCommand";
export * from "./commands/CreateCertificateAuthorityCommand";
export * from "./commands/CreatePermissionCommand";
export * from "./commands/DeleteCertificateAuthorityCommand";
export * from "./commands/DeletePermissionCommand";
export * from "./commands/DeletePolicyCommand";
export * from "./commands/DescribeCertificateAuthorityAuditReportCommand";
export * from "./commands/DescribeCertificateAuthorityCommand";
export * from "./commands/GetCertificateAuthorityCertificateCommand";
export * from "./commands/GetCertificateAuthorityCsrCommand";
export * from "./commands/GetCertificateCommand";
export * from "./commands/GetPolicyCommand";
export * from "./commands/ImportCertificateAuthorityCertificateCommand";
export * from "./commands/IssueCertificateCommand";
export * from "./commands/ListCertificateAuthoritiesCommand";
export * from "./commands/ListPermissionsCommand";
export * from "./commands/ListTagsCommand";
export * from "./commands/PutPolicyCommand";
export * from "./waiters/waitForAuditReportCreated";
export * from "./commands/RestoreCertificateAuthorityCommand";
export * from "./waiters/waitForCertificateIssued";
export * from "./commands/RevokeCertificateCommand";
export * from "./commands/TagCertificateAuthorityCommand";
export * from "./waiters/waitForCertificateAuthorityCSRCreated";
export * from "./commands/UntagCertificateAuthorityCommand";
export * from "./commands/UpdateCertificateAuthorityCommand";
export * from "./models/index";
export * from "./pagination/Interfaces";
export * from "./pagination/ListCertificateAuthoritiesPaginator";
export * from "./pagination/ListPermissionsPaginator";
export * from "./pagination/ListTagsPaginator";
export * from "./commands";
export * from "./models";
export * from "./pagination";
export * from "./waiters";
4 changes: 4 additions & 0 deletions clients/client-acm-pca/src/pagination/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
export * from "./Interfaces";
export * from "./ListCertificateAuthoritiesPaginator";
export * from "./ListPermissionsPaginator";
export * from "./ListTagsPaginator";
3 changes: 3 additions & 0 deletions clients/client-acm-pca/src/waiters/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export * from "./waitForAuditReportCreated";
export * from "./waitForCertificateAuthorityCSRCreated";
export * from "./waitForCertificateIssued";
15 changes: 15 additions & 0 deletions clients/client-acm/src/commands/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
export * from "./AddTagsToCertificateCommand";
export * from "./DeleteCertificateCommand";
export * from "./DescribeCertificateCommand";
export * from "./ExportCertificateCommand";
export * from "./GetAccountConfigurationCommand";
export * from "./GetCertificateCommand";
export * from "./ImportCertificateCommand";
export * from "./ListCertificatesCommand";
export * from "./ListTagsForCertificateCommand";
export * from "./PutAccountConfigurationCommand";
export * from "./RemoveTagsFromCertificateCommand";
export * from "./RenewCertificateCommand";
export * from "./RequestCertificateCommand";
export * from "./ResendValidationEmailCommand";
export * from "./UpdateCertificateOptionsCommand";
23 changes: 4 additions & 19 deletions clients/client-acm/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,21 +1,6 @@
export * from "./ACM";
export * from "./ACMClient";
export * from "./commands/AddTagsToCertificateCommand";
export * from "./commands/DeleteCertificateCommand";
export * from "./commands/DescribeCertificateCommand";
export * from "./commands/ExportCertificateCommand";
export * from "./commands/GetAccountConfigurationCommand";
export * from "./commands/GetCertificateCommand";
export * from "./commands/ImportCertificateCommand";
export * from "./commands/ListCertificatesCommand";
export * from "./commands/ListTagsForCertificateCommand";
export * from "./commands/PutAccountConfigurationCommand";
export * from "./commands/RemoveTagsFromCertificateCommand";
export * from "./commands/RenewCertificateCommand";
export * from "./commands/RequestCertificateCommand";
export * from "./waiters/waitForCertificateValidated";
export * from "./commands/ResendValidationEmailCommand";
export * from "./commands/UpdateCertificateOptionsCommand";
export * from "./models/index";
export * from "./pagination/Interfaces";
export * from "./pagination/ListCertificatesPaginator";
export * from "./commands";
export * from "./models";
export * from "./pagination";
export * from "./waiters";
2 changes: 2 additions & 0 deletions clients/client-acm/src/pagination/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export * from "./Interfaces";
export * from "./ListCertificatesPaginator";
1 change: 1 addition & 0 deletions clients/client-acm/src/waiters/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from "./waitForCertificateValidated";
93 changes: 93 additions & 0 deletions clients/client-alexa-for-business/src/commands/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
export * from "./ApproveSkillCommand";
export * from "./AssociateContactWithAddressBookCommand";
export * from "./AssociateDeviceWithNetworkProfileCommand";
export * from "./AssociateDeviceWithRoomCommand";
export * from "./AssociateSkillGroupWithRoomCommand";
export * from "./AssociateSkillWithSkillGroupCommand";
export * from "./AssociateSkillWithUsersCommand";
export * from "./CreateAddressBookCommand";
export * from "./CreateBusinessReportScheduleCommand";
export * from "./CreateConferenceProviderCommand";
export * from "./CreateContactCommand";
export * from "./CreateGatewayGroupCommand";
export * from "./CreateNetworkProfileCommand";
export * from "./CreateProfileCommand";
export * from "./CreateRoomCommand";
export * from "./CreateSkillGroupCommand";
export * from "./CreateUserCommand";
export * from "./DeleteAddressBookCommand";
export * from "./DeleteBusinessReportScheduleCommand";
export * from "./DeleteConferenceProviderCommand";
export * from "./DeleteContactCommand";
export * from "./DeleteDeviceCommand";
export * from "./DeleteDeviceUsageDataCommand";
export * from "./DeleteGatewayGroupCommand";
export * from "./DeleteNetworkProfileCommand";
export * from "./DeleteProfileCommand";
export * from "./DeleteRoomCommand";
export * from "./DeleteRoomSkillParameterCommand";
export * from "./DeleteSkillAuthorizationCommand";
export * from "./DeleteSkillGroupCommand";
export * from "./DeleteUserCommand";
export * from "./DisassociateContactFromAddressBookCommand";
export * from "./DisassociateDeviceFromRoomCommand";
export * from "./DisassociateSkillFromSkillGroupCommand";
export * from "./DisassociateSkillFromUsersCommand";
export * from "./DisassociateSkillGroupFromRoomCommand";
export * from "./ForgetSmartHomeAppliancesCommand";
export * from "./GetAddressBookCommand";
export * from "./GetConferencePreferenceCommand";
export * from "./GetConferenceProviderCommand";
export * from "./GetContactCommand";
export * from "./GetDeviceCommand";
export * from "./GetGatewayCommand";
export * from "./GetGatewayGroupCommand";
export * from "./GetInvitationConfigurationCommand";
export * from "./GetNetworkProfileCommand";
export * from "./GetProfileCommand";
export * from "./GetRoomCommand";
export * from "./GetRoomSkillParameterCommand";
export * from "./GetSkillGroupCommand";
export * from "./ListBusinessReportSchedulesCommand";
export * from "./ListConferenceProvidersCommand";
export * from "./ListDeviceEventsCommand";
export * from "./ListGatewayGroupsCommand";
export * from "./ListGatewaysCommand";
export * from "./ListSkillsCommand";
export * from "./ListSkillsStoreCategoriesCommand";
export * from "./ListSkillsStoreSkillsByCategoryCommand";
export * from "./ListSmartHomeAppliancesCommand";
export * from "./ListTagsCommand";
export * from "./PutConferencePreferenceCommand";
export * from "./PutInvitationConfigurationCommand";
export * from "./PutRoomSkillParameterCommand";
export * from "./PutSkillAuthorizationCommand";
export * from "./RegisterAVSDeviceCommand";
export * from "./RejectSkillCommand";
export * from "./ResolveRoomCommand";
export * from "./RevokeInvitationCommand";
export * from "./SearchAddressBooksCommand";
export * from "./SearchContactsCommand";
export * from "./SearchDevicesCommand";
export * from "./SearchNetworkProfilesCommand";
export * from "./SearchProfilesCommand";
export * from "./SearchRoomsCommand";
export * from "./SearchSkillGroupsCommand";
export * from "./SearchUsersCommand";
export * from "./SendAnnouncementCommand";
export * from "./SendInvitationCommand";
export * from "./StartDeviceSyncCommand";
export * from "./StartSmartHomeApplianceDiscoveryCommand";
export * from "./TagResourceCommand";
export * from "./UntagResourceCommand";
export * from "./UpdateAddressBookCommand";
export * from "./UpdateBusinessReportScheduleCommand";
export * from "./UpdateConferenceProviderCommand";
export * from "./UpdateContactCommand";
export * from "./UpdateDeviceCommand";
export * from "./UpdateGatewayCommand";
export * from "./UpdateGatewayGroupCommand";
export * from "./UpdateNetworkProfileCommand";
export * from "./UpdateProfileCommand";
export * from "./UpdateRoomCommand";
export * from "./UpdateSkillGroupCommand";
Loading

0 comments on commit 183b46d

Please sign in to comment.